From ec5e84075e32f571d036beedb9fb3afecbfb23e7 Mon Sep 17 00:00:00 2001 From: atm-quentin Date: Thu, 3 May 2018 10:18:38 +0200 Subject: [PATCH 01/81] NEW Rights to ignore price min --- htdocs/comm/propal/card.php | 4 ++-- htdocs/commande/card.php | 4 ++-- htdocs/compta/facture/card.php | 4 ++-- htdocs/compta/facture/fiche-rec.php | 4 ++-- htdocs/contrat/card.php | 2 +- htdocs/core/modules/modProduct.class.php | 7 +++++++ htdocs/langs/fr_FR/admin.lang | 1 + 7 files changed, 17 insertions(+), 9 deletions(-) diff --git a/htdocs/comm/propal/card.php b/htdocs/comm/propal/card.php index 004b32a83fc..e61863b0697 100644 --- a/htdocs/comm/propal/card.php +++ b/htdocs/comm/propal/card.php @@ -967,7 +967,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min))) { + if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); } else { @@ -1087,7 +1087,7 @@ if (empty($reshook)) $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); - if ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min))) { + if (empty($user->rights->produit->ignore_price_min) && ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error ++; } diff --git a/htdocs/commande/card.php b/htdocs/commande/card.php index 76a290a79cd..45953815fff 100644 --- a/htdocs/commande/card.php +++ b/htdocs/commande/card.php @@ -902,7 +902,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min))) { + if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); } else { @@ -1023,7 +1023,7 @@ if (empty($reshook)) $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); - if ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min))) { + if (empty($user->rights->produit->ignore_price_min) && ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error++; } diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php index dbce9c2e76d..293fa784adf 100644 --- a/htdocs/compta/facture/card.php +++ b/htdocs/compta/facture/card.php @@ -1839,7 +1839,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min))) { + if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); } else { @@ -1984,7 +1984,7 @@ if (empty($reshook)) $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); // Check price is not lower than minimum (check is done only for standard or replacement invoices) - if (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min))) { + if (empty($user->rights->produit->ignore_price_min) && (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error ++; } diff --git a/htdocs/compta/facture/fiche-rec.php b/htdocs/compta/facture/fiche-rec.php index 1fc7fa1fb96..8c918f77cac 100644 --- a/htdocs/compta/facture/fiche-rec.php +++ b/htdocs/compta/facture/fiche-rec.php @@ -666,7 +666,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min))) + if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); @@ -833,7 +833,7 @@ if (empty($reshook)) $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); // Check price is not lower than minimum (check is done only for standard or replacement invoices) - if (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min))) + if (empty($user->rights->produit->ignore_price_min) && (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error ++; diff --git a/htdocs/contrat/card.php b/htdocs/contrat/card.php index d474da18a85..4dbbb32e915 100644 --- a/htdocs/contrat/card.php +++ b/htdocs/contrat/card.php @@ -564,7 +564,7 @@ if (empty($reshook)) $info_bits=0; if ($tva_npr) $info_bits |= 0x01; - if($price_min && (price2num($pu_ht)*(1-price2num($remise_percent)/100) < price2num($price_min))) + if (empty($user->rights->produit->ignore_price_min) && ($price_min && (price2num($pu_ht)*(1-price2num($remise_percent)/100) < price2num($price_min)))) { $object->error = $langs->trans("CantBeLessThanMinPrice",price(price2num($price_min,'MU'),0,$langs,0,0,-1,$conf->currency)); $result = -1 ; diff --git a/htdocs/core/modules/modProduct.class.php b/htdocs/core/modules/modProduct.class.php index bfbc28d8321..665ed9ba2bc 100644 --- a/htdocs/core/modules/modProduct.class.php +++ b/htdocs/core/modules/modProduct.class.php @@ -129,6 +129,13 @@ class modProduct extends DolibarrModules $this->rights[$r][3] = 0; $this->rights[$r][4] = 'export'; $r++; + + $this->rights[$r][0] = 39; + $this->rights[$r][1] = 'Ignore minimum price'; + $this->rights[$r][2] = 'r'; + $this->rights[$r][3] = 0; + $this->rights[$r][4] = 'ignore_price_min'; + $r++; // Menus //------- diff --git a/htdocs/langs/fr_FR/admin.lang b/htdocs/langs/fr_FR/admin.lang index 49a80dabe7a..837940a7bea 100644 --- a/htdocs/langs/fr_FR/admin.lang +++ b/htdocs/langs/fr_FR/admin.lang @@ -645,6 +645,7 @@ Permission32=Créer/modifier les produits Permission34=Supprimer les produits Permission36=Voir/gérer les produits cachés Permission38=Exporter les produits +Permission39=Outrepasser le prix de vente minimum d'un produit Permission41=Lire les projets et tâches (partagés ou dont vous êtes un contact). Permet la saisie de temps passé, par vous et votre hiérarchie (vos subordonnés), sur les tâches assignées. Permission42=Créer/modifier les projets (projets partagés et projets pour lesquels je suis contact). Permet aussi de créer des tâches et d'assigner des utilisateurs aux projets et tâches. Permission44=Supprimer les projets et tâches (partagés ou dont je suis contact) From 8cd6c72a2fea1bf611da2ffe683c163d36590305 Mon Sep 17 00:00:00 2001 From: atm-quentin Date: Mon, 7 May 2018 10:04:43 +0200 Subject: [PATCH 02/81] NEW advanced rights --- htdocs/comm/propal/card.php | 5 ++--- htdocs/commande/card.php | 4 ++-- htdocs/compta/facture/card.php | 4 ++-- htdocs/compta/facture/fiche-rec.php | 4 ++-- htdocs/contrat/card.php | 2 +- htdocs/core/modules/modProduct.class.php | 2 +- 6 files changed, 10 insertions(+), 11 deletions(-) diff --git a/htdocs/comm/propal/card.php b/htdocs/comm/propal/card.php index e61863b0697..bfd46d4c836 100644 --- a/htdocs/comm/propal/card.php +++ b/htdocs/comm/propal/card.php @@ -967,7 +967,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) ) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); } else { @@ -1086,8 +1086,7 @@ if (empty($reshook)) $price_min = $product->multiprices_min [$object->thirdparty->price_level]; $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); - - if (empty($user->rights->produit->ignore_price_min) && ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) )&& ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error ++; } diff --git a/htdocs/commande/card.php b/htdocs/commande/card.php index 45953815fff..956c7321180 100644 --- a/htdocs/commande/card.php +++ b/htdocs/commande/card.php @@ -902,7 +902,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) )&& (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); } else { @@ -1023,7 +1023,7 @@ if (empty($reshook)) $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); - if (empty($user->rights->produit->ignore_price_min) && ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) )&& ($price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error++; } diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php index 293fa784adf..3996883f1eb 100644 --- a/htdocs/compta/facture/card.php +++ b/htdocs/compta/facture/card.php @@ -1839,7 +1839,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) )&& (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); } else { @@ -1984,7 +1984,7 @@ if (empty($reshook)) $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); // Check price is not lower than minimum (check is done only for standard or replacement invoices) - if (empty($user->rights->produit->ignore_price_min) && (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) ) && (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error ++; } diff --git a/htdocs/compta/facture/fiche-rec.php b/htdocs/compta/facture/fiche-rec.php index 8c918f77cac..36b9cb3462d 100644 --- a/htdocs/compta/facture/fiche-rec.php +++ b/htdocs/compta/facture/fiche-rec.php @@ -666,7 +666,7 @@ if (empty($reshook)) if ($tva_npr) $info_bits |= 0x01; - if (empty($user->rights->produit->ignore_price_min) && (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) )&& (! empty($price_min) && (price2num($pu_ht) * (1 - price2num($remise_percent) / 100) < price2num($price_min)))) { $mesg = $langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)); setEventMessages($mesg, null, 'errors'); @@ -833,7 +833,7 @@ if (empty($reshook)) $label = ((GETPOST('update_label') && GETPOST('product_label')) ? GETPOST('product_label') : ''); // Check price is not lower than minimum (check is done only for standard or replacement invoices) - if (empty($user->rights->produit->ignore_price_min) && (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) )&& (($object->type == Facture::TYPE_STANDARD || $object->type == Facture::TYPE_REPLACEMENT) && $price_min && (price2num($pu_ht) * (1 - price2num(GETPOST('remise_percent')) / 100) < price2num($price_min)))) { setEventMessages($langs->trans("CantBeLessThanMinPrice", price(price2num($price_min, 'MU'), 0, $langs, 0, 0, - 1, $conf->currency)), null, 'errors'); $error ++; diff --git a/htdocs/contrat/card.php b/htdocs/contrat/card.php index 4dbbb32e915..baafdbf5c8a 100644 --- a/htdocs/contrat/card.php +++ b/htdocs/contrat/card.php @@ -564,7 +564,7 @@ if (empty($reshook)) $info_bits=0; if ($tva_npr) $info_bits |= 0x01; - if (empty($user->rights->produit->ignore_price_min) && ($price_min && (price2num($pu_ht)*(1-price2num($remise_percent)/100) < price2num($price_min)))) + if (((!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && empty($user->rights->produit->ignore_price_min_advance)) || empty($conf->global->MAIN_USE_ADVANCED_PERMS) )&& ($price_min && (price2num($pu_ht)*(1-price2num($remise_percent)/100) < price2num($price_min)))) { $object->error = $langs->trans("CantBeLessThanMinPrice",price(price2num($price_min,'MU'),0,$langs,0,0,-1,$conf->currency)); $result = -1 ; diff --git a/htdocs/core/modules/modProduct.class.php b/htdocs/core/modules/modProduct.class.php index 665ed9ba2bc..5020efec241 100644 --- a/htdocs/core/modules/modProduct.class.php +++ b/htdocs/core/modules/modProduct.class.php @@ -134,7 +134,7 @@ class modProduct extends DolibarrModules $this->rights[$r][1] = 'Ignore minimum price'; $this->rights[$r][2] = 'r'; $this->rights[$r][3] = 0; - $this->rights[$r][4] = 'ignore_price_min'; + $this->rights[$r][4] = 'ignore_price_min_advance'; $r++; // Menus From c2e23954157ac2d17e57bb2db27936d1a2518d50 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 21 Sep 2018 09:18:12 +0200 Subject: [PATCH 03/81] Comment and typo --- htdocs/adherents/card.php | 10 +++++++--- htdocs/adherents/class/adherent.class.php | 1 + htdocs/adherents/subscription.php | 6 ++++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/htdocs/adherents/card.php b/htdocs/adherents/card.php index 3d3c8fb6e54..fd465dd1803 100644 --- a/htdocs/adherents/card.php +++ b/htdocs/adherents/card.php @@ -622,8 +622,9 @@ if (empty($reshook)) // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); - // Get email content fro mtemplae + // Get email content from template $arraydefaultmessage=null; $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_MEMBER_VALIDATION; @@ -693,8 +694,9 @@ if (empty($reshook)) // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); - // Get email content fro mtemplae + // Get email content from template $arraydefaultmessage=null; $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_CANCELATION; @@ -1384,6 +1386,7 @@ else // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); // Get email content from template $arraydefaultmessage=null; @@ -1444,8 +1447,9 @@ else // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); - // Get email content fro mtemplae + // Get email content from template $arraydefaultmessage=null; $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_CANCELATION; diff --git a/htdocs/adherents/class/adherent.class.php b/htdocs/adherents/class/adherent.class.php index f3e4e4d0df8..a4e80d3b626 100644 --- a/htdocs/adherents/class/adherent.class.php +++ b/htdocs/adherents/class/adherent.class.php @@ -2628,6 +2628,7 @@ class Adherent extends CommonObject // Send reminder email $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($adherent->thirdparty->default_lang) ? $mysoc->default_lang : $adherent->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); dol_syslog("sendReminderForExpiredSubscription Language set to ".$outputlangs->defaultlang); diff --git a/htdocs/adherents/subscription.php b/htdocs/adherents/subscription.php index 78a7ce8495f..08c3c3c87f5 100644 --- a/htdocs/adherents/subscription.php +++ b/htdocs/adherents/subscription.php @@ -359,8 +359,9 @@ if ($user->rights->adherent->cotisation->creer && $action == 'subscription' && ! // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); - // Get email content fro mtemplae + // Get email content from template $arraydefaultmessage=null; $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_SUBSCRIPTION; @@ -1053,8 +1054,9 @@ if ($rowid > 0) // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); - // Get email content fro mtemplae + // Get email content from template $arraydefaultmessage=null; $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_SUBSCRIPTION; From bde8d8ae0e28818787c932c36f720b3a138f7541 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 21 Sep 2018 09:32:50 +0200 Subject: [PATCH 04/81] Comment and typo --- htdocs/core/modules/bank/doc/pdf_sepamandate.modules.php | 2 +- htdocs/core/modules/commande/doc/pdf_einstein.modules.php | 2 +- .../contract/doc/doc_generic_contract_odt.modules.php | 1 + htdocs/core/modules/contract/doc/pdf_strato.modules.php | 4 ++-- htdocs/core/modules/dons/html_cerfafr.modules.php | 1 + .../expedition/doc/doc_generic_shipment_odt.modules.php | 1 + htdocs/core/modules/expedition/doc/pdf_merou.modules.php | 2 +- htdocs/core/modules/expedition/doc/pdf_rouget.modules.php | 2 +- .../core/modules/expensereport/doc/pdf_standard.modules.php | 6 +++--- htdocs/core/modules/facture/doc/pdf_crabe.modules.php | 4 ++-- htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php | 2 +- 11 files changed, 15 insertions(+), 12 deletions(-) diff --git a/htdocs/core/modules/bank/doc/pdf_sepamandate.modules.php b/htdocs/core/modules/bank/doc/pdf_sepamandate.modules.php index f62b699b4ef..9b49be6063f 100644 --- a/htdocs/core/modules/bank/doc/pdf_sepamandate.modules.php +++ b/htdocs/core/modules/bank/doc/pdf_sepamandate.modules.php @@ -114,7 +114,7 @@ class pdf_sepamandate extends ModeleBankAccountDoc // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "dict", "withdrawals", "companies", "projects", "bills")); if (! empty($conf->bank->dir_output)) diff --git a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php index 9cbd5f31959..c7c032bbddc 100644 --- a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php +++ b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php @@ -1239,7 +1239,7 @@ class pdf_einstein extends ModelePDFCommandes { global $conf,$langs,$hookmanager; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "bills", "propal", "orders", "companies")); $default_font_size = pdf_getPDFFontSize($outputlangs); diff --git a/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php b/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php index 5ba56d8b73d..4e8036c7eea 100644 --- a/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php +++ b/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php @@ -216,6 +216,7 @@ class doc_generic_contract_odt extends ModelePDFContract $sav_charset_output=$outputlangs->charset_output; $outputlangs->charset_output='UTF-8'; + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "dict", "companies", "bills")); if ($conf->contrat->dir_output) diff --git a/htdocs/core/modules/contract/doc/pdf_strato.modules.php b/htdocs/core/modules/contract/doc/pdf_strato.modules.php index c7c393c96e3..fe0a79c6c8e 100644 --- a/htdocs/core/modules/contract/doc/pdf_strato.modules.php +++ b/htdocs/core/modules/contract/doc/pdf_strato.modules.php @@ -180,7 +180,7 @@ class pdf_strato extends ModelePDFContract // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "dict", "companies", "contracts")); if ($conf->contrat->dir_output) @@ -542,7 +542,7 @@ class pdf_strato extends ModelePDFContract $default_font_size = pdf_getPDFFontSize($outputlangs); - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "dict", "contract", "companies")); pdf_pagehead($pdf,$outputlangs,$this->page_hauteur); diff --git a/htdocs/core/modules/dons/html_cerfafr.modules.php b/htdocs/core/modules/dons/html_cerfafr.modules.php index 3890c03ba62..8f6c10119c4 100644 --- a/htdocs/core/modules/dons/html_cerfafr.modules.php +++ b/htdocs/core/modules/dons/html_cerfafr.modules.php @@ -83,6 +83,7 @@ class html_cerfafr extends ModeleDon if (! is_object($outputlangs)) $outputlangs=$langs; + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "dict", "companies", "bills", "products", "donations")); $currency = !empty($currency) ? $currency : $conf->currency; diff --git a/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php b/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php index 53738f23df2..8277ff40820 100644 --- a/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php +++ b/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php @@ -227,6 +227,7 @@ class doc_generic_shipment_odt extends ModelePdfExpedition $sav_charset_output=$outputlangs->charset_output; $outputlangs->charset_output='UTF-8'; + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "dict", "companies", "bills")); if ($conf->expedition->dir_output."/sending") diff --git a/htdocs/core/modules/expedition/doc/pdf_merou.modules.php b/htdocs/core/modules/expedition/doc/pdf_merou.modules.php index 68f6f544fc4..3d786bf111d 100644 --- a/htdocs/core/modules/expedition/doc/pdf_merou.modules.php +++ b/htdocs/core/modules/expedition/doc/pdf_merou.modules.php @@ -165,7 +165,7 @@ class pdf_merou extends ModelePdfExpedition // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "bills", "products", "dict", "companies", "propal", "deliveries", "sendings", "productbatch")); if ($conf->expedition->dir_output) diff --git a/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php b/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php index 8086667a4f5..e4ded69fe9c 100644 --- a/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php +++ b/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php @@ -196,7 +196,7 @@ class pdf_rouget extends ModelePdfExpedition // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "bills", "products", "dict", "companies", "propal", "deliveries", "sendings", "productbatch")); $nblignes = count($object->lines); diff --git a/htdocs/core/modules/expensereport/doc/pdf_standard.modules.php b/htdocs/core/modules/expensereport/doc/pdf_standard.modules.php index ec06221e5de..0cfa9fddb5c 100644 --- a/htdocs/core/modules/expensereport/doc/pdf_standard.modules.php +++ b/htdocs/core/modules/expensereport/doc/pdf_standard.modules.php @@ -211,7 +211,7 @@ class pdf_standard extends ModeleExpenseReport // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "trips", "projects", "dict")); $nblignes = count($object->lines); @@ -568,9 +568,9 @@ class pdf_standard extends ModeleExpenseReport */ function _pagehead(&$pdf, $object, $showaddress, $outputlangs) { - global $conf,$langs,$hookmanager; + global $conf, $langs, $hookmanager; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "trips", "companies")); $default_font_size = pdf_getPDFFontSize($outputlangs); diff --git a/htdocs/core/modules/facture/doc/pdf_crabe.modules.php b/htdocs/core/modules/facture/doc/pdf_crabe.modules.php index 7d39969ece9..555e2f76ee0 100644 --- a/htdocs/core/modules/facture/doc/pdf_crabe.modules.php +++ b/htdocs/core/modules/facture/doc/pdf_crabe.modules.php @@ -239,7 +239,7 @@ class pdf_crabe extends ModelePDFFactures // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "bills", "products", "dict", "companies")); $nblignes = count($object->lines); @@ -1574,7 +1574,7 @@ class pdf_crabe extends ModelePDFFactures { global $conf, $langs; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "bills", "propal", "companies")); $default_font_size = pdf_getPDFFontSize($outputlangs); diff --git a/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php b/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php index c51e0452481..f9576a974f1 100644 --- a/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php +++ b/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php @@ -172,7 +172,7 @@ class pdf_soleil extends ModelePDFFicheinter // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "interventions", "dict", "companies")); if ($conf->ficheinter->dir_output) From 9fab0a1d457a76bdffecb2ba8ad367278ba6d773 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 21 Sep 2018 14:16:22 +0200 Subject: [PATCH 05/81] Update comments --- htdocs/core/modules/commande/doc/pdf_einstein.modules.php | 2 +- htdocs/core/modules/livraison/doc/pdf_typhon.modules.php | 2 +- .../modules/product/doc/doc_generic_product_odt.modules.php | 1 + .../modules/project/task/doc/doc_generic_task_odt.modules.php | 1 + .../usergroup/doc/doc_generic_usergroup_odt.modules.php | 4 ++-- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php index c7c032bbddc..05231f7e9d7 100644 --- a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php +++ b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php @@ -224,7 +224,7 @@ class pdf_einstein extends ModelePDFCommandes // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load translation files required by the page $outputlangs->loadLangs(array("main", "dict", "companies", "bills", "products", "orders", "deliveries")); $nblignes = count($object->lines); diff --git a/htdocs/core/modules/livraison/doc/pdf_typhon.modules.php b/htdocs/core/modules/livraison/doc/pdf_typhon.modules.php index ae0dcb6a74f..8b8c629c30b 100644 --- a/htdocs/core/modules/livraison/doc/pdf_typhon.modules.php +++ b/htdocs/core/modules/livraison/doc/pdf_typhon.modules.php @@ -195,7 +195,7 @@ class pdf_typhon extends ModelePDFDeliveryOrder // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load translation files required by the page $outputlangs->loadLangs(array("main", "dict", "companies", "bills", "products", "sendings", "deliveries")); if ($conf->expedition->dir_output) diff --git a/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php b/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php index 1ee00f486e5..82b33d35240 100644 --- a/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php +++ b/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php @@ -240,6 +240,7 @@ class doc_generic_product_odt extends ModelePDFProduct $sav_charset_output=$outputlangs->charset_output; $outputlangs->charset_output='UTF-8'; + // Load translation files required by the page $outputlangs->loadLangs(array("main", "dict", "companies", "bills")); if ($conf->produit->dir_output) diff --git a/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php b/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php index d76ae3b586a..425f9ad1b18 100644 --- a/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php +++ b/htdocs/core/modules/project/task/doc/doc_generic_task_odt.modules.php @@ -445,6 +445,7 @@ class doc_generic_task_odt extends ModelePDFTask $sav_charset_output=$outputlangs->charset_output; $outputlangs->charset_output='UTF-8'; + // Load translation files required by the page $outputlangs->loadLangs(array("main", "dict", "companies", "projects")); if ($conf->projet->dir_output) diff --git a/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php b/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php index 798231ed688..b89f68d755b 100644 --- a/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php +++ b/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php @@ -44,9 +44,9 @@ class doc_generic_usergroup_odt extends ModelePDFUserGroup public $emetteur; /** - * @var array() Minimum version of PHP required by module. + * @var array() Minimum version of PHP required by module. * e.g.: PHP ≥ 5.4 = array(5, 4) - */ + */ public $phpmin = array(5, 4); /** From 2afaccf09923aa021608ddc415d2aa9ddf1816d0 Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Fri, 21 Sep 2018 14:32:31 +0200 Subject: [PATCH 06/81] Update mod_ticket_universal.php --- htdocs/core/modules/ticket/mod_ticket_universal.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/htdocs/core/modules/ticket/mod_ticket_universal.php b/htdocs/core/modules/ticket/mod_ticket_universal.php index 409aa2daf00..a8170935eb0 100644 --- a/htdocs/core/modules/ticket/mod_ticket_universal.php +++ b/htdocs/core/modules/ticket/mod_ticket_universal.php @@ -33,20 +33,11 @@ class mod_ticket_universal extends ModeleNumRefTicket * Dolibarr version of the loaded document * @public string */ - public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr' + public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr' -<<<<<<< HEAD -<<<<<<< HEAD /** * @var string Error code (or message) */ -======= ->>>>>>> upstream/develop -======= - /** - * @var string Error code (or message) - */ ->>>>>>> d5003c9d3c507b5064a1f8e96a1ae9a019b6a5e9 public $error = ''; /** From 0bcec6c923098a9297d34baeb63a431e8ffcb8f5 Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Fri, 21 Sep 2018 14:33:48 +0200 Subject: [PATCH 07/81] Update doc_generic_user_odt.modules.php --- .../modules/user/doc/doc_generic_user_odt.modules.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php b/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php index bce2aca823a..ac69176b1c1 100644 --- a/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php +++ b/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php @@ -42,15 +42,15 @@ class doc_generic_user_odt extends ModelePDFUser public $emetteur; /** - * @var array() Minimum version of PHP required by module. + * @var array() Minimum version of PHP required by module. * e.g.: PHP ≥ 5.4 = array(5, 4) - */ + */ public $phpmin = array(5, 4); /** - * Dolibarr version of the loaded document - * @public string - */ + * Dolibarr version of the loaded document + * @public string + */ public $version = 'dolibarr'; From 870f504633ac8ac688d5ebce2aad3546c4d6cab8 Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Fri, 21 Sep 2018 14:34:30 +0200 Subject: [PATCH 08/81] Update doc_generic_usergroup_odt.modules.php --- .../doc/doc_generic_usergroup_odt.modules.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php b/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php index b89f68d755b..53e42d46832 100644 --- a/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php +++ b/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php @@ -44,15 +44,15 @@ class doc_generic_usergroup_odt extends ModelePDFUserGroup public $emetteur; /** - * @var array() Minimum version of PHP required by module. + * @var array() Minimum version of PHP required by module. * e.g.: PHP ≥ 5.4 = array(5, 4) - */ + */ public $phpmin = array(5, 4); /** - * Dolibarr version of the loaded document - * @public string - */ + * Dolibarr version of the loaded document + * @public string + */ public $version = 'dolibarr'; From 3464afe391f8d536fdbbf6fc544985651aadf7d2 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 21 Sep 2018 15:12:17 +0200 Subject: [PATCH 09/81] Update comment --- .../modules/supplier_proposal/doc/pdf_aurore.modules.php | 6 +++--- htdocs/core/tpl/card_presend.tpl.php | 1 + htdocs/public/members/new.php | 3 ++- htdocs/public/payment/paymentok.php | 3 ++- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/htdocs/core/modules/supplier_proposal/doc/pdf_aurore.modules.php b/htdocs/core/modules/supplier_proposal/doc/pdf_aurore.modules.php index c20e57f2d5c..31097dd8c34 100644 --- a/htdocs/core/modules/supplier_proposal/doc/pdf_aurore.modules.php +++ b/htdocs/core/modules/supplier_proposal/doc/pdf_aurore.modules.php @@ -214,7 +214,7 @@ class pdf_aurore extends ModelePDFSupplierProposal // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO if (! empty($conf->global->MAIN_USE_FPDF)) $outputlangs->charset_output='ISO-8859-1'; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "dict", "companies", "bills", "products", "supplier_proposal")); $nblignes = count($object->lines); @@ -1280,9 +1280,9 @@ class pdf_aurore extends ModelePDFSupplierProposal */ function _pagehead(&$pdf, $object, $showaddress, $outputlangs) { - global $conf,$langs; + global $conf, $langs; - // Translations + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "bills", "supplier_proposal", "companies")); $default_font_size = pdf_getPDFFontSize($outputlangs); diff --git a/htdocs/core/tpl/card_presend.tpl.php b/htdocs/core/tpl/card_presend.tpl.php index b6f11828ffe..4a4301c5a5f 100644 --- a/htdocs/core/tpl/card_presend.tpl.php +++ b/htdocs/core/tpl/card_presend.tpl.php @@ -74,6 +74,7 @@ if ($action == 'presend') { $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang($newlang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array('commercial','bills','orders','contracts','members','propal','products','supplier_proposal','interventions')); } diff --git a/htdocs/public/members/new.php b/htdocs/public/members/new.php index 7e09e990221..0ced86fdd67 100644 --- a/htdocs/public/members/new.php +++ b/htdocs/public/members/new.php @@ -277,8 +277,9 @@ if ($action == 'add') // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); - // Get email content fro mtemplae + // Get email content from template $arraydefaultmessage=null; $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_AUTOREGISTER; diff --git a/htdocs/public/payment/paymentok.php b/htdocs/public/payment/paymentok.php index b46f651f9b4..20a0cacd2e8 100644 --- a/htdocs/public/payment/paymentok.php +++ b/htdocs/public/payment/paymentok.php @@ -500,8 +500,9 @@ if ($ispaymentok) // Set output language $outputlangs = new Translate('', $conf); $outputlangs->setDefaultLang(empty($object->thirdparty->default_lang) ? $mysoc->default_lang : $object->thirdparty->default_lang); + // Load traductions files requiredby by page $outputlangs->loadLangs(array("main", "members")); - // Get email content from templae + // Get email content from template $arraydefaultmessage=null; $labeltouse = $conf->global->ADHERENT_EMAIL_TEMPLATE_SUBSCRIPTION; From ceccd5a5100f1ca7c050698a625fa2b25dee1238 Mon Sep 17 00:00:00 2001 From: John BOTELLA Date: Mon, 24 Sep 2018 10:16:28 +0200 Subject: [PATCH 10/81] Fix prev situation invoice selection --- htdocs/core/class/html.form.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index 54b378ad281..2615cc94463 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -3336,7 +3336,7 @@ class Form if ($obj->situation_final != 1) { //Not prov? if (substr($obj->facnumber, 1, 4) != 'PROV') { - if ($selected == $obj->situation_final) { + if ($selected == $obj->rowid) { $opt .= ''; } else { $opt .= ''; From 26d585ffbe11c012c7d983dfb21c5486d78e0214 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 24 Sep 2018 10:43:01 +0200 Subject: [PATCH 11/81] Use latest instead of last --- htdocs/langs/en_US/boxes.lang | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/htdocs/langs/en_US/boxes.lang b/htdocs/langs/en_US/boxes.lang index 20cabb9e418..152a6eccce5 100644 --- a/htdocs/langs/en_US/boxes.lang +++ b/htdocs/langs/en_US/boxes.lang @@ -20,22 +20,22 @@ BoxLastMembers=Latest members BoxFicheInter=Latest interventions BoxCurrentAccounts=Open accounts balance BoxTitleLastRssInfos=Latest %s news from %s -BoxTitleLastProducts=Products/Services: last %s modified +BoxTitleLastProducts=Products/Services: latest %s modified BoxTitleProductsAlertStock=Products: stock alert BoxTitleLastSuppliers=Latest %s recorded suppliers -BoxTitleLastModifiedSuppliers=Suppliers: last %s modified -BoxTitleLastModifiedCustomers=Customers: last %s modified +BoxTitleLastModifiedSuppliers=Suppliers: latest %s modified +BoxTitleLastModifiedCustomers=Customers: latest %s modified BoxTitleLastCustomersOrProspects=Latest %s customers or prospects -BoxTitleLastCustomerBills=Latest %s customer invoices -BoxTitleLastSupplierBills=Latest %s supplier invoices -BoxTitleLastModifiedProspects=Prospects: last %s modified -BoxTitleLastModifiedMembers=Latest %s members +BoxTitleLastCustomerBills=Latest %s modified customer invoices +BoxTitleLastSupplierBills=Latest %s modified supplier invoices +BoxTitleLastModifiedProspects=Latest %s modified prospects +BoxTitleLastModifiedMembers=Latest %s modified members BoxTitleLastFicheInter=Latest %s modified interventions BoxTitleOldestUnpaidCustomerBills=Customer Invoices: oldest %s unpaid BoxTitleOldestUnpaidSupplierBills=Supplier Invoices: oldest %s unpaid BoxTitleCurrentAccounts=Open Accounts: balances -BoxTitleLastModifiedContacts=Contacts/Addresses: last %s modified -BoxMyLastBookmarks=Bookmarks: last %s +BoxTitleLastModifiedContacts=Contacts/Addresses: latest %s modified +BoxMyLastBookmarks=Bookmarks: latest %s BoxOldestExpiredServices=Oldest active expired services BoxLastExpiredServices=Latest %s oldest contacts with active expired services BoxTitleLastActionsToDo=Latest %s actions to do From b1380a690242a354ac02712a39f82b18bc5b7125 Mon Sep 17 00:00:00 2001 From: John BOTELLA Date: Mon, 24 Sep 2018 16:12:00 +0200 Subject: [PATCH 12/81] FIX situation invoice total with credit note --- htdocs/compta/facture/card.php | 2 ++ htdocs/compta/facture/class/facture.class.php | 23 +++++++++++++++++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php index 0465530ec27..f31b41753f0 100644 --- a/htdocs/compta/facture/card.php +++ b/htdocs/compta/facture/card.php @@ -953,6 +953,8 @@ if (empty($reshook)) if($facture_source->type == Facture::TYPE_SITUATION) { + + $line->fk_prev_id = $line->id; if(!empty($facture_source->tab_previous_situation_invoice)) { diff --git a/htdocs/compta/facture/class/facture.class.php b/htdocs/compta/facture/class/facture.class.php index 1ebd9fedfd6..8c756dc5264 100644 --- a/htdocs/compta/facture/class/facture.class.php +++ b/htdocs/compta/facture/class/facture.class.php @@ -4830,7 +4830,7 @@ class FactureLigne extends CommonInvoiceLine * @param int $invoiceid Invoice id * @return int >= 0 */ - function get_prev_progress($invoiceid) + function get_prev_progress($invoiceid, $include_credit_note = true) { if (is_null($this->fk_prev_id) || empty($this->fk_prev_id) || $this->fk_prev_id == "") { return 0; @@ -4844,7 +4844,26 @@ class FactureLigne extends CommonInvoiceLine $resql = $this->db->query($sql); if ($resql && $resql->num_rows > 0) { $res = $this->db->fetch_array($resql); - return floatval($res['situation_percent']); + + $returnPercent = floatval($res['situation_percent']); + + if($include_credit_note) { + + $sql = 'SELECT fd.situation_percent FROM ' . MAIN_DB_PREFIX . 'facturedet fd'; + $sql.= ' JOIN ' . MAIN_DB_PREFIX . 'facture f ON (f.rowid = fd.fk_facture) '; + $sql.= ' WHERE fd.fk_prev_id =' . $this->fk_prev_id; + $sql.= ' AND f.situation_cycle_ref = '.$tmpinvoice->situation_cycle_ref; // Prevent cycle outed + $sql.= ' AND f.type = '.Facture::TYPE_CREDIT_NOTE; + + $res = $this->db->query($sql); + if($res) { + while($obj = $this->db->fetch_object($res)) { + $returnPercent = $returnPercent + floatval($obj->situation_percent); + } + } + } + + return $returnPercent; } else { $this->error = $this->db->error(); dol_syslog(get_class($this) . "::select Error " . $this->error, LOG_ERR); From fc7c0ce52188776dd34f0aeeb8e7c4ca3ce771b7 Mon Sep 17 00:00:00 2001 From: gauthier Date: Mon, 24 Sep 2018 16:23:44 +0200 Subject: [PATCH 13/81] FIX : need to filter on current entity on replenish --- htdocs/product/stock/replenish.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/product/stock/replenish.php b/htdocs/product/stock/replenish.php index 5a9b9888470..a8721d11c90 100644 --- a/htdocs/product/stock/replenish.php +++ b/htdocs/product/stock/replenish.php @@ -185,6 +185,7 @@ if ($action == 'order' && isset($_POST['valid'])) $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."commande_fournisseur"; $sql.= " WHERE fk_soc = ".$suppliersid[$i]; $sql.= " AND source = 42 AND fk_statut = 0"; + $sql.= " AND entity = ".$conf->entity; $sql.= " ORDER BY date_creation DESC"; $resql = $db->query($sql); if($resql && $db->num_rows($resql) > 0) { From df64961c6bdbbcf56f78854d5478f52e3f6c5a99 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 24 Sep 2018 21:56:57 +0200 Subject: [PATCH 14/81] FIX nb of session in title --- htdocs/admin/tools/listsessions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/admin/tools/listsessions.php b/htdocs/admin/tools/listsessions.php index 70b0987732b..0e9e315f2ac 100644 --- a/htdocs/admin/tools/listsessions.php +++ b/htdocs/admin/tools/listsessions.php @@ -99,7 +99,7 @@ $usefilter=0; $listofsessions=listOfSessions(); $num=count($listofsessions); -print_barre_liste($langs->trans("Sessions"), $page, $_SERVER["PHP_SELF"],"",$sortfield,$sortorder,'',$num,0,'setup'); +print_barre_liste($langs->trans("Sessions"), $page, $_SERVER["PHP_SELF"],"",$sortfield,$sortorder,'', $num, ($num?$num:''),'setup'); // Do not show numer (0) if no session found (it means we can't know) $savehandler=ini_get("session.save_handler"); $savepath=ini_get("session.save_path"); From d15c52db3b8e9614e868e02ed96761ffc8017611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Tue, 25 Sep 2018 08:16:05 +0200 Subject: [PATCH 15/81] Update rssparser.class.php --- htdocs/core/class/rssparser.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/rssparser.class.php b/htdocs/core/class/rssparser.class.php index 56e338b7eb8..1417b9a0e29 100644 --- a/htdocs/core/class/rssparser.class.php +++ b/htdocs/core/class/rssparser.class.php @@ -742,7 +742,7 @@ function xml2php($xml) } //Let see if the new child is not in the array - if($tab==false && in_array($key,array_keys($array))) + if($tab === false && in_array($key,array_keys($array))) { //If this element is already in the array we will create an indexed array $tmp = $array[$key]; @@ -751,7 +751,7 @@ function xml2php($xml) $array[$key][] = $child; $tab = true; } - elseif($tab == true) + elseif($tab === true) { //Add an element in an existing array $array[$key][] = $child; From 791c373db5b1f1f71d8989ffd84ec626c6cba64a Mon Sep 17 00:00:00 2001 From: John BOTELLA Date: Tue, 25 Sep 2018 09:54:58 +0200 Subject: [PATCH 16/81] FIX credit note progression --- htdocs/compta/facture/card.php | 6 +++--- htdocs/compta/facture/class/facture.class.php | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php index f31b41753f0..e3a68f9654c 100644 --- a/htdocs/compta/facture/card.php +++ b/htdocs/compta/facture/card.php @@ -953,8 +953,8 @@ if (empty($reshook)) if($facture_source->type == Facture::TYPE_SITUATION) { - - $line->fk_prev_id = $line->id; + $source_fk_prev_id = $line->fk_prev_id; // temporary storing situation invoice fk_prev_id + $line->fk_prev_id = $line->id; // Credit note line need to be linked to the situation invoice it is create from if(!empty($facture_source->tab_previous_situation_invoice)) { @@ -978,7 +978,7 @@ if (empty($reshook)) $maxPrevSituationPercent = 0; foreach($facture_source->tab_previous_situation_invoice[$lineIndex]->lines as $prevLine) { - if($prevLine->id == $line->fk_prev_id) + if($prevLine->id == $source_fk_prev_id) { $maxPrevSituationPercent = max($maxPrevSituationPercent,$prevLine->situation_percent); diff --git a/htdocs/compta/facture/class/facture.class.php b/htdocs/compta/facture/class/facture.class.php index 8c756dc5264..277f1c85e40 100644 --- a/htdocs/compta/facture/class/facture.class.php +++ b/htdocs/compta/facture/class/facture.class.php @@ -4828,6 +4828,7 @@ class FactureLigne extends CommonInvoiceLine * Warning: If invoice is a replacement invoice, this->fk_prev_id is id of the replaced line. * * @param int $invoiceid Invoice id + * @param bool $include_credit_note * @return int >= 0 */ function get_prev_progress($invoiceid, $include_credit_note = true) From 022f842cb09775fd2577348a743153382fbf5e29 Mon Sep 17 00:00:00 2001 From: John BOTELLA Date: Tue, 25 Sep 2018 10:28:47 +0200 Subject: [PATCH 17/81] Fix display good progress for new situation invoices --- htdocs/compta/facture/card.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php index e3a68f9654c..8834d93d162 100644 --- a/htdocs/compta/facture/card.php +++ b/htdocs/compta/facture/card.php @@ -1536,7 +1536,8 @@ if (empty($reshook)) $line->origin = $object->origin; $line->origin_id = $line->id; $line->fetch_optionals($line->id); - + $line->situation_percent = $line->get_prev_progress($object->id); // get good progress including credit note + // Si fk_remise_except defini on vérifie si la réduction à déjà été appliquée if ($line->fk_remise_except) { From 515acbfee2e0cd684a60f55916e2ef9672885639 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 24 Sep 2018 15:13:18 +0200 Subject: [PATCH 18/81] FIX Bad position of hook formattachOptions call --- htdocs/core/class/html.formfile.class.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/htdocs/core/class/html.formfile.class.php b/htdocs/core/class/html.formfile.class.php index f80c6942d8c..7a0c07bb996 100644 --- a/htdocs/core/class/html.formfile.class.php +++ b/htdocs/core/class/html.formfile.class.php @@ -180,7 +180,7 @@ class FormFile if ($linkfiles) { - $out .= "\n\n"; + $out .= "\n\n"; $langs->load('link'); $title = $langs->trans("LinkANewFile"); $out .= load_fiche_titre($title, null, null); @@ -208,19 +208,18 @@ class FormFile $out .= ''; $out .= '
'; $out .= '
'; - $parameters = array('socid'=>(isset($GLOBALS['socid'])?$GLOBALS['socid']:''),'id'=>(isset($GLOBALS['id'])?$GLOBALS['id']:''), 'url'=>$url, 'perm'=>$perm); - $res = $hookmanager->executeHooks('formattachOptions',$parameters,$object); - $out .= "\n\n"; + $out .= "\n\n"; } + $parameters = array('socid'=>(isset($GLOBALS['socid'])?$GLOBALS['socid']:''), 'id'=>(isset($GLOBALS['id'])?$GLOBALS['id']:''), 'url'=>$url, 'perm'=>$perm); + $res = $hookmanager->executeHooks('formattachOptions',$parameters,$object); if (empty($res)) { print '
'; print $out; print '
'; } - print $hookmanager->resPrint; return 1; From e39e54503ee100d9e865dc1b781cee4643c98f04 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 25 Sep 2018 12:54:24 +0200 Subject: [PATCH 19/81] Fix responsive --- htdocs/contact/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/contact/list.php b/htdocs/contact/list.php index b60fdd8886b..04132fa9b75 100644 --- a/htdocs/contact/list.php +++ b/htdocs/contact/list.php @@ -732,7 +732,7 @@ while ($i < min($num,$limit)) // Job position if (! empty($arrayfields['p.poste']['checked'])) { - print ''.dol_trunc($obj->poste,20).''; + print ''.$obj->poste.''; if (! $i) $totalarray['nbfield']++; } // Zip From a9f7bdead68054eac806b328383526373f5ded42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Tue, 25 Sep 2018 15:22:08 +0200 Subject: [PATCH 20/81] fix Option MAIN_DISABLE_NOTES_TAB #9611 --- htdocs/core/tpl/bloc_showhide.tpl.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/htdocs/core/tpl/bloc_showhide.tpl.php b/htdocs/core/tpl/bloc_showhide.tpl.php index 2fe6204f3b9..3f9c1eb0a1d 100644 --- a/htdocs/core/tpl/bloc_showhide.tpl.php +++ b/htdocs/core/tpl/bloc_showhide.tpl.php @@ -1,6 +1,7 @@ - * Copyright (C) 2013 Laurent Destailleur +/* Copyright (C) 2012 Regis Houssin + * Copyright (C) 2013 Laurent Destailleur + * Copyright (C) 2018 Frédéric France * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -42,7 +43,7 @@ print '});'."\n"; print '$("#show-'.$blocname.'").click(function(){'."\n"; print ' setShowHide(1);'."\n"; -print ' $("#'.$blocname.'").show("blind", {direction: "vertical"}, 300).addClass("nohideobject");'."\n"; +print ' $("#'.$blocname.'_bloc").show("blind", {direction: "vertical"}, 300).addClass("nohideobject");'."\n"; print ' $(this).hide();'."\n"; print ' $("#hide-'.$blocname.'").show();'."\n"; print '});'."\n"; From c90cd4ae2933cf594b46b2b0f74d5812247b5f98 Mon Sep 17 00:00:00 2001 From: IJ Date: Wed, 26 Sep 2018 07:21:21 +0100 Subject: [PATCH 21/81] Add more social fields --- htdocs/install/mysql/migration/8.0.0-9.0.0.sql | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/htdocs/install/mysql/migration/8.0.0-9.0.0.sql b/htdocs/install/mysql/migration/8.0.0-9.0.0.sql index c52cd90dc17..bc3491e9012 100644 --- a/htdocs/install/mysql/migration/8.0.0-9.0.0.sql +++ b/htdocs/install/mysql/migration/8.0.0-9.0.0.sql @@ -72,9 +72,18 @@ ALTER TABLE llx_categorie ADD COLUMN ref_ext varchar(255); ALTER TABLE llx_societe ADD COLUMN twitter varchar(255) after skype; ALTER TABLE llx_societe ADD COLUMN facebook varchar(255) after skype; +ALTER TABLE llx_societe ADD COLUMN instagram varchar(255) after skype; +ALTER TABLE llx_societe ADD COLUMN snapchat varchar(255) after skype; +ALTER TABLE llx_societe ADD COLUMN google+ varchar(255) after skype; +ALTER TABLE llx_societe ADD COLUMN youtube varchar(255) after skype; +ALTER TABLE llx_societe ADD COLUMN whatsapp varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN twitter varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN facebook varchar(255) after skype; - +ALTER TABLE llx_socpeople ADD COLUMN instagram varchar(255) after skype; +ALTER TABLE llx_socpeople ADD COLUMN snapchat varchar(255) after skype; +ALTER TABLE llx_socpeople ADD COLUMN google+ varchar(255) after skype; +ALTER TABLE llx_socpeople ADD COLUMN youtube varchar(255) after skype; +ALTER TABLE llx_socpeople ADD COLUMN whatsapp varchar(255) after skype; ALTER TABLE llx_website CHANGE COLUMN fk_user_create fk_user_creat integer; ALTER TABLE llx_website_page CHANGE COLUMN fk_user_create fk_user_creat integer; From d063f6fdeb0226897bad3c7447195eb8d6b0b9e6 Mon Sep 17 00:00:00 2001 From: IJ Date: Wed, 26 Sep 2018 07:34:09 +0100 Subject: [PATCH 22/81] Add social fields --- htdocs/install/mysql/tables/llx_societe.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/install/mysql/tables/llx_societe.sql b/htdocs/install/mysql/tables/llx_societe.sql index 8f6fa75e601..b53bf03c76b 100644 --- a/htdocs/install/mysql/tables/llx_societe.sql +++ b/htdocs/install/mysql/tables/llx_societe.sql @@ -53,6 +53,11 @@ create table llx_societe skype varchar(255), -- twitter varchar(255), -- facebook varchar(255), -- + instagram varchar(255), -- + snapchat varchar(255), -- + googleplus varchar(255), -- + youtube varchar(255), -- + whatsapp varchar(255), -- fk_effectif integer DEFAULT 0, -- fk_typent integer DEFAULT 0, -- fk_forme_juridique integer DEFAULT 0, -- juridical status From 9fd7d98c26581d55f684eaaba544e464b498a261 Mon Sep 17 00:00:00 2001 From: IJ Date: Wed, 26 Sep 2018 07:35:26 +0100 Subject: [PATCH 23/81] Add social fields --- htdocs/install/mysql/tables/llx_socpeople.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/install/mysql/tables/llx_socpeople.sql b/htdocs/install/mysql/tables/llx_socpeople.sql index aa3256c29fd..e9ed364a4b7 100644 --- a/htdocs/install/mysql/tables/llx_socpeople.sql +++ b/htdocs/install/mysql/tables/llx_socpeople.sql @@ -45,6 +45,11 @@ create table llx_socpeople skype varchar(255), twitter varchar(255), -- facebook varchar(255), -- + instagram varchar(255), -- + snapchat varchar(255), -- + google+ varchar(255), -- + youtube varchar(255), -- + whatsapp varchar(255), -- photo varchar(255), no_email smallint NOT NULL DEFAULT 0, priv smallint NOT NULL DEFAULT 0, From 68dc21360190a3a81bdd764b2ef5e06f6745d479 Mon Sep 17 00:00:00 2001 From: IJ Date: Wed, 26 Sep 2018 07:36:22 +0100 Subject: [PATCH 24/81] Correct Google+ to plus --- htdocs/install/mysql/migration/8.0.0-9.0.0.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/install/mysql/migration/8.0.0-9.0.0.sql b/htdocs/install/mysql/migration/8.0.0-9.0.0.sql index bc3491e9012..9d7479591d8 100644 --- a/htdocs/install/mysql/migration/8.0.0-9.0.0.sql +++ b/htdocs/install/mysql/migration/8.0.0-9.0.0.sql @@ -74,14 +74,14 @@ ALTER TABLE llx_societe ADD COLUMN twitter varchar(255) after skype; ALTER TABLE llx_societe ADD COLUMN facebook varchar(255) after skype; ALTER TABLE llx_societe ADD COLUMN instagram varchar(255) after skype; ALTER TABLE llx_societe ADD COLUMN snapchat varchar(255) after skype; -ALTER TABLE llx_societe ADD COLUMN google+ varchar(255) after skype; +ALTER TABLE llx_societe ADD COLUMN googleplus varchar(255) after skype; ALTER TABLE llx_societe ADD COLUMN youtube varchar(255) after skype; ALTER TABLE llx_societe ADD COLUMN whatsapp varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN twitter varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN facebook varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN instagram varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN snapchat varchar(255) after skype; -ALTER TABLE llx_socpeople ADD COLUMN google+ varchar(255) after skype; +ALTER TABLE llx_socpeople ADD COLUMN googleplus varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN youtube varchar(255) after skype; ALTER TABLE llx_socpeople ADD COLUMN whatsapp varchar(255) after skype; From 92a3faeaf76df2b31e2fdc2302e3d33e0aa05abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Wed, 26 Sep 2018 10:13:14 +0200 Subject: [PATCH 25/81] add try catch for swiftmailer --- htdocs/core/class/CMailFile.class.php | 36 +++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/htdocs/core/class/CMailFile.class.php b/htdocs/core/class/CMailFile.class.php index 8313894f68c..9bd17a9670a 100644 --- a/htdocs/core/class/CMailFile.class.php +++ b/htdocs/core/class/CMailFile.class.php @@ -407,18 +407,44 @@ class CMailFile // TODO if (! empty($moreinheader)) ... // Give the message a subject - $this->message->setSubject($this->encodetorfc2822($subject)); + try { + $this->message->setSubject($this->encodetorfc2822($subject)); + } catch (Exception $e) { + $this->error = $e->getMessage(); + } // Set the From address with an associative array //$this->message->setFrom(array('john@doe.com' => 'John Doe')); - if (! empty($from)) $this->message->setFrom($this->getArrayAddress($from)); + if (! empty($from)) { + try { + $result = $this->message->setFrom($this->getArrayAddress($from)); + } catch (Exception $e) { + $this->error = $e->getMessage(); + } + } // Set the To addresses with an associative array - if (! empty($to)) $this->message->setTo($this->getArrayAddress($to)); + if (! empty($to)) { + try { + $result = $this->message->setTo($this->getArrayAddress($to)); + } catch (Exception $e) { + $this->error = $e->getMessage(); + } + } - if (! empty($from)) $this->message->SetReplyTo($this->getArrayAddress($from)); + if (! empty($from)) { + try { + $result = $this->message->SetReplyTo($this->getArrayAddress($from)); + } catch (Exception $e) { + $this->error = $e->getMessage(); + } + } - $this->message->setCharSet($conf->file->character_set_client); + try { + $result = $this->message->setCharSet($conf->file->character_set_client); + } catch (Exception $e) { + $this->error = $e->getMessage(); + } if (! empty($this->html)) { From 1bac3a0ccfc4ce81a76eca8b3734b0d22d8f14ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Wed, 26 Sep 2018 10:37:20 +0200 Subject: [PATCH 26/81] swiftmailer is doing encodetorfc2822 --- htdocs/core/class/CMailFile.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/CMailFile.class.php b/htdocs/core/class/CMailFile.class.php index 9bd17a9670a..bb38563837a 100644 --- a/htdocs/core/class/CMailFile.class.php +++ b/htdocs/core/class/CMailFile.class.php @@ -408,7 +408,7 @@ class CMailFile // Give the message a subject try { - $this->message->setSubject($this->encodetorfc2822($subject)); + $this->message->setSubject($subject); } catch (Exception $e) { $this->error = $e->getMessage(); } From 73ed3407662133a4c480ad69b8af52c0190ec6d5 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Wed, 26 Sep 2018 11:52:06 +0200 Subject: [PATCH 27/81] Update german accounting file to use rowid - fix "TODO Fix this file to use rowid" --- .../mysql/data/llx_accounting_account_de.sql | 15524 ++++++++-------- 1 file changed, 7761 insertions(+), 7763 deletions(-) diff --git a/htdocs/install/mysql/data/llx_accounting_account_de.sql b/htdocs/install/mysql/data/llx_accounting_account_de.sql index 7db879a75cb..9f3ed2ba99d 100644 --- a/htdocs/install/mysql/data/llx_accounting_account_de.sql +++ b/htdocs/install/mysql/data/llx_accounting_account_de.sql @@ -22,7770 +22,7768 @@ -- Descriptif des plans comptables DE SKR03 + SKR04 -- ADD 500000 to rowid # Do no remove this comment -- --- TODO Fix this file to use rowid +-- SKR03 --- SKR03 - -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','RAP',NULL,'Abgenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV',NULL,'Bestandsveränderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','AEL',NULL,'Andere aktivierte Eigenleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','VSK',NULL,'Verrechnete Stoffkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','BA',NULL,'Bilanz - Aktiva',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','BP',NULL,'Bilanz - Passiva',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','GVA',NULL,'Gewinn u. Verlust - Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','GVE',NULL,'Gewinn u. Verlust - Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA','BA','Anlage- und Kapitalkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA','BA','Finanz- und Privatkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA','BA','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA','BA','Bestände an Erzeugnissen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP','BP','Anlage- und Kapitalkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP','BP','Finanz- und Privatkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA','GVA','Abgrenzungskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA','GVA','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA','GVA','Betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA','GVA','Erlöskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE','GVE','Abgrenzungskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K3GVE','GVE','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE','GVE','Erlöskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA01','K0BA','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','1','K0BA01','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA02','K0BA','Aufwendungen für die Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','2','K0BA02','Aufwendungen für die Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA1','K0BA','Immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA11','K0BA1','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','10','K0BA11','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','15','0010','Konzessionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','20','0010','Gewerbliche Schutzrechte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','25','0010','ähnliche Rechte und Werte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','27','0010','EDV-Software',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','30','0010','Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA12','K0BA1','Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','35','K0BA12','Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA13','K0BA1','Geleistete Anzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','38','K0BA13','Anzahlungen auf Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','39','K0BA13','Anzahlungen auf immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA14','K0BA1','Verschmelzungsmehrwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','40','K0BA14','Verschmelzungsmehrwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA2','K0BA','Sachanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA21','K0BA2','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','50','K0BA21','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','59','0050','Grundstücksanteil des häuslichen Arbeitszimmers.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','60','K0BA21','Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','65','0060','Unbebaute Grundstücke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','70','0060','Grundstücksgleiche Rechte - (erbbaurecht Daürwohnrecht)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','75','0060','Grundstücke mit Substanzverzehr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA22','K0BA2','Geleistete Anzahlungen und Anlagen im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','79','K0BA22','Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','80','K0BA21','Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','85','0080','Grundstückswerte eigener bebauter Grundstücke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','90','0080','Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','100','0080','Fabrikbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','110','0080','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','111','0080','Außenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','112','0080','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','113','0080','Einrichtung Fabrik- und Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','115','0080','Andere Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','120','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','129','K0BA22','Anzahlungen auf Geshäfts- Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','140','K0BA21','Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','145','K0BA21','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','146','K0BA21','Aussenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','147','K0BA21','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','148','K0BA21','Einrichtungen für Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','149','K0BA21','Gebäudeteil des häuslichen Arbeitszimmers',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','150','K0BA22','Wohnbauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','159','K0BA22','Anzahlgen auf Wohnbauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','160','K0BA21','Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','165','0160','Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','170','0160','Fabrikbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','175','0160','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','176','0160','Aussenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','177','0160','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','178','0160','Einrichtung für Fabrik- und Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','179','K0BA21','Andere Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','180','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','189','K0BA22','Anzahlungen auf Geschäfts- Fabrik- und andere Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','190','K0BA21','Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','191','K0BA21','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','192','K0BA21','Aussenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','193','K0BA21','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','194','K0BA21','Einrichtungen für Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','195','K0BA22','Wohnbauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','199','K0BA22','Anzahlungen a. Wohnbauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA23','K0BA2','Technische Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','200','K0BA23','Technische Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','210','0200','Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','220','0200','Maschinengebundene Werkzeuge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','240','0200','Maschinelle Anlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','260','0200','Transportanlagen und ähnliches',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','280','0200','Betriebsvorrichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','290','K0BA22','Technische Anlagen und Maschinen im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','299','K0BA22','Anzahlungen auf technische Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA24','K0BA2','Andere Anlagen Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','300','K0BA24','Andere Anlagen Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','310','0300','Andere Anlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','320','0300','PKW',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','350','0300','LKW',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','380','0300','Sonstige Transportmittel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','400','0300','Betriebsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','410','0300','Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','420','0300','Büroeinrichtung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','430','0300','Ladeneinrichtung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','440','0300','Werkzeuge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','450','0300','Einbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','460','0300','Gerüst- und Schalungsmaterial',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','480','0300','Geringwertige Wirtschaftsgüter bis 410 Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','490','0300','Sonstige Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','498','K0BA22','Andere Anlagen Betriebs- und Geschäftsausstattung im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','499','K0BA22','Anzahlungen auf andere Anlagen Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA3','K0BA','Finanzanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA31','K0BA3','Anteile an verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','500','K0BA31','Anteile an verbundenen Unternehmen (Anlagevermögen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','504','K0BA31','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA32','K0BA3','Ausleihungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','505','K0BA32','Ausleihungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA33','K0BA3','Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','510','K0BA33','Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','513','0510','Typisch stille Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','516','0510','Atypisch stille Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','517','0510','Andere Beteiligungen an Kapitalgesellschaften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','518','0510','Andere Beteiligungen an Personengesellschaften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','519','0510','Beteiligung einer GmbH&Co.KG an einer Komplementär GmbH',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA34','K0BA3','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','520','K0BA34','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA35','K0BA3','Wertpapiere des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','525','K0BA35','Wertpapiere des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','530','0525','Wertpapiere mit Gewinnbeteiligungsansprüchen die dem Halbeinkünfteverfahren unterliegen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','535','0525','Festverzinsliche Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA36','K0BA3','Sonstige Ausleihungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','540','K0BA36','Sonstige Ausleihungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','550','0540','Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA37','K0BA3','Genossenschaftsanteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','570','K0BA37','Genossenschaftsanteile zum langfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','580','K0BA36','Ausleihungen an Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','590','K0BA36','Ausleihungen an nahe stehende Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA38','K0BA3','Rückdeckungsansprüche aus Lebensversicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','595','K0BA38','Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP1','K0BP','Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP11','K0BP1','Anleihen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','600','K0BP11','Anleihen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','601','0600','Anleihen nicht konvertibel (bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','605','0600','Anleihen nicht konvertibel (1-5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','610','0600','Anleihen nicht konvertibel (größer 5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','615','0600','Anleihen konvertibel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','616','0600','Anleihen konvertibel(bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','620','0600','Anleihen konvertibel(1-5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','625','0600','Anleihen konvertibel(größer 5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP12','K0BP1','Verbindlichkeiten gegenüber Kreditinstituten oder Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','630','K0BP12','Verbindlichkeiten gegenüber Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','631','0630','Verbindlichkeiten gegenüber Kreditinstitut ( bis 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','640','0630','Verbindlichkeiten gegenüber Kreditinstitut (1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','650','0630','Verbindlichkeiten gegenüber Kreditinstitut (größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','660','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','661','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen ( bis 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','670','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','680','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','690','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','691','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','692','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','693','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','694','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','695','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','696','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','697','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','698','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP13','K0BP1','Verbindlichkeiten gegenüber Kreditinstitut',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','699','K0BP13','Gegenkonto 0630-0689 bei Aufteilung der Konten 0690-0698',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP14','K0BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','700','K0BP14','Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','701','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','705','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','710','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP15','K0BP1','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','715','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','716','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','720','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','725','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP16','K0BP1','Sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','730','K0BP16','Verbindlichkeit gegenüber Gesellschaftern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','731','0730','Verbindlichkeit gegenüber Gesellschaftern ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','740','0730','Verbindlichkeit gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','750','0730','Verbindlichkeit gegenüber Gesellschaftern ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','755','0730','Verbindlichkeit gegenüber Gesellschaftern für offene Ausschüttungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','760','0730','Darlehen typisch stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','761','0730','Darlehen typisch stiller Gesellschafter ( bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','764','0730','Darlehen typisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','767','0730','Darlehen typisch stiller Gesellschafter ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','770','0730','Darlehen atypisch stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','771','0730','Darlehen atypisch stiller Gesellschafter ( bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','774','0730','Darlehen atypisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','777','0730','Darlehen atypisch stiller Gesellschafter ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','780','0730','Partiarische Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','781','0730','Partiarische Darlehen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','784','0730','Partiarische Darlehen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','787','0730','Partiarische Darlehen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','790','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','791','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','792','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','793','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','794','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','795','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','796','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','797','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','798','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','799','0730','Gegenkonto 0730 - 0789 bei Aufteilung der Konten 0790 - 0798',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP2','K0BP','Kapital Kapitalgesellschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP21','K0BP2','Gezeichnetes Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','800','K0BP21','Gezeichnetes Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP22','K0BP2','Ausstehende Einlagen auf das gezeichnete Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','801','K0BP22','Ausstehende Einlagen auf das gezeichnete Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','802','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','803','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','804','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','805','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','806','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','807','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','808','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','809','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','810','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','811','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','812','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','813','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','814','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','815','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','816','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','817','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','818','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','819','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP23','K0BP2','Nicht eingeforderte ausstehende Einlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','820','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','821','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','822','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','823','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','824','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','825','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','826','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','827','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','828','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','829','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP24','K0BP2','Eingeforderte noch ausstehende Kapitaleinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','830','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','831','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','832','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','833','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','834','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','835','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','836','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','837','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','838','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP25','K0BP2','Eingeforderte Nachschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','839','K0BP25','Eingeforderte Nachschüsse ( Forderungen Gegenkonto 0845 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP3','K0BP','Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP31','K0BP3','Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','840','K0BP31','Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','841','0840','Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','842','0840','Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','843','0840','Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','844','0840','Kapitalrücklage durch andere Zuzahlungen in das Eigenkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','845','0840','Eingefordertes Nachschusskapital ( Gegenkonto 0839 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP4','K0BP','Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP41','K0BP4','Gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','846','K0BP41','Gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP42','K0BP4','Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','850','K0BP42','Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP43','K0BP4','Satzungsmässige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','851','K0BP43','Satzungsmässige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP44','K0BP4','Andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','855','K0BP44','Andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','856','K0BP44','Eigenkapitalanteil von Wertaufholungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP45','K0BP4','Gewinnvortrag oder Verlustvortrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','860','K0BP45','Gewinnvortrag vor Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','868','K0BP45','Verlustvortrag vor Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP46','K0BP4','Vortrag auf neue Rechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','869','K0BP46','Vortrag auf neue Rechnung (Bilanz)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP5','K0BP','Kapital Personenhandelsgesellschaft vollhafter/Einzelunternehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','870','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','871','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','872','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','873','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','874','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','875','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','876','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','877','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','878','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','879','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','880','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','881','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','882','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','883','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','884','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','885','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','886','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','887','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','888','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','889','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','890','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','891','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','892','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','893','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','894','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','895','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','896','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','897','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','898','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','899','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP6','K0BP','Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','900','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','901','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','902','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','903','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','904','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','905','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','906','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','907','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','908','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','909','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','910','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','911','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','912','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','913','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','914','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','915','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','916','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','917','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','918','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','919','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','920','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','921','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','922','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','923','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','924','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','925','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','926','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','927','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','928','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','929','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP7','K0BP','Sonderposten mit Rücklageanteil',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP71','K0BP7','Sonderposten mit Rücklageanteil',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','930','K0BP71','Sonderposten mit Rücklageanteil steuerfreie Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','931','K0BP71','Sonderposten mit Rücklageanteil nach § 6b EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','932','K0BP71','Sonderposten mit Rücklageanteil nach Abschnitt 35 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','933','K0BP71','Sonderposten mit Rücklageanteil nach § 6d EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','934','K0BP71','Sonderposten mit Rücklageanteil nach § 1 EntwLStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP72','K0BP7','Sonderposten aus der Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','935','K0BP72','Sonderposten aus der Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','936','K0BP71','Sonderposten mit Rücklageanteil nach § 7 d EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','937','K0BP71','Sonderposten mit Rücklageanteil nach § 79 EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','938','K0BP71','Sonderposten mit Rücklageanteil nach § 80 EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','939','K0BP71','Sonderposten mit Rücklageanteil nach § 52 Abs.16 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','940','K0BP71','Sonderposten mit Rücklageanteil Sonderabschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','941','K0BP71','Sonderposten mit Rücklageanteil § 82 a EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','942','K0BP71','Sonderposten mit Rücklageanteil § 82 d EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','943','K0BP71','Sonderposten mit Rücklageanteil nach § 82 e EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','944','K0BP71','Sonderposten mit Rücklageanteil nach § 14 BerlinFG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','945','K0BP71','Sonderposten mit Rücklageanteil für Förderung nach § 3 Zonen-RFG/§ 4-6 FördergebietsG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','946','K0BP71','Sonderposten mit Rücklageanteil nach § 4d EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','947','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.1 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','948','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.3 u.7 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP73','K0BP7','Sonderposten für Zuschüsse und Zulagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','949','K0BP73','Sonderposten für Zuschüsse und Zulagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP8','K0BP','Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP81','K0BP8','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','950','K0BP81','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP82','K0BP8','Steuerrückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','955','K0BP82','Steuerrückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','957','0955','Gewerbesteuerrückstellung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','963','0955','Körperschaftsteuerrückstellung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP83','K0BP8','Sonstige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','965','K0BP83','Rückstellungen für Personalkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','966','K0BP83','Rückstellungen zur Erfüllung der Aufbewahrungspflichten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','969','K0BP82','Rückstellung für latente Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','970','K0BP83','Sonstige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','971','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung in den ersten drei Monaten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','972','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung innerhalb des 4. bis 12. Monats',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','973','K0BP83','Rückstellungen für Abraum- und Abfallbeseitigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','974','K0BP83','Rückstellungen für Gewährleistungen ( Gegenkonto 4790 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','976','K0BP83','Rückstellungen für drohende Verluste aus schwebenden Geschäften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','977','K0BP83','Rückstellungen für Abschluss- und Prüfungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','978','K0BP83','Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','979','K0BP83','Rückstellungen für Umweltschutz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA4','K0BA','Abgenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA41','K0BA4','Rechnungsabgrenzungsposten (Aktiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','980','K0BA41','Aktive Rechnungsabgrenzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA42','K0BA4','Abgrenzung latenter Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','983','K0BA42','Abgrenzung aktive latente Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','984','K0BA41','Als Aufwand berücksichtigte Zölle und Verbrauchsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','985','K0BA41','Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','986','K0BA41','Damnum / Disagio',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP9','K0BP','Abgenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP91','K0BP9','Rechnungsabgrenzungsposten (Passiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','990','K0BP91','Passive Rechnungsabgrenzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','RAP1','RAP','Sonstige Aktiva oder sonstige Passiva',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','992','RAP1','Abgenzungsposten zur unterjährigen Kostenverrechnung für BWA',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','RAP2','RAP','Forderungen aus Lieferungen und Leistungen H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','996','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','997','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','998','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','999','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA1','K1BA','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA11','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1000','K1BA11','Kasse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1010','1000','Nebenkasse 1',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1020','1000','Nebenkasse 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA12','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks oder Verbindlichkeiten gegenüber Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1100','K1BA12','Postbank',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1110','1100','Postbank 1',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1120','1100','Postbank 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1130','1100','Postbank 3',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1190','1100','LZB-Guthaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1195','1100','Bundesbankguthaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1200','K1BA12','Bank',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1201','1200','Bank Kontobewegung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1202','1200','Bank nicht identifizierte Zahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1203','1200','Bank nicht zugeordnete Zahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1210','1200','Bank 1',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1220','1200','Bank 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1230','1200','Bank 3',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1240','1200','Bank 4',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1250','1200','Bank 5',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1290','1200','Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1295','1200','Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA13','K1BA1','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1300','K1BA13','Wechsel aus Lieferung und Leistung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1301','K1BA13','Wechsel aus Lieferung und Leistung bis 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1302','K1BA13','Wechsel aus Lieferung und Leistung größer 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1305','K1BA13','Wechsel aus Lieferung und Leistung Bundesbankfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA14','K1BA1','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1310','K1BA14','Besitzwechsel gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1311','K1BA14','Besitzwechsel gegen verbundene Unternehmen bis 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1312','K1BA14','Besitzwechsel gegen verbundene Unternehmen größer 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1315','K1BA14','Besitzwechsel gegen verbundene Unternehmen Bundesbankfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA15','K1BA1','Forderungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1320','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1321','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bis 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1322','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht größer 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1325','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bundesbankfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA16','K1BA1','Sonstige Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1327','K1BA16','Finanzwechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1329','K1BA16','Andere Wertpapiere mit unwesentlichen Wertschwankungen im Sinne Textziffer 18 DRS 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA17','K1BA1','Kassenbestand Bundesbankguthaben Guthaben bei Kreditinstituten und Schecks',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1330','K1BA17','Schecks',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1332','K1BA17','Bezahlung selektiert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA2','K1BA','Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA21','K1BA2','Anteile an verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1340','K1BA21','Anteile an verbundenen Unternehmen (Umlaufvermögen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1344','K1BA21','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA22','K1BA2','Eingene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1345','K1BA22','Eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA23','K1BA2','Sonstige Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1348','K1BA23','Sonstige Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1349','K1BA23','Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA3','K1BA','Forderungen und sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA31','K1BA3','Sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1350','K1BA31','GmbH-Anteile zum kurzfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1352','K1BA31','Genossenschaftsanteile zum kurzfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1355','K1BA31','Ansprüche aus Rückdeckungsversicherung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA32','K1BA3','Sonstige Vermögensgegenstände oder sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1360','K1BA32','Geldtransit',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1370','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG ergebniswirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1371','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG nicht ergebniswirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1372','K1BA32','Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1380','K1BA32','überleitungskonto Kostenstelle',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1390','K1BA32','Verrechnungskonto Ist-Versteuerung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA33','K1BA3','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1400','K1BA33','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1401','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1402','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1403','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1404','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1405','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1406','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1410','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1411','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1412','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1413','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1414','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1415','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1416','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1417','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1418','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1419','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1420','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1421','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1422','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1423','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1424','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1425','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1426','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1427','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1428','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1429','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1430','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1431','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1432','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1433','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1434','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1435','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1436','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1437','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1438','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1439','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1440','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1441','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1442','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1443','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1444','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1445','1400','Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmens (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1446','1400','Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1447','1400','Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1448','1400','Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1449','1400','Gegenkonto 1445-1448 bei Aufteilung der Forderungen nach Steuersätzen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1450','1400','Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1451','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1452','1400','Projekt Werte in Arbeit',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1455','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1460','1400','Zweifelhafte Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1461','1400','Zweifelhafte Forderungen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1465','1400','Zweifelhafte Forderungen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA34','K1BA3','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1470','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1471','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1475','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA35','K1BA3','Forderungen gegen verbundene Unternehmen H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1478','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1479','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA36','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1480','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1481','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1485','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA37','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1488','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1489','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1490','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1491','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1495','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA38','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1498','K1BA38','Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA39','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo oder sonstige Verbindlichkeiten S-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1499','K1BA39','Gegenkonto 1451 - 1497 bei Aufteilung Debitorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1500','K1BA31','Sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1501','1500','Sonstige Vermögensgegenstände ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1502','1500','Sonstige Vermögensgegenstände ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1503','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1504','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1505','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1506','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1507','1500','Forderungen gegen Gesellschafter ( bis 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1508','1500','Forderungen gegen Gesellschafter ( größer 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA3a','K1BA3','Geleistete Anzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1510','K1BA3a','Geleistete Anzahlungen auf Vorräte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1511','1510','Geleistete Anzahlungen 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1516','1510','Geleistete Anzahlungen 15% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1517','1510','Geleistete Anzahlungen 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1518','1510','Geleistete Anzahlungen 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1520',NULL,'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1521','K1BA31','Agenturwarenabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1525','K1BA32','Kautionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1526','K1BA33','Kautionen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1527','K1BA34','Kautionen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1528','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 2 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1529','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 2 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1530','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1531','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1537','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1540','K1BA31','Steuerüberzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1542','K1BA31','Steuererstattungsansprüche gegenüber anderen EG-Ländern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1543','K1BA31','Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1545','K1BA31','Umsatzsteuerforderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1547','K1BA31','Forderungen aus entrichteten Verbrauchsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1548','K1BA32','Vorsteuer im Folgejahr abziehbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1549','K1BA31','Körperschaftsteuerrückforderung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1550','K1BA31','Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1551','K1BA31','Darlehen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1555','K1BA31','Darlehen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1556','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1557','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1558','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1559','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1560','K1BA32','Aufzuteilende Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1561','K1BA32','Aufzuteilende Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1562','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1563','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1565','K1BA32','Aufzuteilende Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1566','K1BA32','Aufzuteilende Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1567','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1568','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 16 %',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1569','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1570','K1BA32','Abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1571','K1BA32','Abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1572','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1573','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1574','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1575','K1BA32','Abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1576','K1BA32','Abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1577','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1578','K1BA32','Abziehbare Vorsteuer nach § 13b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1579','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1580','K1BA32','Gegenkonto Vorsteuer § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1581','K1BA32','Auflösung Vorsteuer aus Vorjahr § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1582','K1BA32','Vorsteuer aus Investitionen § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1583','K1BA32','Gegenkonto für Vorsteuer nach Durchschnittssätzen für § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1584','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferabten ohne Umsatzsteuer-Identifikationsnummer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1585','K1BA32','Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1587','K1BA32','Vorsteuer nach allgemeinen Durchschnittssätzen UStVA Kz. 63',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1588','K1BA32','Bezahlte Einfuhrumsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1590','K1BA32','Durchlaufende Posten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1591','K1BA32','Durchlaufende Posten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1592','K1BA32','Fremdgeld',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA3b','K1BA3','Sonstige Verbindlichkeiten S-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1593','K1BA3b','Verrechnungskonto erhaltene Anzahlungen bei Buchung über Debitorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1594','K1BA34','Forderungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1595','1594','Forderungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1596','1594','Forderungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1597','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1598','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1599','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP1','K1BP','Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP11','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen oder sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1600','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1601','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1602','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1603','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1605','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1606','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1607','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1609','1600','Gegenkonto 1605 - 1607 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1610','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1611','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1612','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1613','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1614','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1615','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1616','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1617','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1618','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1619','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1620','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1621','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1622','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1623','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1624','1600','Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1625','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1626','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1628','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP12','K1BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1630','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1631','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1635','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1638','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP13','K1BP1','Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1640','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1641','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1645','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1648','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1650','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1651','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1655','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1658','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP14','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen S-Saldo oder sonstige Vermögensgegenstände H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1659','K1BP14','Gegenkonto 1625 - 1658 bei Aufteilung Kreditorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP15','K1BP1','Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1660','K1BP15','Schuldwechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1661','K1BP15','Schuldwechsel ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1680','K1BP15','Schuldwechsel ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1690','K1BP15','Schuldwechsel ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP16','K1BP1','Sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1700','K1BP16','Sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1701','1700','Sonstige Verbindlichkeiten ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1702','1700','Sonstige Verbindlichkeiten ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1703','1700','Sonstige Verbindlichkeiten ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1704','1700','Sonstige Verbindlichkeiten z.B. nach § 11 Abs. 2 Satz 2 EStG für 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1705','1700','Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1706','1700','Darlehen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1707','1700','Darlehen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1708','1700','Darlehen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP17','K1BP1','Sonstige Verbindlichkeiten oder sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1709','K1BP17','Gewinnverfügungskonto stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP18','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Passiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1710','K1BP18','Erhaltene Anzahlungen ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1711','1710','Erhaltene versteuerte Anzahlungen 7% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1716','1710','Erhaltene versteuerte Anzahlungen 15% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1717','1710','Erhaltene versteuerte Anzahlungen 16% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1718','1710','Erhaltene versteuerte Anzahlungen 19% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1719','1710','Erhaltene Anzahlungen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1720','1710','Erhaltene Anzahlungen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1721','1710','Erhaltene Anzahlungen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP19','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Aktiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1722','K1BP19','Erhaltene Anzahlungen (von Vorräten offen abgesetzt)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1730','K1BP16','Kreditkartenabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1731','K1BP16','Agenturwarenabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1732','K1BP16','Erhaltene Kautionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1733','K1BP16','Erhaltene Kautionen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1734','K1BP16','Erhaltene Kautionen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1735','K1BP16','Erhaltene Kautionen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1736','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1737','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1738','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1739','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1740','K1BP16','Verbindlichkeiten aus Lohn und Gehalt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1741','K1BP17','Verbindlichkeiten aus Lohn- und Kirchensteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1742','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1743','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1744','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1745','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1746','K1BP16','Verbindlichkeiten aus Einbehaltungen ( KapESt und SolZ auf KapESt )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1747','K1BP16','Verbindlichkeiten für Verbrauchsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1748','K1BP16','Verbindlichkeiten für Einbehaltungen von Arbeitnehmern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1749','K1BP16','Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1750','K1BP16','Verbindlichkeiten aus Vermögensbildung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1751','K1BP16','Verbindlichkeiten aus Vermögensbildung ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1752','K1BP16','Verbindlichkeiten aus Vermögensbildung ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1753','K1BP16','Verbindlichkeiten aus Vermögensbildung ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1754','K1BP16','Steuerzahlungen an andere EG-Länder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1755','K1BP17','Lohn- und Gehaltsverrechnungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1756','1755','Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1759','1755','Voraussichtliche Beitragsschuld gegenüber den sozialversicherungsträgern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP1a','K1BP1','Steuerrückstellungen oder sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1760','K1BP1a','Umsatzsteuer nicht fällig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1761','K1BP1a','Umsatzsteuer nicht fällig 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1762','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1763','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1764','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1765','K1BP1a','Umsatzsteuer nicht fällig 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1766','K1BP1a','Umsatzsteuer nicht fällig 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1767','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1768','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen sonstigen Leistungen / Werklieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1769','K1BP17','Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1770','K1BP17','Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1771','K1BP17','Umsatzsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1772','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1773','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1774','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1775','K1BP17','Umsatzsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1776','K1BP17','Umsatzsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1777','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1778','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1779','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb Vorsteuerabzug',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1780','K1BP17','Umsatzsteuer-Vorauszahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1781','K1BP17','Umsatzsteuer-Vorauszahlung 1/11',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1782','K1BP17','Nachsteuer UstVA Kz. 65',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1783','K1BP17','In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerveträge UstVA Kz. 69',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1784','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1785','K1BP17','Umsatzsteuer nach § 13b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1786','K1BP17','Umsatzsteuer nach § 13b UStG 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1787','K1BP17','Umsatzsteuer nach § 13b UStG 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1788','K1BP17','Einfuhrumsatzsteuer aufgeschoben bis',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1789','K1BP17','Umsatzsteuer laufendes Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1790','K1BP17','Umsatzsteuer Vorjahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1791','K1BP17','Umsatzsteuer frühere Jahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1792','K1BP17','Sonstige Verrechnungskonten (Interimskonten)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP1b','K1BP1','Sonstige Vermögensgegenstände H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1793','K1BP1b','Verrechnungskonto geleistete Anzahlungen bei Buchung über Kreditkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1795','K1BP1b','Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K1BP2','K1BP','Privat Vollhafter / Einzelunternehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1800','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1801','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1802','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1803','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1804','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1805','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1806','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1807','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1808','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1809','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1810','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1811','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1812','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1813','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1814','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1815','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1816','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1817','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1818','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1819','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1820','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1821','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1822','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1823','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1824','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1825','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1826','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1827','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1828','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1829','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1830','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1831','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1832','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1833','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1834','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1835','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1836','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1837','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1838','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1839','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1840','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1841','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1842','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1843','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1844','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1845','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1846','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1847','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1848','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1849','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1850','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1851','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1852','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1853','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1854','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1855','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1856','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1857','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1858','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1859','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1860','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1861','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1862','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1863','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1864','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1865','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1866','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1867','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1868','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1869','K1BP2','Grundstücksaufwand (Umsatzsteuerschlüssel möglich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1870','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1871','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1872','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1873','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1874','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1875','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1876','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1877','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1878','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1879','K1BP2','Grundstücksertrag (Umsatzsteuerschlüssel möglich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1880','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1881','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1882','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1883','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1884','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1885','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1886','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1887','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1888','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1889','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1890','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1891','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1892','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1893','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1894','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1895','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1896','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1897','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1898','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1899','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1900','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K1BP3','K1BP','Privat Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1900','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1901','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1902','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1903','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1904','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1905','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1906','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1907','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1908','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1909','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1910','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1911','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1912','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1913','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1914','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1915','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1916','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1917','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1918','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1919','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1920','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1921','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1922','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1923','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1924','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1925','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1926','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1927','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1928','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1929','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1930','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1931','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1932','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1933','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1934','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1935','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1936','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1937','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1938','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1939','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1940','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1941','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1942','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1943','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1944','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1945','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1946','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1947','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1948','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1949','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1950','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1951','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1952','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1953','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1954','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1955','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1956','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1957','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1958','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1959','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1960','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1961','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1962','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1963','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1964','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1965','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1966','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1967','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1968','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1969','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1970','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1971','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1972','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1973','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1974','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1975','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1976','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1977','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1978','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1979','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1980','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1981','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1982','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1983','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1984','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1985','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1986','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1987','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1988','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1989','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1990','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1991','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1992','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1993','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1994','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1995','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1996','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1997','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1998','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1999','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA1','K2GVA','Außerordentliche Aufwendungen i.S.d. BiRiLiG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA11','K2GVA1','Außerordentliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2000','K2GVA11','Außerordentliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2001','K2GVA11','Außerordentliche Aufwendungen finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2005','K2GVA11','Außerordentliche Aufwendungen nicht finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA2','K2GVA','Betriebsfremde und periodenfremde Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA21','K2GVA2','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2010','K2GVA21','Betriebsfremde Aufwendungen (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2020','K2GVA21','Periodenfremde Aufwendungen (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA3','K2GVA','Zinsen und ähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA31','K2GVA3','Zinsen und ähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2100','K2GVA31','Zinsen und ähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2103','2100','Steuerlich abzugsfähige andere Nebenleistungen zu steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2104','2100','Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2107','2100','Zinsaufwendungen § 233a AO betriebliche Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2108','2100','Zinsaufwendungen §§ 233a bis 237 AO Personensteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2109','2100','Zinsaufwendungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2110','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2113','2100','Nicht abzugsfähige Schuldzinsen gemäß § 4 Abs. 4a EStG (Hinzurechnungsbetrag)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2115','2100','Zinsen und ähnliche Aufwendungen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2116','2100','Zinsen und ähnliche Aufwendungen an verbundene Unternehmen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2118','2100','In Dauerschuldzinsen umqualifizierte Zinsen auf kurzfristige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2119','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2120','2100','Zinsaufwendungen für langfristige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2125','2100','Zinsaufwendungen für Gebäude die zum Betriebsvermögen gehören',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2126','2100','Zinsen zur Finanzierung des Anlagevermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2127','2100','Renten und dauernde Lasten aus Gründung / Erwerb §8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2128','2100','Zinsaufwendungen an Mitunternehmer für die Hingabe von Kapital § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2129','2100','Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2130','2100','Diskontaufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2139','2100','Diskontaufwendungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2140','2100','Zinsähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2149','2100','Zinsähnliche Aufwendungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA32','K2GVA3','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2150','K2GVA32','Aufwendungen aus Kursdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2166','K2GVA32','Aufwendungen Bewertung Finanzmittelfonds',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2170','K2GVA32','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2171','K2GVA32','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2175','K2GVA32','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2176','K2GVA33','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA4','K2GVA','Steueraufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA41','K2GVA4','Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2200','K2GVA41','Körperschaftsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2203','K2GVA41','Körperschaftsteuer für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2204','K2GVA41','Körperschaftsteuererstattungen für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2208','K2GVA41','Solidaritätszuschlag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2209','K2GVA41','Solidaritätszuschlag für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2210','K2GVA41','Solidaritätszuschlag für Vorjahre für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2212','K2GVA41','Kapitalertragsteuer 20%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2213','K2GVA41','Kapitalertragsteuer 25%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2214','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 20%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2215','K2GVA41','Zinsabschlagsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2216','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2218','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Zinsabschlagsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2219','K2GVA41','Ausländische Quellensteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2280','K2GVA41','Steuernachzahlungen Vorjahre für Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2282','K2GVA41','Steuererstattungen Vorjahre für Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2284','K2GVA41','Erträge aus der Auflösung von Rückstellungen für Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA42','K2GVA4','Sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2285','K2GVA41','Steuernachzahlungen Vorjahre für sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2287','K2GVA41','Steuererstattungen Vorjahre für sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2289','K2GVA41','Erträge aus der Auflösung von Rückstellungen für sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA5','K2GVA','Sonstige Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA51','K2GVA5','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2300','K2GVA51','Sonstige Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2307','2300','Sonstige Aufwendungen betriebsfremde und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2309','2300','Sonstige Aufwendungen unregelmässig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2310','2300','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2311','2300','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2312','2300','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2313','2300','Anlagenabgänge Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA52','K2GVA5','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2315','K2GVA52','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2316','K2GVA52','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2317','K2GVA52','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2318','K2GVA52','Anlagenabgänge Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2320','K2GVA51','Verluste aus dem Abgang von Gegenständen des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2323','K2GVA51','Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2325','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2326','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2327','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens nach §4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2328','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) nach §4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2340','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2341','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2342','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2345','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2346','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (§ 52 Abs. 16 EStG)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2348','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2349','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2350','K2GVA51','Grundstücksaufwendungen neutral',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA53','K2GVA5','Sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2375','K2GVA53','Grundsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2380','K2GVA51','Zuwendungen Spenden steuerlich nicht abziehbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2381','K2GVA51','Zuwendungen Spenden für wissenschaftliche und kulturelle Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2382','K2GVA51','Zuwendungen Spenden für mildtätige Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2383','K2GVA51','Zuwendungen Spenden für kirchliche religiöse und gemeinnützige Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2384','K2GVA51','Zuwendungen Spenden an politische Parteien',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2385','K2GVA51','Nicht abziehbare Hälfte der Aufsichtsratsvergütungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2386','K2GVA51','Abziehbare Aufsichtsratsvergütung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2387','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 1-3 AO',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2388','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 4 AO',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2389','K2GVA51','Zuwendungen Spenden an Stiftungen für kirchliche religiöse und gemeinnützige Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2390','K2GVA51','Zuwendungen Spenden an Stiftungen für wissenschaftliche mildtätige kulturelle Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2400','K2GVA51','Forderungsverluste (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2401','2400','Forderungsverluste 7% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2402','2400','Forderungsverluste aus steuerfreien EG-Lieferungen (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2403','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 7% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2404','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 16% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2405','2400','Forderungsverluste 16% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2406','2400','Forderungsverluste 19% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2407','2400','Forderungsverluste 15% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2408','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 19% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2409','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 15% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA54','K2GVA5','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2430','K2GVA54','Forderungsverluste unüblich hoch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2450','K2GVA51','Einstellung in die Pauschalwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2451','K2GVA51','Einstellung in die Einzelwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA55','K2GVA5','Aufwendungen aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2490','K2GVA55','Aufwendungen aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA56','K2GVA5','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2492','K2GVA56','Abgeführte Gewinne auf Grund einer Gewinngemeinschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2493','K2GVA56','Abgeführte Gewinnanteile an stille Gesellschafter § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2494','K2GVA56','Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA57','K2GVA5','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2495','K2GVA57','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA58','K2GVA5','Einstellung in Gewinnrücklagen in die gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2496','K2GVA58','Einstellung in die gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA59','K2GVA5','Einstellung in Gewinnrücklagen in satzungsmäßige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2497','K2GVA59','Einstellungen in satzungsmäßige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA5a','K2GVA5','Einstellung in Gewinnrücklagen in die Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2498','K2GVA5a','Einstellung in die Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA5b','K2GVA5','Einstellung in Gewinnrücklagen in andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2499','K2GVA5b','Einstellung in andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE1','K2GVE','Außerordentliche Erträge i. S. d. BiRiLiG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE11','K2GVE1','Außerordentliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2500','K2GVE11','Außerordentliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2501','K2GVE11','Außerordentliche Erträge finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2505','K2GVE11','Außerordentliche Erträge nicht finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE2','K2GVE','Betriebsfremde und periodenfremde Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE21','K2GVE2','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2510','K2GVE21','Betriebsfremde Erträge (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2520','K2GVE21','Periodenfremde Erträge (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE3','K2GVE','Zinsertäge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE31','K2GVE3','Erträge aus Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2600','K2GVE31','Erträge aus Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2615','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung 100% / 50% steuerfrei) (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2616','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2617','2600','Gewinne aus Anteilen an nicht steuerbefreiten inländischen Kapitalgesellschaften § 9 Nr. 2a GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2618','2600','Gewinnanteile aus Mitunternehmerschaften § 9 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2619','2600','Erträge aus Beteiligungen an verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE32','K2GVE3','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2620','K2GVA32','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2625','2620','laufende Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2626','2620','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2649','2620','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE33','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2650','K2GVA33','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2655','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2656','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2657','2650','Zinserträge § 233a AO',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2658','2650','Zinserträge § 233a AO Sonderfall Anlage A KSt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2659','2650','Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE34','K2GVE3','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2660','K2GVA34','Erträge aus Kursdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2661','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2662','K2GVA34','Realisierte Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2663','K2GVA34','Produkt Rechnung Preisdifferenz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2664','K2GVA34','Realisierte Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2665','K2GVA34','Erträge a. Währungsumstellung auf Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2666','K2GVA34','Erträge aus Bewertung Finanzmittelfonds',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2667','K2GVA34','Bank Währungsverlust (Konto)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2668','K2GVA34','Währungsdifferenz zum Kontenausgleich',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2669','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE35','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2670','K2GVA35','Diskonterträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2671','K2GVA35','Bank Bewertungsertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2672','K2GVA35','Rundungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2673','K2GVA35','Kassendifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2679','K2GVA35','Diskonterträge verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2680','K2GVA35','Zinsähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2689','K2GVA35','Zinsähnliche Erträge aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4','K2GVE','Sonstige Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE41','K2GVE4','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2700','K2GVA41','Sonstige Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2705','2700','Sonstige Erträge betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2707','2700','Sonstige Erträge betriebsfremd und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2709','2700','Sonstige Erträge unregelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2710','2700','Erträge aus Zuschreibungen des Sachanlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2711','2700','Erträge aus Zuschreibungen des immateriellen Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2712','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2713','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2714','2700','Erträge aus Zuschreibungen des anderen Anlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2715','2700','Erträge aus Zuschreibungen des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2716','2700','Erträge aus Zuschreibungen des Umlaufvermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2720','2700','Erträge aus dem Abgang von Gegenständen des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2723','2700','Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2725','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2726','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2730','2700','Erträge aus Herabsetzung der Pauschalwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2731','2700','Erträge aus Herabsetzung der Einzelwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2732','2700','Erträge aus abgeschriebenen Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2733','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2734','2700','Erträge aus der steuerlich niedrigeren Bewertung von Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2735','2700','Erträge aus der Auflösung von Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2736','2700','Erträge aus der steuerlich niedrigeren Bewertung von Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2737','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (aus der Währungsumstellung auf den Euro)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2738','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2739','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2740','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2741','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2742','2700','Versicherungsentschädigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2743','2700','Investitionszuschüsse (steuerpflichtig)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2744','2700','Investitionszulagen (steuerfrei)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE42','K2GVE4','Erträge aus Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2745','K2GVE42','Erträge aus Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2746','K2GVE41','Steuerfreie Erträge aus der Auflösung von Sonderposten mit Rücklageanteil',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2747','K2GVE41','Sonstige steuerfreie Betriebseinnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','2749','K2GVE41','Erstattungen Aufwendungsausgleichsgesetz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2750','K2GVE41','Grundstückserträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE43','K2GVE4','Erträge aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2790','K2GVE43','Erträge aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE44','K2GVE4','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2792','K2GVE44','Erhaltene Gewinne auf Grund einer Gewinngemeinschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2794','K2GVE44','Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE45','K2GVE4','Entnahmen aus der Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2795','K2GVE45','Entnahmen aus der Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE46','K2GVE4','Entnahmen aus Gewinnrücklagen aus der gesetzlichen Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2796','K2GVE46','Entnahmen aus der gesetzlichen Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE47','K2GVE4','Entnahmen aus Gewinnrücklagen aus satzungsmäßigen Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2797','K2GVE47','Entnahmen aus satzungsmäßigen Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE48','K2GVE4','Entnahmen aus Gewinnrücklagen aus der Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2798','K2GVE48','Entnahmen aus der Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE49','K2GVE4','Entnahmen aus Gewinnrücklagen aus anderen Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2799','K2GVE49','Entnahmen aus anderen Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4a','K2GVE4','Gewinnvortrag oder Verlustvortrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2860','K2GVE4a','Gewinnvortrag nach Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2868','K2GVE4a','Verlustvortrag nach Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4b','K2GVE4','Vortrag auf neue Rechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2869','K2GVE4b','Vortrag auf neue Rechnung (GuV)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4c','K2GVE4','Ausschüttung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2870','K2GVE4c','Vorabausschüttung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE5','K2GVE','Verrechnete kalkulatorische Kosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE51','K2GVE5','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2890','K2GVE51','Verrechneter kalkulatorischer Unternehmerlohn',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2891','K2GVE51','Verrechnete kalkulatorische Miete und Pacht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2892','K2GVE51','Verrechnete kalkulatorische Zinsen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2893','K2GVE51','Verrechnete kalkulatorische Abschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2894','K2GVE51','Verrechnete kalkulatorische Wagnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2895','K2GVE51','Verrechneter kalkulatorische Lohn für unentgeltliche Mitarbeiter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE52','K2GVE5','Sonstige betriebliche Erträge oder sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2990','K2GVE52','Aufwendungen/Erträge aus Umrechnungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA1','K3GVA','Materialaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA11','K3GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3000','K3GVA11','Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3090','K3GVA11','Energiestoffe (Fertigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA12','K3GVA1','Aufwendungen für bezogene Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3100','K3GVA12','Fremdleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA2','K3GVA','Umsätze für die als Leistungsemfänger die Steuer nach § 13b Abs. 2 UStG geschuldet wird',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA21','K3GVA2','Aufwendungen für bezogene Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','3106','K3GVA12','Fremdleistungen 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3110','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3115','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3120','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3121','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3122','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3125','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3126','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3127','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3130','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3135','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3140','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3141','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3142','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3145','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3146','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3147','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3150','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3151','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3152','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3153','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA22','K3GVA2','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3200','K3GVA22','Wareneingang',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3300','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3301','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3302','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3303','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3304','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3305','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3306','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3307','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3308','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3309','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3340','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3341','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3342','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3343','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3344','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3345','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3346','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3347','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3348','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3349','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3400','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3401','3200','Produkt Ausgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3402','3200','Produkt Vertriebsausgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3403','3200','Konto Kasse Aufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3404','3200','Einstandskosten Verrechnungskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3405','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3406','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3407','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3408','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3409','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3420','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3421','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3422','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3423','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3424','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3425','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3426','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3427','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3428','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3429','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3430','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3433','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3434','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3435','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3440','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3441','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3500','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3501','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3502','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3503','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3504','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3505','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3506','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3507','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3508','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3509','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3530','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3531','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3532','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3533','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3534','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3540','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3541','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3542','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3543','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3544','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3545','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3546','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3547','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3548','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3549','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3550','3200','steuerfreier innergemeinschaftlicher Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3551','3200','Wareneingang im Drittland steuerbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3559','3200','Steuerfreier Einfuhren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3558','3200','Wareneingang I.a. EG-Land steuerbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3560','3200','waren aus einem Umsatzsteuerlager § 13a UStG 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3565','3200','waren aus einem Umsatzsteuerlager § 13a UStG 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3566','3200','waren aus einem Umsatzsteuerlager § 13a UStG 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3600','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3601','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3602','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3603','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3604','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3605','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3606','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3607','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3608','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3609','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3610','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3611','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3612','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3613','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3614','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3615','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3616','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3617','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3618','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3619','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3650','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3651','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3652','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3653','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3654','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3655','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3656','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3657','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3658','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3659','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3660','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3661','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3662','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3663','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3664','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3665','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3666','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3667','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3668','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3669','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3700','3200','Nachlässe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3710','3200','Nachlässe 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3711','3200','Nachlässe 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3720','3200','Nachlässe 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3721','3200','Nachlässe 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3722','3200','Nachlässe 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3723','3200','Nachlässe 15% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3724','3200','Nachlässe aus innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3725','3200','Nachlässe aus innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3726','3200','Nachlässe aus innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3727','3200','Nachlässe aus innergemeinschaftlichem Erwerb 15% Vorsteuer und 15% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K3GVE1','K3GVE','Wareneingang',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K3GVE11','K3GVE1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3730','K3GVE11','Erhaltene Skonti',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3731','3730','Erhaltene Skonti 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3735','3730','Erhaltene Skonti 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3736','3730','Erhaltene Skonti 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3745','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3746','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3748','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3749','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3750','3769','Erhaltene Boni 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3751','3769','Erhaltene Boni 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3760','3769','Erhaltene Boni 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3761','3769','Erhaltene Boni 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3764','3769','Erhaltene Boni 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3765','3769','Erhaltene Boni 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3769','K3GVE11','Erhaltene Boni',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3770','K3GVE11','Erhaltene Rabatte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3780','3770','Erhaltene Rabatte 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3781','3770','Erhaltene Rabatte 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3790','3770','Erhaltene Rabatte 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3791','3770','Erhaltene Rabatte 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3794','3770','Erhaltene Rabatte 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3795','3770','Erhaltene Rabatte 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3800','3200','Bezugsnebenkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3830','3200','Leergut',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3850','3200','Zölle und Einfuhrabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV3','BV','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV31','BV3','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3960','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3961','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3962','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3963','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3964','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3965','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3966','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3967','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3968','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3969','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA1','K3BA','Bestand an Vorräte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA11','K3BA1','Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3970','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3971','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3972','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3973','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3974','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3975','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3976','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3977','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3978','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3979','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA12','K3BA1','Fertige Erzeugnisse und Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3980','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3981','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3982','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3983','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3984','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3985','K3BA12','Lager Bestandswert Korrektur',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3986','K3BA12','Lager Differenzkorrektur Gewinn / Verlust',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3987','K3BA12','Lager Differenzkorrektur Marktwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3988','K3BA12','Lager Bestand Zwischenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3989','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','VSK3','VSK','Verrechnete Stoffkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','VSK31','VSK3','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3990','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3991','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3992','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3993','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3994','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3995','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3996','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3997','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3998','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3999','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA1','K4GVA','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA11','K4GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4000','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4001','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4002','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4003','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4004','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4005','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4006','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4007','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4008','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4009','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4010','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4011','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4012','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4013','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4014','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4015','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4016','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4017','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4018','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4019','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4020','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4021','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4022','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4023','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4024','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4025','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4026','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4027','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4028','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4029','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4030','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4031','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4032','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4033','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4034','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4035','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4036','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4037','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4038','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4039','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4040','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4041','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4042','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4043','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4044','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4045','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4046','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4047','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4048','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4049','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4050','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4051','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4052','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4053','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4054','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4055','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4056','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4057','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4058','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4059','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4060','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4061','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4062','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4063','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4064','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4065','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4066','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4067','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4068','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4069','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4070','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4071','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4072','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4073','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4074','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4075','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4076','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4077','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4078','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4079','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4080','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4081','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4082','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4083','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4084','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4085','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4086','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4087','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4088','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4089','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4090','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4091','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4092','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4093','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4094','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4095','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4096','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4097','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4098','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4099','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA2','K4GVA','Personalaufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA21','K4GVA2','Löhne und Gehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4100','K4GVA21','Löhne und Gehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4110','K4GVA21','Löhne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4120','K4GVA21','Gehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4124','K4GVA21','Geschäftsführergehälter GmbH-Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4125','K4GVA21','Ehegattengehalt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4126','K4GVA21','Tantiemen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4127','K4GVA21','Geschäftsführergehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4128','K4GVA21','Vergütungen an angestellte Mitunternehmer §15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA22','K4GVA2','Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4130','K4GVA22','Gesetzliche Soziale Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4137','K4GVA22','Gesetzliche soziale Aufwendungen für Mitunternehmer §15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4138','K4GVA22','Beiträge zur Berufsgenossenschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA23','K4GVA2','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4139','K4GVA23','Ausgleichsabgabe i. S. d. Schwerbehindertengesetz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4140','K4GVA22','Freiwillige soziale Aufwendungen lohnsteuerfrei',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4145','K4GVA21','Freiwillige soziale Aufwendungen lohnsteuerpflichtig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4149','K4GVA21','Pauschale Steuer auf sonstige Bezüge (z.B. Fahrkostenzuschüsse)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4150','K4GVA21','Krankengeldzuschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4155','K4GVA21','Zuschüsse der Agenturen für Arbeit (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4160','K4GVA22','Versorgungskassen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4165','K4GVA22','Aufwendungen für Altersversorgung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4167','K4GVA22','Pauschale Steuer auf sonstige Bezüge (z.B. Direktversicherungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4168','K4GVA22','Aufwendungen für Altersversorgung für Mitunternehmer §15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4169','K4GVA22','Aufwendungen für Unterstützung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4170','K4GVA21','Vermögenswirksame Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4175','K4GVA21','Fahrtkostenerstattung Wohnung/Arbeitsstätte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4180','K4GVA21','Bedienungsgelder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4190','K4GVA21','Aushilfslöhne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4199','K4GVA21','Pauschale Steuer für Aushilfen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA3','K4GVA','Sonstige betriebliche Aufwendungen und Abschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA31','K4GVA3','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4200','K4GVA31','Raumkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4210','K4GVA31','Miete',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4218','K4GVA31','Gewerbesteuerlich zu berücksichtigende Miete §8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4219','K4GVA31','Vergütung Mitunternehmer für die mieteweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4220','K4GVA31','Pacht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4228','K4GVA31','Gewerbesteuerlich zu berücksichtigende Pacht §8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4229','K4GVA31','Vergütung an Mitunternehmer für die pachtweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4230','K4GVA31','Heizung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4240','K4GVA31','Gas Strom Wasser',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4250','K4GVA31','Reinigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4260','K4GVA31','Instandhaltung betrieblicher Räume',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4270','K4GVA31','Abgaben für betrieblich genutzten Grundbesitz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4280','K4GVA31','Sonstige Raumkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4288','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4289','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4290','K4GVA31','Grundstücksaufwendungen betrieblich',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4300','K4GVA31','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4301','K4GVA31','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4305','K4GVA31','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4306','K4GVA31','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA32','K4GVA3','Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4320','K4GVA32','Gewerbesteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA33','K4GVA3','Sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4340','K4GVA33','Sonstige Betriebssteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4350','K4GVA33','Verbrauchsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4355','K4GVA33','ökosteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4360','K4GVA31','Versicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4366','K4GVA31','Versicherungen für Gebäude',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4370','K4GVA31','Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4380','K4GVA31','Beiträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4390','K4GVA31','Sonstige Abgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4396','K4GVA31','Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4397','K4GVA31','Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4400','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4401','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4402','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4403','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4404','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4405','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4406','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4407','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4408','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4409','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4410','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4411','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4412','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4413','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4414','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4415','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4416','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4417','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4418','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4419','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4420','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4421','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4422','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4423','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4424','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4425','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4426','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4427','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4428','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4429','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4430','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4431','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4432','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4433','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4434','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4435','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4436','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4437','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4438','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4439','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4440','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4441','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4442','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4443','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4444','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4445','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4446','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4447','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4448','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4449','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4450','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4451','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4452','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4453','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4454','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4455','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4456','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4457','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4458','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4459','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4460','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4461','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4462','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4463','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4464','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4465','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4466','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4467','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4468','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4469','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4470','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4471','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4472','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4473','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4474','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4475','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4476','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4477','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4478','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4479','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4480','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4481','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4482','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4483','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4484','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4485','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4486','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4487','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4488','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4489','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4490','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4491','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4492','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4493','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4494','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4495','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4496','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4497','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4498','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4499','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4500','K4GVA31','Fahrzeugkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4510','K4GVA33','Kfz-steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4520','K4GVA31','Kfz-Versicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4530','K4GVA31','Laufende Kfz-Betriebskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4540','K4GVA31','Kfz-Reparaturen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4550','K4GVA31','Garagenmieten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4560','K4GVA31','Mautgebühren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4570','K4GVA31','Leasingfahrzeugkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4580','K4GVA31','Sonstige Kfz-Kosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4590','K4GVA31','Kfz-Kosten für Betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4595','K4GVA31','Fremdfahrzeugkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4600','K4GVA31','Werbekosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4630','K4GVA31','Geschenke abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4635','K4GVA31','Geschenke nicht abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4638','K4GVA31','Geschenke ausschließlich betrieblich genutzt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4640','K4GVA31','Repräsentationskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4650','K4GVA31','Bewirtungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4651','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4652','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4653','K4GVA31','Aufmerksamkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4654','K4GVA31','Nicht abzugsfähige Bewirtungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4655','K4GVA31','Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4660','K4GVA31','Reisekosten Arbeitnehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4662','K4GVA31','Reisekosten Arbeitnehmer (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4663','K4GVA31','Reisekosten Arbeitnehmer Fahrkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4664','K4GVA31','Reisekosten Arbeitnehmer Verpflegungsmehraufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4666','K4GVA31','Reisekosten Arbeitnehmer übernachtungsaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4668','K4GVA31','Kilometergelderstattung Arbeitnehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4670','K4GVA31','Reisekosten Unternehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4672','K4GVA31','Reisekosten Unternehmer (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4673','K4GVA31','Reisekosten Unternehmer Fahrkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4674','K4GVA31','Reisekosten Unternehmer Verpflegungsmehraufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4676','K4GVA31','Reisekosten Unternehmer übernachtungsaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4678','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4679','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4680','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4700','K4GVA31','Kosten der Warenabgabe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4710','K4GVA31','Verpackungsmaterial',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4730','K4GVA31','Ausgangsfrachten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4750','K4GVA31','Transportversicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4760','K4GVA31','Verkaufsprovisionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4780','K4GVA31','Fremdarbeiten (Vertrieb)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4790','K4GVA31','Aufwand für Gewährleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4800','K4GVA31','Reparaturen und Instandhaltungen von technischen Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4805','K4GVA31','Reparaturen und Instandhaltungen von anderen Anlagen und Betriebs- und Geschäftsaustattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4806','K4GVA31','Wartungskosten für Hard- und Software',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4809','K4GVA31','Sonstige Reparaturen und Instandhaltungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4810','K4GVA31','Mietleasing',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4814','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA34','K4GVA3','Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen sowie auf aktivierte Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4815','K4GVA34','Kaufleasing',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4820','K4GVA34','Abschreibung auf Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4821','K4GVA34','Abschreibung auf Aufwendungen für die Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4822','K4GVA34','Abschreibung auf immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4824','K4GVA34','Abschreibung auf den Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4826','K4GVA34','Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4830','K4GVA34','Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4831','K4GVA34','Abschreibungen auf Gebäude',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4832','K4GVA34','Abschreibungen auf Kfz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4833','K4GVA34','Abschreibungen auf Gebäudeanteil des häuslichen Arbeitszimmers',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4840','K4GVA34','Außerplanmäßige Abschreibungen auf Sachanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4841','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4842','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4843','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4850','K4GVA34','Abschreibungen auf Sachanlagen auf Grund steuerlich Sondervorschriften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4851','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (ohne Kfz)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4852','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (für Kfz)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4855','K4GVA34','Sofortabschreibung geringwertiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4860','K4GVA34','Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4862','K4GVA34','Abschreibung auf Sammelposten WG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4865','K4GVA34','Außerplanmäßige Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA35','K4GVA3','Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4870','K4GVA35','Abschreibungen auf Finanzanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4871','K4GVA35','Abschreibungen auf Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4872','K4GVA35','Abschreibungen auf Grund von Verlustanteilen an Mitunternehmerschaften § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4873','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4874','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4875','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4876','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4879','K4GVA35','Vorwegnahme künftiger Wertschwankungen bei Wertpapieren des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA36','K4GVA3','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4880','K4GVA36','Abschreibungen auf Umlaufvermögen ohne Wertpapiere (soweit unübliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4882','K4GVA36','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit unübliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4885','K4GVA31','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4886','K4GVA31','Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (soweit übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4887','K4GVA31','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4890','K4GVA36','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen (soweit unübliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4900','K4GVA31','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4905','K4GVA31','Sonstige Aufwendungen betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4909','K4GVA31','Fremdleistungen / Fremarbeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4910','K4GVA31','Porto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4920','K4GVA31','Telefon',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4925','K4GVA31','Telefax und Internetkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4930','K4GVA31','Bürobedarf',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4940','K4GVA31','Zeitschriften Bücher',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4945','K4GVA31','Fortbildungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4946','K4GVA31','Freiwillige Sozialleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4948','K4GVA31','Vergütungen an Mitunternehmer § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4949','K4GVA31','Haftungsvergütung an Mitunternehmer § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4950','K4GVA31','Rechts- und Beratungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4955','K4GVA31','Buchführungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4955.01','K4GVA31','Kosten Heidrich&Müller-Hansen PG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4957','K4GVA31','Abschluss- und Prüfungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4960','K4GVA31','Mieten für Einrichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4964','K4GVA31','Aufwendungen für die zeitlich befristetete Überlassung von Rechten (Lizenzen,Konzessionen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4965','K4GVA31','Mietleasing',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4966','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4968','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing für Einrichtungen § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4969','K4GVA31','Aufwendungen für Abraum- und Abfallbeseitigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4970','K4GVA31','Nebenkosten des Geldverkehrs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4975','K4GVA31','Aufwendungen aus Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4976','K4GVA31','Aufwendungen aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4980','K4GVA31','Betriebsbedarf',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4985','K4GVA31','Werkzeuge und Kleingeräte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA4','K4GVA','Kalkulatorische Kosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA41','K4GVA4','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4990','K4GVA41','Kalkulatorischer Unternehmerlohn',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4991','K4GVA41','Kalkulatorische Miete und Pacht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4992','K4GVA41','Kalkulatorische Zinsen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4993','K4GVA41','Kalkulatorische Abschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4994','K4GVA41','Kalkulatorische Wagnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4995','K4GVA41','Kalkulatorischer Lohn für unentgeltliche Mitarbeiter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA5','K4GVA','Kosten bei Anwendung des Umsatzkostenverfahren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA51','K4GVA5','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4996','K4GVA51','Herstellungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4997','K4GVA51','Verwaltungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4998','K4GVA51','Vertriebskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4999','K4GVA51','Gegenkonto 4996 - 4998',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA01','K7BA','Unfertige Erzeugnisse und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7000','K7BA01','Unfertige Erzeugnisse und Leistungen (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7050','7000','Unfertige Erzeugnisse (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7080','7000','Unfertige Leistungen (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA02','K7BA','In Ausführung befindliche Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7090','K7BA02','In Ausführung befindliche Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA03','K7BA','In Arbeit befindliche Aufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7095','K7BA03','In Arbeit befindliche Aufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA04','K7BA','Fertige Erzeugnisse und Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7100','K7BA04','Fertige Erzeugnisse und Waren (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7110','7100','Fertige Erzeugnisse (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7140','7100','Waren (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE1','K8GVE','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE11','K8GVE1','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8000','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8001','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8002','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8003','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8004','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8005','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8006','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8007','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8008','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8009','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8010','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8011','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8012','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8013','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8014','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8015','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8016','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8017','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8018','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8019','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8020','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8021','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8022','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8023','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8024','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8025','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8026','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8027','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8028','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8029','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8030','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8031','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8032','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8033','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8034','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8035','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8036','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8037','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8038','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8039','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8040','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8041','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8042','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8043','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8044','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8045','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8046','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8047','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8048','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8049','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8050','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8051','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8052','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8053','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8054','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8055','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8056','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8057','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8058','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8059','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8060','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8061','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8062','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8063','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8064','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8065','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8066','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8067','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8068','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8069','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8070','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8071','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8072','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8073','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8074','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8075','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8076','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8077','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8078','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8079','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8080','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8081','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8082','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8083','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8084','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8085','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8086','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8087','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8088','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8089','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8090','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8091','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8092','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8093','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8094','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8095','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8096','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8097','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8098','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8099','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8100','K8GVE11','steuerfreie Umsätze § 4 Nr. 8 ff. UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8105','K8GVE11','Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpackung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8110','K8GVE11','Sonstige steuerfreie Umsätze Inland',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8120','K8GVE11','steuerfreie Umsätze § 4 Nr. 1a UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8125','K8GVE11','steuerfreie innergemeinschaftliche Lieferung § 4 Nr. 1b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8130','K8GVE11','Lieferungen des ersten Abnehmers bei Innergemeinschaftlichen Dreiecksgeschäften § 25b abs. 2 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8135','K8GVE11','Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer Identifikationsnummer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8140','K8GVE11','Steuerfreie Umsätze Offshore usw.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8150','K8GVE11','Sonstige steuerfreie Umsätze (z.B. § 4 Nr. 2-7 UStG)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8160','K8GVE11','Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8190','K8GVE11','Erlöse die mit den Durchschnittssätzen des § 24 UStG versteuert werden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8195','K8GVE11','Erlöse als Kleinunternehmer i. S. d. § 19 Abs. 1 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8196','K8GVE11','Erlöse aus Geldspielautomaten 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8197','K8GVE11','Erlöse aus Geldspielautomaten 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8200','K8GVE11','Erlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8300','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8301','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8302','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8303','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8304','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8305','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8306','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8307','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8308','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8309','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8310','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8311','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8312','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8313','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8314','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8315','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8316','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8317','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8318','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8319','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8320','K8GVE11','Erlöse aus im anderen EG-Land steuerpflichtigen Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8330','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8337','K8GVE11','Erlöse aus Leistungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8338','K8GVE11','Erlöse aus im Drittland steuerbaren Leistungen im Inland nicht steuerbare Umsätze',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8339','K8GVE11','Erlöse aus im anderen EG-Land steuerbaren Lieferungen im Inland nicht steuerbare Umsätze',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8340','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8341','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8342','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8343','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8344','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8345','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8346','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8347','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8348','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8349','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8400','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8400.01','K8GVE11','Erlöse Projekte 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8401','K8GVE11','Vorausberechnete Einnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8402','K8GVE11','Sontige Einnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8403','K8GVE11','Konto Kasse Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8404','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8405','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8406','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8407','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8408','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8409','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8410','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8510','K8GVE11','Provisionsumsätze',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8514','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 8 ff. UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8515','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 5 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8516','K8GVE11','Provisionsumsätze 7 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8518','K8GVE11','Provisionsumsätze 16 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8519','K8GVE11','Provisionsumsätze 19 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8520','K8GVE11','Erlöse Abfallverwertung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8540','K8GVE11','Erlöse Leergut',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE12','K8GVE1','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8570','K8GVE12','Provision sonstige Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8574','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 8 ff UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8575','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 5 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8576','K8GVE12','Provision sonstige Erträge 7 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8578','K8GVE12','Provision sonstige Erträge 16 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8579','K8GVE12','Provision sonstige Erträge 19 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE2','K8GVE','Statistische Konten EüR',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE21','K8GVE2','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8580','K8GVE21','Statistisches Konto Erlöse zum Allgemeinen Umsatzsteuerersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8581','K8GVE21','Statistisches Konto Erlöse zum ermäßigten Umsatzsteuerersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8582','K8GVE21','Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8589','K8GVE21','Gegenkonto 8580-8582 bei Aufteilung der Erlöse nach Steuersätzen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE22','K8GVE2','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8590','K8GVE22','Verrechnete sonstige Sachbezüge (keine Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8591','K8GVE22','Sachbezüge 7% USt (Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8595','K8GVE22','Sachbezüge 19% USt (Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8596','K8GVE22','Sachbezüge 16% USt (Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8600','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8605','K8GVE22','Sonstige Erträge betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8609','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei § 4 Nr. 8 ff UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8610','K8GVE22','Verrechnete sonstige Sachbezüge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8611','K8GVE22','Verrechnete sonstige Sachbezüge 19% USt (z.B. Kfz-Gestellung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8612','K8GVE22','Verrechnete sonstige Sachbezüge 16% USt (z.B. Kfz-Gestellung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8614','K8GVE22','Verrechnete sonstige Sachbezüge ohne Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8625','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8626','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8627','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8628','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8629','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8630','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8631','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8632','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8633','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8634','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8640','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8641','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8642','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8643','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8644','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8648','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8649','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE23','K8GVE2','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8650','K8GVE23','Erlöse Zinsen und Diskontspesen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8660','K8GVE23','Erlöse Zinsen und Diskontspesen aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA1','K8GVA','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA11','K8GVA1','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8700','K8GVA11','Erlösschmälerungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8701','K8GVA11','Nicht abgerechnete Einnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen aus steuerfreien Umsätzen §4 Nr. 1a UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8710','K8GVA11','Erlösschmälerungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8720','K8GVA11','Erlösschmälerungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8721','K8GVA11','Erlösschmälerungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8723','K8GVA11','Erlösschmälerungen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8724','K8GVA11','Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8725','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 7 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8726','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 19 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8727','K8GVA11','Erlösschmälerungen aus im anderen EG-Land steuerpflichtigen Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8729','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8730','K8GVA11','Gewährte Skonti',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8731','K8GVA11','Gewährte Skonti 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8735','K8GVA11','Gewährte Skonti 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8736','K8GVA11','Gewährte Skonti 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8741','K8GVA11','Gewährte Skonti aus Lieferungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8743','K8GVA11','Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8745','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8746','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8748','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8749','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8750','K8GVA11','Gewährte Boni 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8751','K8GVA11','Gewährte Boni 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8760','K8GVA11','Gewährte Boni 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8761','K8GVA11','Gewährte Boni 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8764','K8GVA11','Gewährte Boni 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8765','K8GVA11','Gewährte Boni 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8769','K8GVA11','Gewährte Boni',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8770','K8GVA11','Gewährte Rabatte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8780','K8GVA11','Gewährte Rabatte 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8781','K8GVA11','Gewährte Rabatte 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8790','K8GVA11','Gewährte Rabatte 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8791','K8GVA11','Gewährte Rabatte 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8794','K8GVA11','Gewährte Rabatte 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8795','K8GVA11','Gewährte Rabatte 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA12','K8GVA1','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8800','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8801','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8802','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8803','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8804','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8805','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8806','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8807','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8808','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8809','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8817','K8GVA12','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8818','K8GVA12','Erlöse aus Verkäufen Finanzanlagen (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8819','K8GVA12','Erlöse aus Verkäufen Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8820','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8821','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8822','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8823','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8824','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8825','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8826','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8827','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1a UStG (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8828','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1b UStG (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8829','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8837','K8GVE22','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8838','K8GVE22','Erlöse aus Verkäufen Finanzanlagen (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8839','K8GVE22','Erlöse aus Verkäufen Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8850','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19% USt für § 4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8851','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8852','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8853','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8900','K8GVE21','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8905','K8GVE21','Entnahme von Gegenständen ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8906','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8910','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8911','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8912','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8913','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8914','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8915','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8916','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8917','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8918','K8GVE21','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8919','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8920','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8921','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Kfz-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8922','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Telefon-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8923','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8924','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8925','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8926','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8927','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8928','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8929','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8930','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8931','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8932','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8933','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8934','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Kfz_Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8935','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8936','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8937','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8938','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8939','K8GVE22','Unentgeltliche Zuwendung von Gegenständen ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8940','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8941','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8942','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8943','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8944','K8GVE21','Unentgeltliche Zuwendung von Waren 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8945','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8946','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8947','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8948','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Telefon-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8949','K8GVE21','Unentgeltliche Zuwendung von Waren ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8950','K8GVE21','Nicht steuerbare Umsätze (Innenumsätze)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8955','K8GVE21','Umsatzsteuervergütungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV81','BV','Erhöhung des Bestands an fertigen und unfertigen Erzeugnissen oder Verminderung des Bestands an fertigen oder unfertigen Erzeugnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8960','BV81','Bestandsveränderungen- unfertige Erzeugnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8970','BV81','Bestandsveränderungen- unfertige Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV82','BV','Erhöhung des Bestands in Ausführung befindlicher Bauaufträge oder Verminderung des Bestands in Ausführung befindlicher Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8975','BV82','Bestandsveränderungen - in Ausführung befindliche Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV83','BV','Erhöhung des Bestands in Arbeit befindlicher Bauaufträge oder Verminderung des Bestands in Arbeit befindlicher Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8977','BV83','Bestandsveränderungen - in Arbeit befindliche Aufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8980','BV81','Bestandsveränderungen - fertige Erzeugnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8990','AEL','Andere aktivierte Eigenleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9',NULL,'Vortrags Kapital- und statistische Konten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK91','KK9','Vortragskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9000','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9001','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9002','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9003','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9004','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9005','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9006','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9007','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9008','KK91','Saldenvorträge Debitoren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9009','KK91','Saldenvorträge Kreditoren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9060','KK91','Offene Posten aus 1990',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9069','KK91','Offene Posten aus 1999',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9070','KK91','Offene Posten aus 2000',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9071','KK91','Offene Posten aus 2001',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9072','KK91','Offene Posten aus 2002',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9073','KK91','Offene Posten aus 2003',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9074','KK91','Offene Posten aus 2004',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9075','KK91','Offene Posten aus 2005',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9076','KK91','Offene Posten aus 2006',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9077','KK91','Offene Posten aus 2007',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9090','KK91','Summenvortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9091','9090','Offene Posten aus 1991',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9092','9090','Offene Posten aus 1992',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9093','9090','Offene Posten aus 1993',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9094','9090','Offene Posten aus 1994',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9095','9090','Offene Posten aus 1995',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9096','9090','Offene Posten aus 1996',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9097','9090','Offene Posten aus 1997',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9098','9090','Offene Posten aus 1998',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK92','KK9','Statistische Konten für Betriebswirtschaftliche Auswertung (BWA)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9101','KK92','Verkaufstage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9102','KK92','Anzahl der Barkunden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9103','KK92','Beschäftigte Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9104','KK92','Unbezahlte Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9105','KK92','Verkaufskräfte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9106','KK92','Geschäftsraum qm',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9107','KK92','Verkaufsraum qm',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9116','KK92','Anzahl Rechnungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9117','KK92','Anzahl Kreditkunden monatlich',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9118','KK92','Anzahl Kreditkunden aufgelaufen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9120','KK92','Erweiterungsinvestitionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9135','KK92','Auftragseingang im Geschäftsjahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9140','KK92','Auftragsbestand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9190','KK92','Gegenkonto für statistischen Mengeneinheiten Konten 9101 - 9107 und Konten 9116 - 9118',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9199','KK92','Gegenkonto zu Konten 9120 9135 - 9140',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK93','KK9','Statistische Konten für den Kennziffernteil der Bilanz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9200','KK93','Beschäftigte Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9209','KK93','Gegenkonto zu 9200',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9210','KK93','Produktive Löhne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9219','KK93','Gegenkonto zu 9210',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK94','KK9','Statistische Konten zur informativen Angaben des gezeichneten Kapitals in anderer Währung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK941','KK94','Gezeichnetes Kapital in DM',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9220','KK941','Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK942','KK94','Gezeichnetes Kapital in Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9221','KK942','Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9229','KK94','Gegenkonto zu Konten 9022 - 9221',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK95','KK9','Passive Rechnungsabgrenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9230','KK95','Baukostenzuschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9232','KK95','Investitionszulagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9234','KK95','Investitionszuschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9239','KK95','Gegenkonto zu Konten 9230 - 9238',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9240','KK95','Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9241','KK95','Investitionsverbindlichkeiten aus Sachanlagenverkäufen bei Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9242','KK95','Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9243','KK95','Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9244','KK95','Gegenkonto zu Konten 9240 - 9243',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9245','KK95','Forderungen aus Sachanlagenverkäufen bei sonstigen Vermögensgegenständen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9246','KK95','Forderungen aus Verkäufen immaterieller Vermögensgegenständen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9247','KK95','Forderungen aus Verkäufe von Finanzanlagen bei sonstigen Vermögensgegenständen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9249','KK95','Gegenkonto zu Konten 9245 - 9247',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK96','KK9','Eigenkapitalersetzende Gesellschafterdarlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9250','KK96','Eigenkapitalersetzende Gesellschafterdarlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9255','KK96','Ungesicherte Gesellschafterdarlehen mit Restlaufzeit größer 5 Jahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9259','KK96','Gegenkonto zu 9250 und 9255',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK97','KK9','Aufgliederung der Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9260','KK97','Kurzfristige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9262','KK97','Mittelfristige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9264','KK97','Langfristige Rückstellungen außer Pensionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9269','KK97','Gegenkonto zu Konten 9260 - 9268',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK98','KK9','Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9270','KK98','Gegenkonto zu 9271 bis 9278 (soll-Buchung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9271','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9272','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechseln gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9273','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9274','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9275','KK98','Verbindlichkeiten aus Gewährleistungsverträgen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9276','KK98','Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9277','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9278','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9279','KK98','Verpflichtungen aus Trendhandvermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK99','KK9','Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9280','KK99','Gegenkonto zu Konten 9281 - 9284',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9281','KK99','Verpflichtungen aus Miet- und Leasingverträgen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9282','KK99','Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9283','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9284','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9a','KK9','Statistische Konten für § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9287','KK9a','Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9288','KK9a','Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9289','KK9a','Gegenkonto zu 9287 und 9288',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9290','KK9a','Statistisches Konto steuerfreie Auslagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9291','KK9a','Gegenkonto zu 9290',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9292','KK9a','Statistisches Konto Fremdgeld',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9293','KK9a','Gegenkonto zu 9292',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9a1','KK9a','Einlagen stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9295','KK9a1','Einlagen stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9a2','KK9a','Steuerrechtlicher Ausgleichsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9297','KK9a2','Steuerrechtlicher Ausgleichsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9b','KK9','Privat Teilhafter (für Verrechnung Gesellschafterdarlehen mit Eigenkapitalcharakter - Konto 9840 - 9849)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9400','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9401','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9402','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9403','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9404','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9405','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9406','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9407','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9408','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9409','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9410','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9411','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9412','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9413','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9414','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9415','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9416','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9417','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9418','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9419','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9420','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9421','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9422','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9423','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9424','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9425','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9426','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9427','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9428','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9429','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9430','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9431','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9432','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9433','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9434','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9435','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9436','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9437','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9438','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9439','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9440','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9441','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9442','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9443','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9444','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9445','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9446','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9447','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9448','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9449','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9450','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9451','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9452','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9453','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9454','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9455','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9456','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9457','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9458','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9459','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9460','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9461','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9462','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9463','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9464','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9465','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9466','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9467','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9468','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9469','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9470','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9471','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9472','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9473','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9474','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9475','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9476','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9477','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9478','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9479','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9480','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9481','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9482','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9483','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9484','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9485','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9486','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9487','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9488','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9489','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9490','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9491','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9492','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9493','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9494','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9495','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9496','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9497','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9498','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9499','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9c','KK9','Statistische Konten für Kapitalkontenentwicklung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9500','KK9c','Anteil für Konto 0900 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9501','KK9c','Anteil für Konto 0901 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9502','KK9c','Anteil für Konto 0902 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9503','KK9c','Anteil für Konto 0903 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9504','KK9c','Anteil für Konto 0904 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9505','KK9c','Anteil für Konto 0905 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9506','KK9c','Anteil für Konto 0906 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9507','KK9c','Anteil für Konto 0907 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9508','KK9c','Anteil für Konto 0908 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9509','KK9c','Anteil für Konto 0909 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9510','KK9c','Anteil für Konto 0910 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9511','KK9c','Anteil für Konto 0911 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9512','KK9c','Anteil für Konto 0912 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9513','KK9c','Anteil für Konto 0913 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9514','KK9c','Anteil für Konto 0914 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9515','KK9c','Anteil für Konto 0915 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9516','KK9c','Anteil für Konto 0916 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9517','KK9c','Anteil für Konto 0917 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9518','KK9c','Anteil für Konto 0918 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9519','KK9c','Anteil für Konto 0919 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9520','KK9c','Anteil für Konto 0920 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9521','KK9c','Anteil für Konto 0921 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9522','KK9c','Anteil für Konto 0922 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9523','KK9c','Anteil für Konto 0923 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9524','KK9c','Anteil für Konto 0924 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9525','KK9c','Anteil für Konto 0925 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9526','KK9c','Anteil für Konto 0926 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9527','KK9c','Anteil für Konto 0927 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9528','KK9c','Anteil für Konto 0928 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9529','KK9c','Anteil für Konto 0929 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9530','KK9c','Anteil für Konto 0830 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9531','KK9c','Anteil für Konto 0831 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9532','KK9c','Anteil für Konto 0832 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9533','KK9c','Anteil für Konto 0833 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9534','KK9c','Anteil für Konto 0834 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9535','KK9c','Anteil für Konto 0835 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9536','KK9c','Anteil für Konto 0836 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9537','KK9c','Anteil für Konto 0837 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9538','KK9c','Anteil für Konto 0838 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9539','KK9c','Anteil für Konto 0839 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9540','KK9c','Anteil für Konto 0810 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9541','KK9c','Anteil für Konto 0811 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9542','KK9c','Anteil für Konto 0812 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9543','KK9c','Anteil für Konto 0813 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9544','KK9c','Anteil für Konto 0814 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9545','KK9c','Anteil für Konto 0815 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9546','KK9c','Anteil für Konto 0816 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9547','KK9c','Anteil für Konto 0817 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9548','KK9c','Anteil für Konto 0818 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9549','KK9c','Anteil für Konto 0819 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9550','KK9c','Anteil für Konto 9810 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9551','KK9c','Anteil für Konto 9811 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9552','KK9c','Anteil für Konto 9812 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9553','KK9c','Anteil für Konto 9813 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9554','KK9c','Anteil für Konto 9814 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9555','KK9c','Anteil für Konto 9815 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9556','KK9c','Anteil für Konto 9816 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9557','KK9c','Anteil für Konto 9817 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9558','KK9c','Anteil für Konto 9818 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9559','KK9c','Anteil für Konto 9819 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9560','KK9c','Anteil für Konto 9820 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9561','KK9c','Anteil für Konto 9821 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9562','KK9c','Anteil für Konto 9822 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9563','KK9c','Anteil für Konto 9823 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9564','KK9c','Anteil für Konto 9824 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9565','KK9c','Anteil für Konto 9825 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9566','KK9c','Anteil für Konto 9826 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9567','KK9c','Anteil für Konto 9827 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9568','KK9c','Anteil für Konto 9828 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9569','KK9c','Anteil für Konto 9829 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9570','KK9c','Anteil für Konto 0870 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9571','KK9c','Anteil für Konto 0871 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9572','KK9c','Anteil für Konto 0872 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9573','KK9c','Anteil für Konto 0873 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9574','KK9c','Anteil für Konto 0874 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9575','KK9c','Anteil für Konto 0875 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9576','KK9c','Anteil für Konto 0876 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9577','KK9c','Anteil für Konto 0877 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9578','KK9c','Anteil für Konto 0878 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9579','KK9c','Anteil für Konto 0879 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9580','KK9c','Anteil für Konto 0880 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9581','KK9c','Anteil für Konto 0881 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9582','KK9c','Anteil für Konto 0882 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9583','KK9c','Anteil für Konto 0883 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9584','KK9c','Anteil für Konto 0884 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9585','KK9c','Anteil für Konto 0885 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9586','KK9c','Anteil für Konto 0886 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9587','KK9c','Anteil für Konto 0887 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9588','KK9c','Anteil für Konto 0888 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9589','KK9c','Anteil für Konto 0889 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9590','KK9c','Anteil für Konto 0890 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9591','KK9c','Anteil für Konto 0891 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9592','KK9c','Anteil für Konto 0892 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9593','KK9c','Anteil für Konto 0893 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9594','KK9c','Anteil für Konto 0894 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9595','KK9c','Anteil für Konto 0895 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9596','KK9c','Anteil für Konto 0896 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9597','KK9c','Anteil für Konto 0897 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9598','KK9c','Anteil für Konto 0898 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9599','KK9c','Anteil für Konto 0899 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9600','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9601','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9602','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9603','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9604','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9605','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9606','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9607','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9608','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9609','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9610','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9611','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9612','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9613','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9614','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9615','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9616','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9617','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9618','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9619','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9620','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9621','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9622','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9623','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9624','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9625','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9626','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9627','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9628','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9629','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9630','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9631','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9632','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9633','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9634','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9635','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9636','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9637','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9638','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9639','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9640','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9641','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9642','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9643','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9644','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9645','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9646','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9647','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9648','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9649','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9650','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9651','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9652','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9653','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9654','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9655','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9656','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9657','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9658','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9659','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9690','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9691','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9692','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9693','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9694','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9695','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9696','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9697','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9698','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9699','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9700','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9701','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9702','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9703','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9704','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9705','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9706','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9707','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9708','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9709','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9710','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9711','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9712','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9713','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9714','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9715','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9716','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9717','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9718','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9719','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9720','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9721','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9722','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9723','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9724','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9725','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9726','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9727','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9728','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9729','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9730','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9731','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9732','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9733','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9734','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9735','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9736','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9737','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9738','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9739','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9740','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9741','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9742','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9743','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9744','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9745','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9746','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9747','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9748','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9749','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9750','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9751','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9752','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9753','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9754','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9755','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9756','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9757','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9758','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9759','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9760','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9761','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9762','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9763','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9764','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9765','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9766','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9767','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9768','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9769','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9770','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9771','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9772','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9773','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9774','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9775','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9776','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9777','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9778','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9779','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9780','KK9c','Anteil für Konto 9840 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9781','KK9c','Anteil für Konto 9841 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9782','KK9c','Anteil für Konto 9842 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9783','KK9c','Anteil für Konto 9843 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9784','KK9c','Anteil für Konto 9844 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9785','KK9c','Anteil für Konto 9845 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9786','KK9c','Anteil für Konto 9846 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9787','KK9c','Anteil für Konto 9847 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9788','KK9c','Anteil für Konto 9848 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9789','KK9c','Anteil für Konto 9849 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9790','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9791','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9792','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9793','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9794','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9795','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9796','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9797','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9798','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9799','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9800','KK9c','Lösch- und Korrekturschlüssel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9801','KK9c','Lösch- und Korrekturschlüssel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9d','KK9','Kapital Personenhandelsgesellschaft Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9810','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9811','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9812','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9813','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9814','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9815','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9816','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9817','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9818','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9819','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9820','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9821','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9822','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9823','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9824','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9825','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9826','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9827','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9828','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9829','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9830','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9831','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9832','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9833','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9834','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9835','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9836','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9837','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9838','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9839','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9e','KK9','Kapital Personenhandelsgesellschaft Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9840','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9841','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9842','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9843','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9844','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9845','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9846','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9847','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9848','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9849','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9850','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9851','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9852','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9853','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9854','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9855','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9856','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9857','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9858','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9859','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9f','KK9','Einzahlungsverpflichtungen im Bereich der Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9860','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9861','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9862','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9863','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9864','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9865','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9866','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9867','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9868','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9869','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9870','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9871','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9872','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9873','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9874','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9875','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9876','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9877','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9878','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9879','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9g','KK9','Ausgleichsposten für aktivierte eigene Anteile und Bilanzierungshilfen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9880','KK9g','Ausgleichsposten für aktivierte eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9882','KK9g','Ausgleichsposten für aktivierte Bilanzierungshilfen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9h','KK9','Nicht durch Vermögenseinlagen gedeckte Entnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9883','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9884','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9i','KK9','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9885','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9886','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9j','KK9','Steueraufwand der Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9887','KK9j','Steueraufwand der Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9889','KK9j','Gegenkonto zu 9887',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9k','KK9','Statistische Konten für Gewinnzuschlag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9890','KK9k','Statistische Konto für den Gewinnzuschlag nach §§6b 6c und 6g EStG (Haben-Buchung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9891','KK9k','Statistische Konto für den Gewinnzuschlag - Gegenkonto zu 9890',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9l','KK9','Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9893','KK9l','Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9894','KK9l','Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9895','KK9l','Gegenkonto 9893 - 9894 für die Aufteilung der Umsatzsteuer (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9896','KK9l','Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9897','KK9l','Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9899','KK9l','Gegenkonto zu 9899 - 9897 für die Aufteilung der Vorsteuer (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9m','KK9','Statistische Konten zu § 4 (4a) EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9910','KK9m','Gegenkonto zur Minderung der Entnahmen § 4 (4a) EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9911','KK9m','Minderung der Entnahmen § 4 (4a) EStG (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9912','KK9m','Erhöhung der Entnahmen § 4 (4a) EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9913','KK9m','Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9n','KK9','Statistische Konten für Kinderbetreuungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9918','KK9n','Kinderbetreuungskosten (wie Betriebsausgaben steuerlich anzusetzender Betrag)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9919','KK9n','Gegenkonto zu 9918 (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9o','KK9','Ausstehende Einlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9920','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9921','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9922','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9923','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9924','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9925','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9926','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9927','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9928','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9929','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9930','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9931','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9932','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9933','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9934','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9935','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9936','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9937','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9938','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9939','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9940','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9941','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9942','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9943','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9944','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9945','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9946','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9947','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9948','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9949','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9950','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9951','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9952','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9953','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9954','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9955','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9956','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9957','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9958','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9959','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Memo','9900',NULL,'SO Commitment',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Memo','9910',NULL,'PO Commitment',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Liability','9901',NULL,'Steuer Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Asset','6000',NULL,'Work In Process',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Asset','6001',NULL,'Floor Stock',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Expense','6002',NULL,'Cost Of Production',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Expense','6003',NULL,'Scrap',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','51130',NULL,'Outside Processing (Subcontract)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58400',NULL,'Using Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58500',NULL,'Method Change Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58600',NULL,'Rate Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58700',NULL,'Mix Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83100',NULL,'Labor (Absorbed)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83200',NULL,'Burden (Absorbed)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83300',NULL,'Overhead (Applied)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83400',NULL,'Average Cost Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1000, 'SKR03','0','XXXXX','RAP',NULL,'Abgenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1001, 'SKR03','0','XXXXX','BV',NULL,'Bestandsveränderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1002, 'SKR03','0','XXXXX','AEL',NULL,'Andere aktivierte Eigenleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1003, 'SKR03','0','XXXXX','VSK',NULL,'Verrechnete Stoffkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1004, 'SKR03','0','Asset','BA',NULL,'Bilanz - Aktiva',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1005, 'SKR03','0','Liability','BP',NULL,'Bilanz - Passiva',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1006, 'SKR03','0','Expense','GVA',NULL,'Gewinn u. Verlust - Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1007, 'SKR03','0','Revenue','GVE',NULL,'Gewinn u. Verlust - Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1008, 'SKR03','0','Asset','K0BA','BA','Anlage- und Kapitalkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1009, 'SKR03','0','Asset','K1BA','BA','Finanz- und Privatkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1010, 'SKR03','0','Asset','K3BA','BA','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1011, 'SKR03','0','Asset','K7BA','BA','Bestände an Erzeugnissen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1012, 'SKR03','0','Liability','K0BP','BP','Anlage- und Kapitalkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1013, 'SKR03','0','Liability','K1BP','BP','Finanz- und Privatkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1014, 'SKR03','0','Expense','K2GVA','GVA','Abgrenzungskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1015, 'SKR03','0','Expense','K3GVA','GVA','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1016, 'SKR03','0','Expense','K4GVA','GVA','Betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1017, 'SKR03','0','Expense','K8GVA','GVA','Erlöskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1018, 'SKR03','0','Revenue','K2GVE','GVE','Abgrenzungskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1019, 'SKR03','0','Revenue','K3GVE','GVE','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1020, 'SKR03','0','Revenue','K8GVE','GVE','Erlöskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1021, 'SKR03','0','Asset','K0BA01','K0BA','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1022, 'SKR03','0','Asset','1','K0BA01','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1023, 'SKR03','0','Asset','K0BA02','K0BA','Aufwendungen für die Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1024, 'SKR03','0','Asset','2','K0BA02','Aufwendungen für die Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1025, 'SKR03','0','Asset','K0BA1','K0BA','Immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1026, 'SKR03','0','Asset','K0BA11','K0BA1','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1027, 'SKR03','0','Asset','10','K0BA11','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1028, 'SKR03','0','Asset','15','0010','Konzessionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1029, 'SKR03','0','Asset','20','0010','Gewerbliche Schutzrechte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1030, 'SKR03','0','Asset','25','0010','ähnliche Rechte und Werte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1031, 'SKR03','0','Asset','27','0010','EDV-Software',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1032, 'SKR03','0','Asset','30','0010','Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1033, 'SKR03','0','Asset','K0BA12','K0BA1','Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1034, 'SKR03','0','Asset','35','K0BA12','Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1035, 'SKR03','0','Asset','K0BA13','K0BA1','Geleistete Anzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1036, 'SKR03','0','Asset','38','K0BA13','Anzahlungen auf Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1037, 'SKR03','0','Asset','39','K0BA13','Anzahlungen auf immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1038, 'SKR03','0','Asset','K0BA14','K0BA1','Verschmelzungsmehrwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1039, 'SKR03','0','Asset','40','K0BA14','Verschmelzungsmehrwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1040, 'SKR03','0','Asset','K0BA2','K0BA','Sachanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1041, 'SKR03','0','Asset','K0BA21','K0BA2','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1042, 'SKR03','0','Asset','50','K0BA21','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1043, 'SKR03','0','Asset','59','0050','Grundstücksanteil des häuslichen Arbeitszimmers.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1044, 'SKR03','0','Asset','60','K0BA21','Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1045, 'SKR03','0','Asset','65','0060','Unbebaute Grundstücke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1046, 'SKR03','0','Asset','70','0060','Grundstücksgleiche Rechte - (erbbaurecht Daürwohnrecht)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1047, 'SKR03','0','Asset','75','0060','Grundstücke mit Substanzverzehr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1048, 'SKR03','0','Asset','K0BA22','K0BA2','Geleistete Anzahlungen und Anlagen im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1049, 'SKR03','0','Asset','79','K0BA22','Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1050, 'SKR03','0','Asset','80','K0BA21','Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1051, 'SKR03','0','Asset','85','0080','Grundstückswerte eigener bebauter Grundstücke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1052, 'SKR03','0','Asset','90','0080','Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1053, 'SKR03','0','Asset','100','0080','Fabrikbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1054, 'SKR03','0','Asset','110','0080','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1055, 'SKR03','0','Asset','111','0080','Außenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1056, 'SKR03','0','Asset','112','0080','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1057, 'SKR03','0','Asset','113','0080','Einrichtung Fabrik- und Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1058, 'SKR03','0','Asset','115','0080','Andere Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1059, 'SKR03','0','Asset','120','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1060, 'SKR03','0','Asset','129','K0BA22','Anzahlungen auf Geshäfts- Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1061, 'SKR03','0','Asset','140','K0BA21','Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1062, 'SKR03','0','Asset','145','K0BA21','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1063, 'SKR03','0','Asset','146','K0BA21','Aussenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1064, 'SKR03','0','Asset','147','K0BA21','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1065, 'SKR03','0','Asset','148','K0BA21','Einrichtungen für Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1066, 'SKR03','0','Asset','149','K0BA21','Gebäudeteil des häuslichen Arbeitszimmers',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1067, 'SKR03','0','Asset','150','K0BA22','Wohnbauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1068, 'SKR03','0','Asset','159','K0BA22','Anzahlgen auf Wohnbauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1069, 'SKR03','0','Asset','160','K0BA21','Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1070, 'SKR03','0','Asset','165','0160','Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1071, 'SKR03','0','Asset','170','0160','Fabrikbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1072, 'SKR03','0','Asset','175','0160','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1073, 'SKR03','0','Asset','176','0160','Aussenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1074, 'SKR03','0','Asset','177','0160','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1075, 'SKR03','0','Asset','178','0160','Einrichtung für Fabrik- und Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1076, 'SKR03','0','Asset','179','K0BA21','Andere Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1077, 'SKR03','0','Asset','180','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1078, 'SKR03','0','Asset','189','K0BA22','Anzahlungen auf Geschäfts- Fabrik- und andere Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1079, 'SKR03','0','Asset','190','K0BA21','Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1080, 'SKR03','0','Asset','191','K0BA21','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1081, 'SKR03','0','Asset','192','K0BA21','Aussenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1082, 'SKR03','0','Asset','193','K0BA21','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1083, 'SKR03','0','Asset','194','K0BA21','Einrichtungen für Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1084, 'SKR03','0','Asset','195','K0BA22','Wohnbauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1085, 'SKR03','0','Asset','199','K0BA22','Anzahlungen a. Wohnbauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1086, 'SKR03','0','Asset','K0BA23','K0BA2','Technische Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1087, 'SKR03','0','Asset','200','K0BA23','Technische Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1088, 'SKR03','0','Asset','210','0200','Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1089, 'SKR03','0','Asset','220','0200','Maschinengebundene Werkzeuge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1090, 'SKR03','0','Asset','240','0200','Maschinelle Anlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1091, 'SKR03','0','Asset','260','0200','Transportanlagen und ähnliches',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1092, 'SKR03','0','Asset','280','0200','Betriebsvorrichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1093, 'SKR03','0','Asset','290','K0BA22','Technische Anlagen und Maschinen im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1094, 'SKR03','0','Asset','299','K0BA22','Anzahlungen auf technische Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1095, 'SKR03','0','Asset','K0BA24','K0BA2','Andere Anlagen Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1096, 'SKR03','0','Asset','300','K0BA24','Andere Anlagen Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1097, 'SKR03','0','Asset','310','0300','Andere Anlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1098, 'SKR03','0','Asset','320','0300','PKW',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1099, 'SKR03','0','Asset','350','0300','LKW',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1100, 'SKR03','0','Asset','380','0300','Sonstige Transportmittel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1101, 'SKR03','0','Asset','400','0300','Betriebsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1102, 'SKR03','0','Asset','410','0300','Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1103, 'SKR03','0','Asset','420','0300','Büroeinrichtung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1104, 'SKR03','0','Asset','430','0300','Ladeneinrichtung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1105, 'SKR03','0','Asset','440','0300','Werkzeuge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1106, 'SKR03','0','Asset','450','0300','Einbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1107, 'SKR03','0','Asset','460','0300','Gerüst- und Schalungsmaterial',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1108, 'SKR03','0','Asset','480','0300','Geringwertige Wirtschaftsgüter bis 410 Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1109, 'SKR03','0','Asset','490','0300','Sonstige Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1110, 'SKR03','0','Asset','498','K0BA22','Andere Anlagen Betriebs- und Geschäftsausstattung im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1111, 'SKR03','0','Asset','499','K0BA22','Anzahlungen auf andere Anlagen Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1112, 'SKR03','0','Asset','K0BA3','K0BA','Finanzanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1113, 'SKR03','0','Asset','K0BA31','K0BA3','Anteile an verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1114, 'SKR03','0','Asset','500','K0BA31','Anteile an verbundenen Unternehmen (Anlagevermögen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1115, 'SKR03','0','Asset','504','K0BA31','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1116, 'SKR03','0','Asset','K0BA32','K0BA3','Ausleihungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1117, 'SKR03','0','Asset','505','K0BA32','Ausleihungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1118, 'SKR03','0','Asset','K0BA33','K0BA3','Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1119, 'SKR03','0','Asset','510','K0BA33','Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1120, 'SKR03','0','Asset','513','0510','Typisch stille Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1121, 'SKR03','0','Asset','516','0510','Atypisch stille Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1122, 'SKR03','0','Asset','517','0510','Andere Beteiligungen an Kapitalgesellschaften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1123, 'SKR03','0','Asset','518','0510','Andere Beteiligungen an Personengesellschaften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1124, 'SKR03','0','Asset','519','0510','Beteiligung einer GmbH&Co.KG an einer Komplementär GmbH',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1125, 'SKR03','0','Asset','K0BA34','K0BA3','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1126, 'SKR03','0','Asset','520','K0BA34','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1127, 'SKR03','0','Asset','K0BA35','K0BA3','Wertpapiere des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1128, 'SKR03','0','Asset','525','K0BA35','Wertpapiere des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1129, 'SKR03','0','Asset','530','0525','Wertpapiere mit Gewinnbeteiligungsansprüchen die dem Halbeinkünfteverfahren unterliegen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1130, 'SKR03','0','Asset','535','0525','Festverzinsliche Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1131, 'SKR03','0','Asset','K0BA36','K0BA3','Sonstige Ausleihungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1132, 'SKR03','0','Asset','540','K0BA36','Sonstige Ausleihungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1133, 'SKR03','0','Asset','550','0540','Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1134, 'SKR03','0','Asset','K0BA37','K0BA3','Genossenschaftsanteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1135, 'SKR03','0','Asset','570','K0BA37','Genossenschaftsanteile zum langfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1136, 'SKR03','0','Asset','580','K0BA36','Ausleihungen an Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1137, 'SKR03','0','Asset','590','K0BA36','Ausleihungen an nahe stehende Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1138, 'SKR03','0','Asset','K0BA38','K0BA3','Rückdeckungsansprüche aus Lebensversicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1139, 'SKR03','0','Asset','595','K0BA38','Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1140, 'SKR03','0','Liability','K0BP1','K0BP','Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1141, 'SKR03','0','Liability','K0BP11','K0BP1','Anleihen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1142, 'SKR03','0','Liability','600','K0BP11','Anleihen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1143, 'SKR03','0','Liability','601','0600','Anleihen nicht konvertibel (bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1144, 'SKR03','0','Liability','605','0600','Anleihen nicht konvertibel (1-5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1145, 'SKR03','0','Liability','610','0600','Anleihen nicht konvertibel (größer 5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1146, 'SKR03','0','Liability','615','0600','Anleihen konvertibel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1147, 'SKR03','0','Liability','616','0600','Anleihen konvertibel(bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1148, 'SKR03','0','Liability','620','0600','Anleihen konvertibel(1-5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1149, 'SKR03','0','Liability','625','0600','Anleihen konvertibel(größer 5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1150, 'SKR03','0','Liability','K0BP12','K0BP1','Verbindlichkeiten gegenüber Kreditinstituten oder Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1151, 'SKR03','0','Liability','630','K0BP12','Verbindlichkeiten gegenüber Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1152, 'SKR03','0','Liability','631','0630','Verbindlichkeiten gegenüber Kreditinstitut ( bis 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1153, 'SKR03','0','Liability','640','0630','Verbindlichkeiten gegenüber Kreditinstitut (1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1154, 'SKR03','0','Liability','650','0630','Verbindlichkeiten gegenüber Kreditinstitut (größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1155, 'SKR03','0','Liability','660','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1156, 'SKR03','0','Liability','661','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen ( bis 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1157, 'SKR03','0','Liability','670','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1158, 'SKR03','0','Liability','680','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1159, 'SKR03','0','Liability','690','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1160, 'SKR03','0','Liability','691','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1161, 'SKR03','0','Liability','692','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1162, 'SKR03','0','Liability','693','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1163, 'SKR03','0','Liability','694','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1164, 'SKR03','0','Liability','695','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1165, 'SKR03','0','Liability','696','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1166, 'SKR03','0','Liability','697','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1167, 'SKR03','0','Liability','698','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1168, 'SKR03','0','Liability','K0BP13','K0BP1','Verbindlichkeiten gegenüber Kreditinstitut',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1169, 'SKR03','0','Liability','699','K0BP13','Gegenkonto 0630-0689 bei Aufteilung der Konten 0690-0698',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1170, 'SKR03','0','Liability','K0BP14','K0BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1171, 'SKR03','0','Liability','700','K0BP14','Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1172, 'SKR03','0','Liability','701','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1173, 'SKR03','0','Liability','705','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1174, 'SKR03','0','Liability','710','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1175, 'SKR03','0','Liability','K0BP15','K0BP1','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1176, 'SKR03','0','Liability','715','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1177, 'SKR03','0','Liability','716','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1178, 'SKR03','0','Liability','720','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1179, 'SKR03','0','Liability','725','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1180, 'SKR03','0','Liability','K0BP16','K0BP1','Sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1181, 'SKR03','0','Liability','730','K0BP16','Verbindlichkeit gegenüber Gesellschaftern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1182, 'SKR03','0','Liability','731','0730','Verbindlichkeit gegenüber Gesellschaftern ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1183, 'SKR03','0','Liability','740','0730','Verbindlichkeit gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1184, 'SKR03','0','Liability','750','0730','Verbindlichkeit gegenüber Gesellschaftern ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1185, 'SKR03','0','Liability','755','0730','Verbindlichkeit gegenüber Gesellschaftern für offene Ausschüttungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1186, 'SKR03','0','Liability','760','0730','Darlehen typisch stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1187, 'SKR03','0','Liability','761','0730','Darlehen typisch stiller Gesellschafter ( bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1188, 'SKR03','0','Liability','764','0730','Darlehen typisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1189, 'SKR03','0','Liability','767','0730','Darlehen typisch stiller Gesellschafter ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1190, 'SKR03','0','Liability','770','0730','Darlehen atypisch stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1191, 'SKR03','0','Liability','771','0730','Darlehen atypisch stiller Gesellschafter ( bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1192, 'SKR03','0','Liability','774','0730','Darlehen atypisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1193, 'SKR03','0','Liability','777','0730','Darlehen atypisch stiller Gesellschafter ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1194, 'SKR03','0','Liability','780','0730','Partiarische Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1195, 'SKR03','0','Liability','781','0730','Partiarische Darlehen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1196, 'SKR03','0','Liability','784','0730','Partiarische Darlehen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1197, 'SKR03','0','Liability','787','0730','Partiarische Darlehen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1198, 'SKR03','0','Liability','790','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1199, 'SKR03','0','Liability','791','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1200, 'SKR03','0','Liability','792','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1201, 'SKR03','0','Liability','793','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1202, 'SKR03','0','Liability','794','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1203, 'SKR03','0','Liability','795','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1204, 'SKR03','0','Liability','796','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1205, 'SKR03','0','Liability','797','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1206, 'SKR03','0','Liability','798','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1207, 'SKR03','0','Liability','799','0730','Gegenkonto 0730 - 0789 bei Aufteilung der Konten 0790 - 0798',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1208, 'SKR03','0','Owner''s Equity','K0BP2','K0BP','Kapital Kapitalgesellschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1209, 'SKR03','0','Owner''s Equity','K0BP21','K0BP2','Gezeichnetes Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1210, 'SKR03','0','Owner''s Equity','800','K0BP21','Gezeichnetes Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1211, 'SKR03','0','Owner''s Equity','K0BP22','K0BP2','Ausstehende Einlagen auf das gezeichnete Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1212, 'SKR03','0','Owner''s Equity','801','K0BP22','Ausstehende Einlagen auf das gezeichnete Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1213, 'SKR03','0','Owner''s Equity','802','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1214, 'SKR03','0','Owner''s Equity','803','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1215, 'SKR03','0','Owner''s Equity','804','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1216, 'SKR03','0','Owner''s Equity','805','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1217, 'SKR03','0','Owner''s Equity','806','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1218, 'SKR03','0','Owner''s Equity','807','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1219, 'SKR03','0','Owner''s Equity','808','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1220, 'SKR03','0','Owner''s Equity','809','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1221, 'SKR03','0','Owner''s Equity','810','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1222, 'SKR03','0','Owner''s Equity','811','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1223, 'SKR03','0','Owner''s Equity','812','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1224, 'SKR03','0','Owner''s Equity','813','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1225, 'SKR03','0','Owner''s Equity','814','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1226, 'SKR03','0','Owner''s Equity','815','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1227, 'SKR03','0','Owner''s Equity','816','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1228, 'SKR03','0','Owner''s Equity','817','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1229, 'SKR03','0','Owner''s Equity','818','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1230, 'SKR03','0','Owner''s Equity','819','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1231, 'SKR03','0','Owner''s Equity','K0BP23','K0BP2','Nicht eingeforderte ausstehende Einlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1232, 'SKR03','0','Owner''s Equity','820','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1233, 'SKR03','0','Owner''s Equity','821','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1234, 'SKR03','0','Owner''s Equity','822','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1235, 'SKR03','0','Owner''s Equity','823','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1236, 'SKR03','0','Owner''s Equity','824','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1237, 'SKR03','0','Owner''s Equity','825','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1238, 'SKR03','0','Owner''s Equity','826','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1239, 'SKR03','0','Owner''s Equity','827','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1240, 'SKR03','0','Owner''s Equity','828','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1241, 'SKR03','0','Owner''s Equity','829','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1242, 'SKR03','0','Owner''s Equity','K0BP24','K0BP2','Eingeforderte noch ausstehende Kapitaleinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1243, 'SKR03','0','Owner''s Equity','830','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1244, 'SKR03','0','Owner''s Equity','831','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1245, 'SKR03','0','Owner''s Equity','832','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1246, 'SKR03','0','Owner''s Equity','833','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1247, 'SKR03','0','Owner''s Equity','834','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1248, 'SKR03','0','Owner''s Equity','835','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1249, 'SKR03','0','Owner''s Equity','836','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1250, 'SKR03','0','Owner''s Equity','837','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1251, 'SKR03','0','Owner''s Equity','838','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1252, 'SKR03','0','Owner''s Equity','K0BP25','K0BP2','Eingeforderte Nachschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1253, 'SKR03','0','Owner''s Equity','839','K0BP25','Eingeforderte Nachschüsse ( Forderungen Gegenkonto 0845 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1254, 'SKR03','0','Owner''s Equity','K0BP3','K0BP','Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1255, 'SKR03','0','Owner''s Equity','K0BP31','K0BP3','Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1256, 'SKR03','0','Owner''s Equity','840','K0BP31','Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1257, 'SKR03','0','Owner''s Equity','841','0840','Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1258, 'SKR03','0','Owner''s Equity','842','0840','Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1259, 'SKR03','0','Owner''s Equity','843','0840','Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1260, 'SKR03','0','Owner''s Equity','844','0840','Kapitalrücklage durch andere Zuzahlungen in das Eigenkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1261, 'SKR03','0','Owner''s Equity','845','0840','Eingefordertes Nachschusskapital ( Gegenkonto 0839 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1262, 'SKR03','0','Owner''s Equity','K0BP4','K0BP','Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1263, 'SKR03','0','Owner''s Equity','K0BP41','K0BP4','Gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1264, 'SKR03','0','Owner''s Equity','846','K0BP41','Gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1265, 'SKR03','0','Owner''s Equity','K0BP42','K0BP4','Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1266, 'SKR03','0','Owner''s Equity','850','K0BP42','Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1267, 'SKR03','0','Owner''s Equity','K0BP43','K0BP4','Satzungsmässige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1268, 'SKR03','0','Owner''s Equity','851','K0BP43','Satzungsmässige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1269, 'SKR03','0','Owner''s Equity','K0BP44','K0BP4','Andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1270, 'SKR03','0','Owner''s Equity','855','K0BP44','Andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1271, 'SKR03','0','Owner''s Equity','856','K0BP44','Eigenkapitalanteil von Wertaufholungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1272, 'SKR03','0','Owner''s Equity','K0BP45','K0BP4','Gewinnvortrag oder Verlustvortrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1273, 'SKR03','0','Owner''s Equity','860','K0BP45','Gewinnvortrag vor Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1274, 'SKR03','0','Owner''s Equity','868','K0BP45','Verlustvortrag vor Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1275, 'SKR03','0','Owner''s Equity','K0BP46','K0BP4','Vortrag auf neue Rechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1276, 'SKR03','0','Owner''s Equity','869','K0BP46','Vortrag auf neue Rechnung (Bilanz)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1277, 'SKR03','0','Owner''s Equity','K0BP5','K0BP','Kapital Personenhandelsgesellschaft vollhafter/Einzelunternehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1278, 'SKR03','0','Owner''s Equity','870','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1279, 'SKR03','0','Owner''s Equity','871','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1280, 'SKR03','0','Owner''s Equity','872','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1281, 'SKR03','0','Owner''s Equity','873','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1282, 'SKR03','0','Owner''s Equity','874','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1283, 'SKR03','0','Owner''s Equity','875','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1284, 'SKR03','0','Owner''s Equity','876','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1285, 'SKR03','0','Owner''s Equity','877','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1286, 'SKR03','0','Owner''s Equity','878','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1287, 'SKR03','0','Owner''s Equity','879','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1288, 'SKR03','0','Owner''s Equity','880','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1289, 'SKR03','0','Owner''s Equity','881','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1290, 'SKR03','0','Owner''s Equity','882','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1291, 'SKR03','0','Owner''s Equity','883','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1292, 'SKR03','0','Owner''s Equity','884','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1293, 'SKR03','0','Owner''s Equity','885','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1294, 'SKR03','0','Owner''s Equity','886','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1295, 'SKR03','0','Owner''s Equity','887','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1296, 'SKR03','0','Owner''s Equity','888','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1297, 'SKR03','0','Owner''s Equity','889','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1298, 'SKR03','0','Owner''s Equity','890','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1299, 'SKR03','0','Owner''s Equity','891','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1300, 'SKR03','0','Owner''s Equity','892','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1301, 'SKR03','0','Owner''s Equity','893','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1302, 'SKR03','0','Owner''s Equity','894','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1303, 'SKR03','0','Owner''s Equity','895','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1304, 'SKR03','0','Owner''s Equity','896','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1305, 'SKR03','0','Owner''s Equity','897','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1306, 'SKR03','0','Owner''s Equity','898','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1307, 'SKR03','0','Owner''s Equity','899','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1308, 'SKR03','0','Owner''s Equity','K0BP6','K0BP','Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1309, 'SKR03','0','Owner''s Equity','900','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1310, 'SKR03','0','Owner''s Equity','901','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1311, 'SKR03','0','Owner''s Equity','902','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1312, 'SKR03','0','Owner''s Equity','903','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1313, 'SKR03','0','Owner''s Equity','904','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1314, 'SKR03','0','Owner''s Equity','905','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1315, 'SKR03','0','Owner''s Equity','906','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1316, 'SKR03','0','Owner''s Equity','907','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1317, 'SKR03','0','Owner''s Equity','908','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1318, 'SKR03','0','Owner''s Equity','909','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1319, 'SKR03','0','Owner''s Equity','910','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1320, 'SKR03','0','Owner''s Equity','911','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1321, 'SKR03','0','Owner''s Equity','912','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1322, 'SKR03','0','Owner''s Equity','913','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1323, 'SKR03','0','Owner''s Equity','914','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1324, 'SKR03','0','Owner''s Equity','915','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1325, 'SKR03','0','Owner''s Equity','916','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1326, 'SKR03','0','Owner''s Equity','917','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1327, 'SKR03','0','Owner''s Equity','918','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1328, 'SKR03','0','Owner''s Equity','919','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1329, 'SKR03','0','Owner''s Equity','920','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1330, 'SKR03','0','Owner''s Equity','921','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1331, 'SKR03','0','Owner''s Equity','922','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1332, 'SKR03','0','Owner''s Equity','923','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1333, 'SKR03','0','Owner''s Equity','924','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1334, 'SKR03','0','Owner''s Equity','925','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1335, 'SKR03','0','Owner''s Equity','926','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1336, 'SKR03','0','Owner''s Equity','927','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1337, 'SKR03','0','Owner''s Equity','928','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1338, 'SKR03','0','Owner''s Equity','929','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1339, 'SKR03','0','Owner''s Equity','K0BP7','K0BP','Sonderposten mit Rücklageanteil',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1340, 'SKR03','0','Owner''s Equity','K0BP71','K0BP7','Sonderposten mit Rücklageanteil',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1341, 'SKR03','0','Owner''s Equity','930','K0BP71','Sonderposten mit Rücklageanteil steuerfreie Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1342, 'SKR03','0','Owner''s Equity','931','K0BP71','Sonderposten mit Rücklageanteil nach § 6b EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1343, 'SKR03','0','Owner''s Equity','932','K0BP71','Sonderposten mit Rücklageanteil nach Abschnitt 35 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1344, 'SKR03','0','Owner''s Equity','933','K0BP71','Sonderposten mit Rücklageanteil nach § 6d EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1345, 'SKR03','0','Owner''s Equity','934','K0BP71','Sonderposten mit Rücklageanteil nach § 1 EntwLStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1346, 'SKR03','0','Owner''s Equity','K0BP72','K0BP7','Sonderposten aus der Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1347, 'SKR03','0','Owner''s Equity','935','K0BP72','Sonderposten aus der Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1348, 'SKR03','0','Owner''s Equity','936','K0BP71','Sonderposten mit Rücklageanteil nach § 7 d EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1349, 'SKR03','0','Owner''s Equity','937','K0BP71','Sonderposten mit Rücklageanteil nach § 79 EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1350, 'SKR03','0','Owner''s Equity','938','K0BP71','Sonderposten mit Rücklageanteil nach § 80 EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1351, 'SKR03','0','Owner''s Equity','939','K0BP71','Sonderposten mit Rücklageanteil nach § 52 Abs.16 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1352, 'SKR03','0','Owner''s Equity','940','K0BP71','Sonderposten mit Rücklageanteil Sonderabschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1353, 'SKR03','0','Owner''s Equity','941','K0BP71','Sonderposten mit Rücklageanteil § 82 a EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1354, 'SKR03','0','Owner''s Equity','942','K0BP71','Sonderposten mit Rücklageanteil § 82 d EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1355, 'SKR03','0','Owner''s Equity','943','K0BP71','Sonderposten mit Rücklageanteil nach § 82 e EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1356, 'SKR03','0','Owner''s Equity','944','K0BP71','Sonderposten mit Rücklageanteil nach § 14 BerlinFG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1357, 'SKR03','0','Owner''s Equity','945','K0BP71','Sonderposten mit Rücklageanteil für Förderung nach § 3 Zonen-RFG/§ 4-6 FördergebietsG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1358, 'SKR03','0','Owner''s Equity','946','K0BP71','Sonderposten mit Rücklageanteil nach § 4d EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1359, 'SKR03','0','Owner''s Equity','947','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.1 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1360, 'SKR03','0','Owner''s Equity','948','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.3 u.7 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1361, 'SKR03','0','Owner''s Equity','K0BP73','K0BP7','Sonderposten für Zuschüsse und Zulagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1362, 'SKR03','0','Owner''s Equity','949','K0BP73','Sonderposten für Zuschüsse und Zulagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1363, 'SKR03','0','Liability','K0BP8','K0BP','Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1364, 'SKR03','0','Liability','K0BP81','K0BP8','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1365, 'SKR03','0','Liability','950','K0BP81','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1366, 'SKR03','0','Liability','K0BP82','K0BP8','Steuerrückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1367, 'SKR03','0','Liability','955','K0BP82','Steuerrückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1368, 'SKR03','0','Liability','957','0955','Gewerbesteuerrückstellung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1369, 'SKR03','0','Liability','963','0955','Körperschaftsteuerrückstellung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1370, 'SKR03','0','Liability','K0BP83','K0BP8','Sonstige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1371, 'SKR03','0','Liability','965','K0BP83','Rückstellungen für Personalkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1372, 'SKR03','0','Liability','966','K0BP83','Rückstellungen zur Erfüllung der Aufbewahrungspflichten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1373, 'SKR03','0','Liability','969','K0BP82','Rückstellung für latente Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1374, 'SKR03','0','Liability','970','K0BP83','Sonstige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1375, 'SKR03','0','Liability','971','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung in den ersten drei Monaten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1376, 'SKR03','0','Liability','972','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung innerhalb des 4. bis 12. Monats',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1377, 'SKR03','0','Liability','973','K0BP83','Rückstellungen für Abraum- und Abfallbeseitigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1378, 'SKR03','0','Liability','974','K0BP83','Rückstellungen für Gewährleistungen ( Gegenkonto 4790 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1379, 'SKR03','0','Liability','976','K0BP83','Rückstellungen für drohende Verluste aus schwebenden Geschäften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1380, 'SKR03','0','Liability','977','K0BP83','Rückstellungen für Abschluss- und Prüfungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1381, 'SKR03','0','Liability','978','K0BP83','Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1382, 'SKR03','0','Liability','979','K0BP83','Rückstellungen für Umweltschutz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1383, 'SKR03','0','Asset','K0BA4','K0BA','Abgenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1384, 'SKR03','0','Asset','K0BA41','K0BA4','Rechnungsabgrenzungsposten (Aktiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1385, 'SKR03','0','Asset','980','K0BA41','Aktive Rechnungsabgrenzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1386, 'SKR03','0','Asset','K0BA42','K0BA4','Abgrenzung latenter Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1387, 'SKR03','0','Asset','983','K0BA42','Abgrenzung aktive latente Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1388, 'SKR03','0','Liability','984','K0BA41','Als Aufwand berücksichtigte Zölle und Verbrauchsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1389, 'SKR03','0','Liability','985','K0BA41','Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1390, 'SKR03','0','Liability','986','K0BA41','Damnum / Disagio',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1391, 'SKR03','0','Liability','K0BP9','K0BP','Abgenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1392, 'SKR03','0','Liability','K0BP91','K0BP9','Rechnungsabgrenzungsposten (Passiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1393, 'SKR03','0','Liability','990','K0BP91','Passive Rechnungsabgrenzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1394, 'SKR03','0','XXXXX','RAP1','RAP','Sonstige Aktiva oder sonstige Passiva',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1395, 'SKR03','0','XXXXX','992','RAP1','Abgenzungsposten zur unterjährigen Kostenverrechnung für BWA',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1396, 'SKR03','0','XXXXX','RAP2','RAP','Forderungen aus Lieferungen und Leistungen H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1397, 'SKR03','0','XXXXX','996','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1398, 'SKR03','0','XXXXX','997','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1399, 'SKR03','0','XXXXX','998','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1400, 'SKR03','0','XXXXX','999','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1401, 'SKR03','0','Asset','K1BA1','K1BA','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1402, 'SKR03','0','Asset','K1BA11','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1403, 'SKR03','1','Asset','1000','K1BA11','Kasse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1404, 'SKR03','1','Asset','1010','1000','Nebenkasse 1',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1405, 'SKR03','1','Asset','1020','1000','Nebenkasse 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1406, 'SKR03','0','Asset','K1BA12','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks oder Verbindlichkeiten gegenüber Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1407, 'SKR03','1','Asset','1100','K1BA12','Postbank',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1408, 'SKR03','1','Asset','1110','1100','Postbank 1',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1409, 'SKR03','1','Asset','1120','1100','Postbank 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1410, 'SKR03','1','Asset','1130','1100','Postbank 3',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1411, 'SKR03','1','Asset','1190','1100','LZB-Guthaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1412, 'SKR03','1','Asset','1195','1100','Bundesbankguthaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1413, 'SKR03','1','Asset','1200','K1BA12','Bank',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1414, 'SKR03','1','Asset','1201','1200','Bank Kontobewegung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1415, 'SKR03','1','Asset','1202','1200','Bank nicht identifizierte Zahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1416, 'SKR03','1','Asset','1203','1200','Bank nicht zugeordnete Zahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1417, 'SKR03','1','Asset','1210','1200','Bank 1',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1418, 'SKR03','1','Asset','1220','1200','Bank 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1419, 'SKR03','1','Asset','1230','1200','Bank 3',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1420, 'SKR03','1','Asset','1240','1200','Bank 4',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1421, 'SKR03','1','Asset','1250','1200','Bank 5',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1422, 'SKR03','1','Asset','1290','1200','Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1423, 'SKR03','1','Asset','1295','1200','Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1424, 'SKR03','0','Asset','K1BA13','K1BA1','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1425, 'SKR03','1','Asset','1300','K1BA13','Wechsel aus Lieferung und Leistung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1426, 'SKR03','1','Asset','1301','K1BA13','Wechsel aus Lieferung und Leistung bis 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1427, 'SKR03','1','Asset','1302','K1BA13','Wechsel aus Lieferung und Leistung größer 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1428, 'SKR03','1','Asset','1305','K1BA13','Wechsel aus Lieferung und Leistung Bundesbankfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1429, 'SKR03','0','Asset','K1BA14','K1BA1','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1430, 'SKR03','1','Asset','1310','K1BA14','Besitzwechsel gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1431, 'SKR03','1','Asset','1311','K1BA14','Besitzwechsel gegen verbundene Unternehmen bis 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1432, 'SKR03','1','Asset','1312','K1BA14','Besitzwechsel gegen verbundene Unternehmen größer 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1433, 'SKR03','1','Asset','1315','K1BA14','Besitzwechsel gegen verbundene Unternehmen Bundesbankfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1434, 'SKR03','0','Asset','K1BA15','K1BA1','Forderungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1435, 'SKR03','1','Asset','1320','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1436, 'SKR03','1','Asset','1321','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bis 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1437, 'SKR03','1','Asset','1322','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht größer 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1438, 'SKR03','1','Asset','1325','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bundesbankfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1439, 'SKR03','0','Asset','K1BA16','K1BA1','Sonstige Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1440, 'SKR03','1','Asset','1327','K1BA16','Finanzwechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1441, 'SKR03','1','Asset','1329','K1BA16','Andere Wertpapiere mit unwesentlichen Wertschwankungen im Sinne Textziffer 18 DRS 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1442, 'SKR03','0','Asset','K1BA17','K1BA1','Kassenbestand Bundesbankguthaben Guthaben bei Kreditinstituten und Schecks',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1443, 'SKR03','1','Asset','1330','K1BA17','Schecks',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1444, 'SKR03','1','Liability','1332','K1BA17','Bezahlung selektiert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1445, 'SKR03','0','Asset','K1BA2','K1BA','Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1446, 'SKR03','0','Asset','K1BA21','K1BA2','Anteile an verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1447, 'SKR03','1','Asset','1340','K1BA21','Anteile an verbundenen Unternehmen (Umlaufvermögen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1448, 'SKR03','1','Asset','1344','K1BA21','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1449, 'SKR03','0','Asset','K1BA22','K1BA2','Eingene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1450, 'SKR03','1','Asset','1345','K1BA22','Eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1451, 'SKR03','0','Asset','K1BA23','K1BA2','Sonstige Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1452, 'SKR03','1','Asset','1348','K1BA23','Sonstige Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1453, 'SKR03','1','Asset','1349','K1BA23','Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1454, 'SKR03','0','Asset','K1BA3','K1BA','Forderungen und sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1455, 'SKR03','0','Asset','K1BA31','K1BA3','Sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1456, 'SKR03','1','Asset','1350','K1BA31','GmbH-Anteile zum kurzfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1457, 'SKR03','1','Asset','1352','K1BA31','Genossenschaftsanteile zum kurzfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1458, 'SKR03','1','Asset','1355','K1BA31','Ansprüche aus Rückdeckungsversicherung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1459, 'SKR03','0','Asset','K1BA32','K1BA3','Sonstige Vermögensgegenstände oder sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1460, 'SKR03','1','Asset','1360','K1BA32','Geldtransit',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1461, 'SKR03','1','Asset','1370','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG ergebniswirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1462, 'SKR03','1','Asset','1371','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG nicht ergebniswirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1463, 'SKR03','1','Asset','1372','K1BA32','Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1464, 'SKR03','1','Asset','1380','K1BA32','überleitungskonto Kostenstelle',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1465, 'SKR03','1','Asset','1390','K1BA32','Verrechnungskonto Ist-Versteuerung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1466, 'SKR03','0','Asset','K1BA33','K1BA3','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1467, 'SKR03','1','Asset','1400','K1BA33','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1468, 'SKR03','1','Liability','1401','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1469, 'SKR03','1','Liability','1402','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1470, 'SKR03','1','Liability','1403','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1471, 'SKR03','1','Liability','1404','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1472, 'SKR03','1','Liability','1405','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1473, 'SKR03','1','Liability','1406','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1474, 'SKR03','1','Asset','1410','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1475, 'SKR03','1','Asset','1411','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1476, 'SKR03','1','Asset','1412','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1477, 'SKR03','1','Asset','1413','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1478, 'SKR03','1','Asset','1414','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1479, 'SKR03','1','Asset','1415','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1480, 'SKR03','1','Asset','1416','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1481, 'SKR03','1','Asset','1417','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1482, 'SKR03','1','Asset','1418','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1483, 'SKR03','1','Asset','1419','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1484, 'SKR03','1','Asset','1420','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1485, 'SKR03','1','Asset','1421','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1486, 'SKR03','1','Asset','1422','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1487, 'SKR03','1','Asset','1423','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1488, 'SKR03','1','Asset','1424','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1489, 'SKR03','1','Asset','1425','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1490, 'SKR03','1','Asset','1426','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1491, 'SKR03','1','Asset','1427','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1492, 'SKR03','1','Asset','1428','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1493, 'SKR03','1','Asset','1429','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1494, 'SKR03','1','Asset','1430','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1495, 'SKR03','1','Asset','1431','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1496, 'SKR03','1','Asset','1432','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1497, 'SKR03','1','Asset','1433','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1498, 'SKR03','1','Asset','1434','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1499, 'SKR03','1','Asset','1435','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1500, 'SKR03','1','Asset','1436','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1501, 'SKR03','1','Asset','1437','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1502, 'SKR03','1','Asset','1438','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1503, 'SKR03','1','Asset','1439','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1504, 'SKR03','1','Asset','1440','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1505, 'SKR03','1','Asset','1441','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1506, 'SKR03','1','Asset','1442','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1507, 'SKR03','1','Asset','1443','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1508, 'SKR03','1','Asset','1444','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1509, 'SKR03','1','Asset','1445','1400','Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmens (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1510, 'SKR03','1','Asset','1446','1400','Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1511, 'SKR03','1','Asset','1447','1400','Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1512, 'SKR03','1','Asset','1448','1400','Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1513, 'SKR03','1','Asset','1449','1400','Gegenkonto 1445-1448 bei Aufteilung der Forderungen nach Steuersätzen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1514, 'SKR03','1','Asset','1450','1400','Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1515, 'SKR03','1','Asset','1451','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1516, 'SKR03','1','Asset','1452','1400','Projekt Werte in Arbeit',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1517, 'SKR03','1','Asset','1455','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1518, 'SKR03','1','Asset','1460','1400','Zweifelhafte Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1519, 'SKR03','1','Asset','1461','1400','Zweifelhafte Forderungen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1520, 'SKR03','1','Asset','1465','1400','Zweifelhafte Forderungen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1521, 'SKR03','0','Asset','K1BA34','K1BA3','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1522, 'SKR03','1','Asset','1470','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1523, 'SKR03','1','Asset','1471','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1524, 'SKR03','1','Asset','1475','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1525, 'SKR03','0','Asset','K1BA35','K1BA3','Forderungen gegen verbundene Unternehmen H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1526, 'SKR03','1','Asset','1478','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1527, 'SKR03','1','Asset','1479','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1528, 'SKR03','0','Asset','K1BA36','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1529, 'SKR03','1','Asset','1480','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1530, 'SKR03','1','Asset','1481','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1531, 'SKR03','1','Asset','1485','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1532, 'SKR03','0','Asset','K1BA37','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1533, 'SKR03','1','Asset','1488','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1534, 'SKR03','1','Asset','1489','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1535, 'SKR03','1','Asset','1490','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1536, 'SKR03','1','Asset','1491','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1537, 'SKR03','1','Asset','1495','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1538, 'SKR03','0','Asset','K1BA38','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1539, 'SKR03','1','Asset','1498','K1BA38','Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1540, 'SKR03','0','Asset','K1BA39','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo oder sonstige Verbindlichkeiten S-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1541, 'SKR03','1','Asset','1499','K1BA39','Gegenkonto 1451 - 1497 bei Aufteilung Debitorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1542, 'SKR03','1','Asset','1500','K1BA31','Sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1543, 'SKR03','1','Asset','1501','1500','Sonstige Vermögensgegenstände ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1544, 'SKR03','1','Asset','1502','1500','Sonstige Vermögensgegenstände ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1545, 'SKR03','1','Asset','1503','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1546, 'SKR03','1','Asset','1504','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1547, 'SKR03','1','Asset','1505','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1548, 'SKR03','1','Asset','1506','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1549, 'SKR03','1','Asset','1507','1500','Forderungen gegen Gesellschafter ( bis 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1550, 'SKR03','1','Asset','1508','1500','Forderungen gegen Gesellschafter ( größer 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1551, 'SKR03','0','Asset','K1BA3a','K1BA3','Geleistete Anzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1552, 'SKR03','1','Asset','1510','K1BA3a','Geleistete Anzahlungen auf Vorräte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1553, 'SKR03','1','Asset','1511','1510','Geleistete Anzahlungen 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1554, 'SKR03','1','Asset','1516','1510','Geleistete Anzahlungen 15% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1555, 'SKR03','1','Asset','1517','1510','Geleistete Anzahlungen 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1556, 'SKR03','1','Asset','1518','1510','Geleistete Anzahlungen 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1557, 'SKR03','1','Asset','1520',NULL,'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1558, 'SKR03','1','Asset','1521','K1BA31','Agenturwarenabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1559, 'SKR03','1','Asset','1525','K1BA32','Kautionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1560, 'SKR03','1','Asset','1526','K1BA33','Kautionen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1561, 'SKR03','1','Asset','1527','K1BA34','Kautionen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1562, 'SKR03','1','Asset','1528','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 2 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1563, 'SKR03','1','Asset','1529','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 2 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1564, 'SKR03','1','Asset','1530','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1565, 'SKR03','1','Asset','1531','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1566, 'SKR03','1','Asset','1537','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1567, 'SKR03','1','Asset','1540','K1BA31','Steuerüberzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1568, 'SKR03','1','Asset','1542','K1BA31','Steuererstattungsansprüche gegenüber anderen EG-Ländern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1569, 'SKR03','1','Asset','1543','K1BA31','Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1570, 'SKR03','1','Asset','1545','K1BA31','Umsatzsteuerforderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1571, 'SKR03','1','Asset','1547','K1BA31','Forderungen aus entrichteten Verbrauchsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1572, 'SKR03','1','Asset','1548','K1BA32','Vorsteuer im Folgejahr abziehbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1573, 'SKR03','1','Asset','1549','K1BA31','Körperschaftsteuerrückforderung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1574, 'SKR03','1','Asset','1550','K1BA31','Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1575, 'SKR03','1','Asset','1551','K1BA31','Darlehen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1576, 'SKR03','1','Asset','1555','K1BA31','Darlehen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1577, 'SKR03','1','Asset','1556','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1578, 'SKR03','1','Asset','1557','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1579, 'SKR03','1','Asset','1558','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1580, 'SKR03','1','Asset','1559','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1581, 'SKR03','1','Asset','1560','K1BA32','Aufzuteilende Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1582, 'SKR03','1','Asset','1561','K1BA32','Aufzuteilende Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1583, 'SKR03','1','Asset','1562','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1584, 'SKR03','1','Asset','1563','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1585, 'SKR03','1','Asset','1565','K1BA32','Aufzuteilende Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1586, 'SKR03','1','Asset','1566','K1BA32','Aufzuteilende Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1587, 'SKR03','1','Asset','1567','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1588, 'SKR03','1','Asset','1568','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 16 %',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1589, 'SKR03','1','Asset','1569','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1590, 'SKR03','1','Asset','1570','K1BA32','Abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1591, 'SKR03','1','Asset','1571','K1BA32','Abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1592, 'SKR03','1','Asset','1572','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1593, 'SKR03','1','Asset','1573','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1594, 'SKR03','1','Asset','1574','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1595, 'SKR03','1','Asset','1575','K1BA32','Abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1596, 'SKR03','1','Asset','1576','K1BA32','Abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1597, 'SKR03','1','Asset','1577','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1598, 'SKR03','1','Asset','1578','K1BA32','Abziehbare Vorsteuer nach § 13b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1599, 'SKR03','1','Asset','1579','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1600, 'SKR03','1','Asset','1580','K1BA32','Gegenkonto Vorsteuer § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1601, 'SKR03','1','Asset','1581','K1BA32','Auflösung Vorsteuer aus Vorjahr § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1602, 'SKR03','1','Asset','1582','K1BA32','Vorsteuer aus Investitionen § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1603, 'SKR03','1','Asset','1583','K1BA32','Gegenkonto für Vorsteuer nach Durchschnittssätzen für § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1604, 'SKR03','1','Asset','1584','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferabten ohne Umsatzsteuer-Identifikationsnummer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1605, 'SKR03','1','Asset','1585','K1BA32','Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1606, 'SKR03','1','Asset','1587','K1BA32','Vorsteuer nach allgemeinen Durchschnittssätzen UStVA Kz. 63',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1607, 'SKR03','1','Asset','1588','K1BA32','Bezahlte Einfuhrumsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1608, 'SKR03','1','Asset','1590','K1BA32','Durchlaufende Posten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1609, 'SKR03','1','Asset','1591','K1BA32','Durchlaufende Posten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1610, 'SKR03','1','Asset','1592','K1BA32','Fremdgeld',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1611, 'SKR03','0','Asset','K1BA3b','K1BA3','Sonstige Verbindlichkeiten S-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1612, 'SKR03','1','Asset','1593','K1BA3b','Verrechnungskonto erhaltene Anzahlungen bei Buchung über Debitorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1613, 'SKR03','1','Asset','1594','K1BA34','Forderungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1614, 'SKR03','1','Asset','1595','1594','Forderungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1615, 'SKR03','1','Asset','1596','1594','Forderungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1616, 'SKR03','1','Asset','1597','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1617, 'SKR03','1','Asset','1598','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1618, 'SKR03','1','Asset','1599','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1619, 'SKR03','0','Liability','K1BP1','K1BP','Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1620, 'SKR03','0','Liability','K1BP11','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen oder sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1621, 'SKR03','1','Liability','1600','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1622, 'SKR03','1','Liability','1601','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1623, 'SKR03','1','Liability','1602','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1624, 'SKR03','1','Liability','1603','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1625, 'SKR03','1','Liability','1605','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1626, 'SKR03','1','Liability','1606','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1627, 'SKR03','1','Liability','1607','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1628, 'SKR03','1','Liability','1609','1600','Gegenkonto 1605 - 1607 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1629, 'SKR03','1','Liability','1610','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1630, 'SKR03','1','Liability','1611','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1631, 'SKR03','1','Liability','1612','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1632, 'SKR03','1','Liability','1613','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1633, 'SKR03','1','Liability','1614','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1634, 'SKR03','1','Liability','1615','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1635, 'SKR03','1','Liability','1616','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1636, 'SKR03','1','Liability','1617','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1637, 'SKR03','1','Liability','1618','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1638, 'SKR03','1','Liability','1619','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1639, 'SKR03','1','Liability','1620','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1640, 'SKR03','1','Liability','1621','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1641, 'SKR03','1','Liability','1622','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1642, 'SKR03','1','Liability','1623','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1643, 'SKR03','1','Liability','1624','1600','Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1644, 'SKR03','1','Liability','1625','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1645, 'SKR03','1','Liability','1626','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1646, 'SKR03','1','Liability','1628','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1647, 'SKR03','0','Liability','K1BP12','K1BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1648, 'SKR03','1','Liability','1630','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1649, 'SKR03','1','Liability','1631','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1650, 'SKR03','1','Liability','1635','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1651, 'SKR03','1','Liability','1638','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1652, 'SKR03','0','Liability','K1BP13','K1BP1','Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1653, 'SKR03','1','Liability','1640','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1654, 'SKR03','1','Liability','1641','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1655, 'SKR03','1','Liability','1645','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1656, 'SKR03','1','Liability','1648','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1657, 'SKR03','1','Liability','1650','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1658, 'SKR03','1','Liability','1651','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1659, 'SKR03','1','Liability','1655','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1660, 'SKR03','1','Liability','1658','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1661, 'SKR03','0','Liability','K1BP14','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen S-Saldo oder sonstige Vermögensgegenstände H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1662, 'SKR03','1','Liability','1659','K1BP14','Gegenkonto 1625 - 1658 bei Aufteilung Kreditorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1663, 'SKR03','0','Liability','K1BP15','K1BP1','Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1664, 'SKR03','1','Liability','1660','K1BP15','Schuldwechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1665, 'SKR03','1','Liability','1661','K1BP15','Schuldwechsel ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1666, 'SKR03','1','Liability','1680','K1BP15','Schuldwechsel ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1667, 'SKR03','1','Liability','1690','K1BP15','Schuldwechsel ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1668, 'SKR03','0','Liability','K1BP16','K1BP1','Sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1669, 'SKR03','1','Liability','1700','K1BP16','Sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1670, 'SKR03','1','Liability','1701','1700','Sonstige Verbindlichkeiten ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1671, 'SKR03','1','Liability','1702','1700','Sonstige Verbindlichkeiten ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1672, 'SKR03','1','Liability','1703','1700','Sonstige Verbindlichkeiten ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1673, 'SKR03','1','Liability','1704','1700','Sonstige Verbindlichkeiten z.B. nach § 11 Abs. 2 Satz 2 EStG für 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1674, 'SKR03','1','Liability','1705','1700','Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1675, 'SKR03','1','Liability','1706','1700','Darlehen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1676, 'SKR03','1','Liability','1707','1700','Darlehen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1677, 'SKR03','1','Liability','1708','1700','Darlehen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1678, 'SKR03','0','Liability','K1BP17','K1BP1','Sonstige Verbindlichkeiten oder sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1679, 'SKR03','1','Liability','1709','K1BP17','Gewinnverfügungskonto stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1680, 'SKR03','0','Liability','K1BP18','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Passiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1681, 'SKR03','1','Liability','1710','K1BP18','Erhaltene Anzahlungen ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1682, 'SKR03','1','Liability','1711','1710','Erhaltene versteuerte Anzahlungen 7% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1683, 'SKR03','1','Liability','1716','1710','Erhaltene versteuerte Anzahlungen 15% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1684, 'SKR03','1','Liability','1717','1710','Erhaltene versteuerte Anzahlungen 16% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1685, 'SKR03','1','Liability','1718','1710','Erhaltene versteuerte Anzahlungen 19% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1686, 'SKR03','1','Liability','1719','1710','Erhaltene Anzahlungen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1687, 'SKR03','1','Liability','1720','1710','Erhaltene Anzahlungen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1688, 'SKR03','1','Liability','1721','1710','Erhaltene Anzahlungen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1689, 'SKR03','0','Liability','K1BP19','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Aktiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1690, 'SKR03','1','Liability','1722','K1BP19','Erhaltene Anzahlungen (von Vorräten offen abgesetzt)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1691, 'SKR03','1','Liability','1730','K1BP16','Kreditkartenabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1692, 'SKR03','1','Liability','1731','K1BP16','Agenturwarenabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1693, 'SKR03','1','Liability','1732','K1BP16','Erhaltene Kautionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1694, 'SKR03','1','Liability','1733','K1BP16','Erhaltene Kautionen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1695, 'SKR03','1','Liability','1734','K1BP16','Erhaltene Kautionen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1696, 'SKR03','1','Liability','1735','K1BP16','Erhaltene Kautionen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1697, 'SKR03','1','Liability','1736','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1698, 'SKR03','1','Liability','1737','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1699, 'SKR03','1','Liability','1738','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1700, 'SKR03','1','Liability','1739','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1701, 'SKR03','1','Liability','1740','K1BP16','Verbindlichkeiten aus Lohn und Gehalt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1702, 'SKR03','1','Liability','1741','K1BP17','Verbindlichkeiten aus Lohn- und Kirchensteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1703, 'SKR03','1','Liability','1742','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1704, 'SKR03','1','Liability','1743','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1705, 'SKR03','1','Liability','1744','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1706, 'SKR03','1','Liability','1745','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1707, 'SKR03','1','Liability','1746','K1BP16','Verbindlichkeiten aus Einbehaltungen ( KapESt und SolZ auf KapESt )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1708, 'SKR03','1','Liability','1747','K1BP16','Verbindlichkeiten für Verbrauchsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1709, 'SKR03','1','Liability','1748','K1BP16','Verbindlichkeiten für Einbehaltungen von Arbeitnehmern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1710, 'SKR03','1','Liability','1749','K1BP16','Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1711, 'SKR03','1','Liability','1750','K1BP16','Verbindlichkeiten aus Vermögensbildung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1712, 'SKR03','1','Liability','1751','K1BP16','Verbindlichkeiten aus Vermögensbildung ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1713, 'SKR03','1','Liability','1752','K1BP16','Verbindlichkeiten aus Vermögensbildung ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1714, 'SKR03','1','Liability','1753','K1BP16','Verbindlichkeiten aus Vermögensbildung ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1715, 'SKR03','1','Liability','1754','K1BP16','Steuerzahlungen an andere EG-Länder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1716, 'SKR03','1','Liability','1755','K1BP17','Lohn- und Gehaltsverrechnungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1717, 'SKR03','1','Liability','1756','1755','Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1718, 'SKR03','1','Liability','1759','1755','Voraussichtliche Beitragsschuld gegenüber den sozialversicherungsträgern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1719, 'SKR03','0','Liability','K1BP1a','K1BP1','Steuerrückstellungen oder sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1720, 'SKR03','1','Liability','1760','K1BP1a','Umsatzsteuer nicht fällig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1721, 'SKR03','1','Liability','1761','K1BP1a','Umsatzsteuer nicht fällig 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1722, 'SKR03','1','Liability','1762','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1723, 'SKR03','1','Liability','1763','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1724, 'SKR03','1','Liability','1764','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1725, 'SKR03','1','Liability','1765','K1BP1a','Umsatzsteuer nicht fällig 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1726, 'SKR03','1','Liability','1766','K1BP1a','Umsatzsteuer nicht fällig 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1727, 'SKR03','1','Liability','1767','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1728, 'SKR03','1','Liability','1768','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen sonstigen Leistungen / Werklieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1729, 'SKR03','1','Liability','1769','K1BP17','Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1730, 'SKR03','1','Liability','1770','K1BP17','Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1731, 'SKR03','1','Liability','1771','K1BP17','Umsatzsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1732, 'SKR03','1','Liability','1772','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1733, 'SKR03','1','Liability','1773','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1734, 'SKR03','1','Liability','1774','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1735, 'SKR03','1','Liability','1775','K1BP17','Umsatzsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1736, 'SKR03','1','Liability','1776','K1BP17','Umsatzsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1737, 'SKR03','1','Liability','1777','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1738, 'SKR03','1','Liability','1778','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1739, 'SKR03','1','Liability','1779','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb Vorsteuerabzug',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1740, 'SKR03','1','Liability','1780','K1BP17','Umsatzsteuer-Vorauszahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1741, 'SKR03','1','Liability','1781','K1BP17','Umsatzsteuer-Vorauszahlung 1/11',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1742, 'SKR03','1','Liability','1782','K1BP17','Nachsteuer UstVA Kz. 65',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1743, 'SKR03','1','Liability','1783','K1BP17','In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerveträge UstVA Kz. 69',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1744, 'SKR03','1','Liability','1784','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1745, 'SKR03','1','Liability','1785','K1BP17','Umsatzsteuer nach § 13b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1746, 'SKR03','1','Liability','1786','K1BP17','Umsatzsteuer nach § 13b UStG 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1747, 'SKR03','1','Liability','1787','K1BP17','Umsatzsteuer nach § 13b UStG 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1748, 'SKR03','1','Liability','1788','K1BP17','Einfuhrumsatzsteuer aufgeschoben bis',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1749, 'SKR03','1','Liability','1789','K1BP17','Umsatzsteuer laufendes Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1750, 'SKR03','1','Liability','1790','K1BP17','Umsatzsteuer Vorjahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1751, 'SKR03','1','Liability','1791','K1BP17','Umsatzsteuer frühere Jahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1752, 'SKR03','1','Liability','1792','K1BP17','Sonstige Verrechnungskonten (Interimskonten)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1753, 'SKR03','0','Liability','K1BP1b','K1BP1','Sonstige Vermögensgegenstände H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1754, 'SKR03','1','Liability','1793','K1BP1b','Verrechnungskonto geleistete Anzahlungen bei Buchung über Kreditkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1755, 'SKR03','1','Liability','1795','K1BP1b','Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1756, 'SKR03','0','Owner''s Equity','K1BP2','K1BP','Privat Vollhafter / Einzelunternehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1757, 'SKR03','1','Owner''s Equity','1800','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1758, 'SKR03','1','Owner''s Equity','1801','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1759, 'SKR03','1','Owner''s Equity','1802','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1760, 'SKR03','1','Owner''s Equity','1803','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1761, 'SKR03','1','Owner''s Equity','1804','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1762, 'SKR03','1','Owner''s Equity','1805','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1763, 'SKR03','1','Owner''s Equity','1806','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1764, 'SKR03','1','Owner''s Equity','1807','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1765, 'SKR03','1','Owner''s Equity','1808','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1766, 'SKR03','1','Owner''s Equity','1809','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1767, 'SKR03','1','Owner''s Equity','1810','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1768, 'SKR03','1','Owner''s Equity','1811','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1769, 'SKR03','1','Owner''s Equity','1812','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1770, 'SKR03','1','Owner''s Equity','1813','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1771, 'SKR03','1','Owner''s Equity','1814','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1772, 'SKR03','1','Owner''s Equity','1815','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1773, 'SKR03','1','Owner''s Equity','1816','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1774, 'SKR03','1','Owner''s Equity','1817','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1775, 'SKR03','1','Owner''s Equity','1818','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1776, 'SKR03','1','Owner''s Equity','1819','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1777, 'SKR03','1','Owner''s Equity','1820','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1778, 'SKR03','1','Owner''s Equity','1821','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1779, 'SKR03','1','Owner''s Equity','1822','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1780, 'SKR03','1','Owner''s Equity','1823','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1781, 'SKR03','1','Owner''s Equity','1824','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1782, 'SKR03','1','Owner''s Equity','1825','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1783, 'SKR03','1','Owner''s Equity','1826','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1784, 'SKR03','1','Owner''s Equity','1827','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1785, 'SKR03','1','Owner''s Equity','1828','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1786, 'SKR03','1','Owner''s Equity','1829','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1787, 'SKR03','1','Owner''s Equity','1830','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1788, 'SKR03','1','Owner''s Equity','1831','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1789, 'SKR03','1','Owner''s Equity','1832','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1790, 'SKR03','1','Owner''s Equity','1833','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1791, 'SKR03','1','Owner''s Equity','1834','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1792, 'SKR03','1','Owner''s Equity','1835','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1793, 'SKR03','1','Owner''s Equity','1836','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1794, 'SKR03','1','Owner''s Equity','1837','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1795, 'SKR03','1','Owner''s Equity','1838','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1796, 'SKR03','1','Owner''s Equity','1839','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1797, 'SKR03','1','Owner''s Equity','1840','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1798, 'SKR03','1','Owner''s Equity','1841','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1799, 'SKR03','1','Owner''s Equity','1842','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1800, 'SKR03','1','Owner''s Equity','1843','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1801, 'SKR03','1','Owner''s Equity','1844','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1802, 'SKR03','1','Owner''s Equity','1845','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1803, 'SKR03','1','Owner''s Equity','1846','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1804, 'SKR03','1','Owner''s Equity','1847','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1805, 'SKR03','1','Owner''s Equity','1848','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1806, 'SKR03','1','Owner''s Equity','1849','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1807, 'SKR03','1','Owner''s Equity','1850','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1808, 'SKR03','1','Owner''s Equity','1851','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1809, 'SKR03','1','Owner''s Equity','1852','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1810, 'SKR03','1','Owner''s Equity','1853','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1811, 'SKR03','1','Owner''s Equity','1854','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1812, 'SKR03','1','Owner''s Equity','1855','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1813, 'SKR03','1','Owner''s Equity','1856','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1814, 'SKR03','1','Owner''s Equity','1857','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1815, 'SKR03','1','Owner''s Equity','1858','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1816, 'SKR03','1','Owner''s Equity','1859','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1817, 'SKR03','1','Owner''s Equity','1860','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1818, 'SKR03','1','Owner''s Equity','1861','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1819, 'SKR03','1','Owner''s Equity','1862','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1820, 'SKR03','1','Owner''s Equity','1863','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1821, 'SKR03','1','Owner''s Equity','1864','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1822, 'SKR03','1','Owner''s Equity','1865','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1823, 'SKR03','1','Owner''s Equity','1866','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1824, 'SKR03','1','Owner''s Equity','1867','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1825, 'SKR03','1','Owner''s Equity','1868','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1826, 'SKR03','1','Owner''s Equity','1869','K1BP2','Grundstücksaufwand (Umsatzsteuerschlüssel möglich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1827, 'SKR03','1','Owner''s Equity','1870','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1828, 'SKR03','1','Owner''s Equity','1871','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1829, 'SKR03','1','Owner''s Equity','1872','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1830, 'SKR03','1','Owner''s Equity','1873','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1831, 'SKR03','1','Owner''s Equity','1874','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1832, 'SKR03','1','Owner''s Equity','1875','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1833, 'SKR03','1','Owner''s Equity','1876','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1834, 'SKR03','1','Owner''s Equity','1877','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1835, 'SKR03','1','Owner''s Equity','1878','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1836, 'SKR03','1','Owner''s Equity','1879','K1BP2','Grundstücksertrag (Umsatzsteuerschlüssel möglich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1837, 'SKR03','1','Owner''s Equity','1880','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1838, 'SKR03','1','Owner''s Equity','1881','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1839, 'SKR03','1','Owner''s Equity','1882','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1840, 'SKR03','1','Owner''s Equity','1883','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1841, 'SKR03','1','Owner''s Equity','1884','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1842, 'SKR03','1','Owner''s Equity','1885','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1843, 'SKR03','1','Owner''s Equity','1886','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1844, 'SKR03','1','Owner''s Equity','1887','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1845, 'SKR03','1','Owner''s Equity','1888','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1846, 'SKR03','1','Owner''s Equity','1889','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1847, 'SKR03','1','Owner''s Equity','1890','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1848, 'SKR03','1','Owner''s Equity','1891','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1849, 'SKR03','1','Owner''s Equity','1892','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1850, 'SKR03','1','Owner''s Equity','1893','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1851, 'SKR03','1','Owner''s Equity','1894','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1852, 'SKR03','1','Owner''s Equity','1895','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1853, 'SKR03','1','Owner''s Equity','1896','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1854, 'SKR03','1','Owner''s Equity','1897','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1855, 'SKR03','1','Owner''s Equity','1898','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1856, 'SKR03','1','Owner''s Equity','1899','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1857, 'SKR03','1','Owner''s Equity','1900','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1858, 'SKR03','0','Owner''s Equity','K1BP3','K1BP','Privat Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1859, 'SKR03','1','Owner''s Equity','1900','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1860, 'SKR03','1','Owner''s Equity','1901','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1861, 'SKR03','1','Owner''s Equity','1902','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1862, 'SKR03','1','Owner''s Equity','1903','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1863, 'SKR03','1','Owner''s Equity','1904','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1864, 'SKR03','1','Owner''s Equity','1905','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1865, 'SKR03','1','Owner''s Equity','1906','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1866, 'SKR03','1','Owner''s Equity','1907','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1867, 'SKR03','1','Owner''s Equity','1908','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1868, 'SKR03','1','Owner''s Equity','1909','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1869, 'SKR03','1','Owner''s Equity','1910','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1870, 'SKR03','1','Owner''s Equity','1911','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1871, 'SKR03','1','Owner''s Equity','1912','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1872, 'SKR03','1','Owner''s Equity','1913','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1873, 'SKR03','1','Owner''s Equity','1914','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1874, 'SKR03','1','Owner''s Equity','1915','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1875, 'SKR03','1','Owner''s Equity','1916','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1876, 'SKR03','1','Owner''s Equity','1917','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1877, 'SKR03','1','Owner''s Equity','1918','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1878, 'SKR03','1','Owner''s Equity','1919','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1879, 'SKR03','1','Owner''s Equity','1920','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1880, 'SKR03','1','Owner''s Equity','1921','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1881, 'SKR03','1','Owner''s Equity','1922','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1882, 'SKR03','1','Owner''s Equity','1923','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1883, 'SKR03','1','Owner''s Equity','1924','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1884, 'SKR03','1','Owner''s Equity','1925','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1885, 'SKR03','1','Owner''s Equity','1926','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1886, 'SKR03','1','Owner''s Equity','1927','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1887, 'SKR03','1','Owner''s Equity','1928','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1888, 'SKR03','1','Owner''s Equity','1929','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1889, 'SKR03','1','Owner''s Equity','1930','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1890, 'SKR03','1','Owner''s Equity','1931','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1891, 'SKR03','1','Owner''s Equity','1932','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1892, 'SKR03','1','Owner''s Equity','1933','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1893, 'SKR03','1','Owner''s Equity','1934','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1894, 'SKR03','1','Owner''s Equity','1935','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1895, 'SKR03','1','Owner''s Equity','1936','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1896, 'SKR03','1','Owner''s Equity','1937','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1897, 'SKR03','1','Owner''s Equity','1938','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1898, 'SKR03','1','Owner''s Equity','1939','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1899, 'SKR03','1','Owner''s Equity','1940','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1900, 'SKR03','1','Owner''s Equity','1941','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1901, 'SKR03','1','Owner''s Equity','1942','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1902, 'SKR03','1','Owner''s Equity','1943','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1903, 'SKR03','1','Owner''s Equity','1944','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1904, 'SKR03','1','Owner''s Equity','1945','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1905, 'SKR03','1','Owner''s Equity','1946','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1906, 'SKR03','1','Owner''s Equity','1947','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1907, 'SKR03','1','Owner''s Equity','1948','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1908, 'SKR03','1','Owner''s Equity','1949','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1909, 'SKR03','1','Owner''s Equity','1950','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1910, 'SKR03','1','Owner''s Equity','1951','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1911, 'SKR03','1','Owner''s Equity','1952','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1912, 'SKR03','1','Owner''s Equity','1953','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1913, 'SKR03','1','Owner''s Equity','1954','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1914, 'SKR03','1','Owner''s Equity','1955','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1915, 'SKR03','1','Owner''s Equity','1956','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1916, 'SKR03','1','Owner''s Equity','1957','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1917, 'SKR03','1','Owner''s Equity','1958','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1918, 'SKR03','1','Owner''s Equity','1959','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1919, 'SKR03','1','Owner''s Equity','1960','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1920, 'SKR03','1','Owner''s Equity','1961','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1921, 'SKR03','1','Owner''s Equity','1962','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1922, 'SKR03','1','Owner''s Equity','1963','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1923, 'SKR03','1','Owner''s Equity','1964','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1924, 'SKR03','1','Owner''s Equity','1965','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1925, 'SKR03','1','Owner''s Equity','1966','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1926, 'SKR03','1','Owner''s Equity','1967','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1927, 'SKR03','1','Owner''s Equity','1968','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1928, 'SKR03','1','Owner''s Equity','1969','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1929, 'SKR03','1','Owner''s Equity','1970','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1930, 'SKR03','1','Owner''s Equity','1971','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1931, 'SKR03','1','Owner''s Equity','1972','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1932, 'SKR03','1','Owner''s Equity','1973','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1933, 'SKR03','1','Owner''s Equity','1974','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1934, 'SKR03','1','Owner''s Equity','1975','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1935, 'SKR03','1','Owner''s Equity','1976','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1936, 'SKR03','1','Owner''s Equity','1977','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1937, 'SKR03','1','Owner''s Equity','1978','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1938, 'SKR03','1','Owner''s Equity','1979','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1939, 'SKR03','1','Owner''s Equity','1980','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1940, 'SKR03','1','Owner''s Equity','1981','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1941, 'SKR03','1','Owner''s Equity','1982','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1942, 'SKR03','1','Owner''s Equity','1983','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1943, 'SKR03','1','Owner''s Equity','1984','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1944, 'SKR03','1','Owner''s Equity','1985','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1945, 'SKR03','1','Owner''s Equity','1986','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1946, 'SKR03','1','Owner''s Equity','1987','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1947, 'SKR03','1','Owner''s Equity','1988','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1948, 'SKR03','1','Owner''s Equity','1989','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1949, 'SKR03','1','Owner''s Equity','1990','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1950, 'SKR03','1','Owner''s Equity','1991','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1951, 'SKR03','1','Owner''s Equity','1992','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1952, 'SKR03','1','Owner''s Equity','1993','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1953, 'SKR03','1','Owner''s Equity','1994','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1954, 'SKR03','1','Owner''s Equity','1995','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1955, 'SKR03','1','Owner''s Equity','1996','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1956, 'SKR03','1','Owner''s Equity','1997','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1957, 'SKR03','1','Owner''s Equity','1998','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1958, 'SKR03','1','Owner''s Equity','1999','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1959, 'SKR03','0','Expense','K2GVA1','K2GVA','Außerordentliche Aufwendungen i.S.d. BiRiLiG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1960, 'SKR03','0','Expense','K2GVA11','K2GVA1','Außerordentliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1961, 'SKR03','2','Expense','2000','K2GVA11','Außerordentliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1962, 'SKR03','2','Expense','2001','K2GVA11','Außerordentliche Aufwendungen finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1963, 'SKR03','2','Expense','2005','K2GVA11','Außerordentliche Aufwendungen nicht finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1964, 'SKR03','0','Expense','K2GVA2','K2GVA','Betriebsfremde und periodenfremde Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1965, 'SKR03','0','Expense','K2GVA21','K2GVA2','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1966, 'SKR03','2','Expense','2010','K2GVA21','Betriebsfremde Aufwendungen (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1967, 'SKR03','2','Expense','2020','K2GVA21','Periodenfremde Aufwendungen (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1968, 'SKR03','0','Expense','K2GVA3','K2GVA','Zinsen und ähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1969, 'SKR03','0','Expense','K2GVA31','K2GVA3','Zinsen und ähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1970, 'SKR03','2','Expense','2100','K2GVA31','Zinsen und ähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1971, 'SKR03','2','Expense','2103','2100','Steuerlich abzugsfähige andere Nebenleistungen zu steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1972, 'SKR03','2','Expense','2104','2100','Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1973, 'SKR03','2','Expense','2107','2100','Zinsaufwendungen § 233a AO betriebliche Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1974, 'SKR03','2','Expense','2108','2100','Zinsaufwendungen §§ 233a bis 237 AO Personensteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1975, 'SKR03','2','Expense','2109','2100','Zinsaufwendungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1976, 'SKR03','2','Expense','2110','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1977, 'SKR03','2','Expense','2113','2100','Nicht abzugsfähige Schuldzinsen gemäß § 4 Abs. 4a EStG (Hinzurechnungsbetrag)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1978, 'SKR03','2','Expense','2115','2100','Zinsen und ähnliche Aufwendungen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1979, 'SKR03','2','Expense','2116','2100','Zinsen und ähnliche Aufwendungen an verbundene Unternehmen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1980, 'SKR03','2','Expense','2118','2100','In Dauerschuldzinsen umqualifizierte Zinsen auf kurzfristige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1981, 'SKR03','2','Expense','2119','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1982, 'SKR03','2','Expense','2120','2100','Zinsaufwendungen für langfristige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1983, 'SKR03','2','Expense','2125','2100','Zinsaufwendungen für Gebäude die zum Betriebsvermögen gehören',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1984, 'SKR03','2','Expense','2126','2100','Zinsen zur Finanzierung des Anlagevermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1985, 'SKR03','2','Expense','2127','2100','Renten und dauernde Lasten aus Gründung / Erwerb §8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1986, 'SKR03','2','Expense','2128','2100','Zinsaufwendungen an Mitunternehmer für die Hingabe von Kapital § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1987, 'SKR03','2','Expense','2129','2100','Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1988, 'SKR03','2','Expense','2130','2100','Diskontaufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1989, 'SKR03','2','Expense','2139','2100','Diskontaufwendungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1990, 'SKR03','2','Expense','2140','2100','Zinsähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1991, 'SKR03','2','Expense','2149','2100','Zinsähnliche Aufwendungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1992, 'SKR03','0','Expense','K2GVA32','K2GVA3','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1993, 'SKR03','2','Expense','2150','K2GVA32','Aufwendungen aus Kursdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1994, 'SKR03','2','Expense','2166','K2GVA32','Aufwendungen Bewertung Finanzmittelfonds',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1995, 'SKR03','2','Expense','2170','K2GVA32','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1996, 'SKR03','2','Expense','2171','K2GVA32','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1997, 'SKR03','2','Expense','2175','K2GVA32','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1998, 'SKR03','2','Expense','2176','K2GVA33','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1999, 'SKR03','0','Expense','K2GVA4','K2GVA','Steueraufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2000, 'SKR03','0','Expense','K2GVA41','K2GVA4','Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2001, 'SKR03','2','Expense','2200','K2GVA41','Körperschaftsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2002, 'SKR03','2','Expense','2203','K2GVA41','Körperschaftsteuer für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2003, 'SKR03','2','Expense','2204','K2GVA41','Körperschaftsteuererstattungen für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2004, 'SKR03','2','Expense','2208','K2GVA41','Solidaritätszuschlag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2005, 'SKR03','2','Expense','2209','K2GVA41','Solidaritätszuschlag für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2006, 'SKR03','2','Expense','2210','K2GVA41','Solidaritätszuschlag für Vorjahre für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2007, 'SKR03','2','Expense','2212','K2GVA41','Kapitalertragsteuer 20%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2008, 'SKR03','2','Expense','2213','K2GVA41','Kapitalertragsteuer 25%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2009, 'SKR03','2','Expense','2214','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 20%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2010, 'SKR03','2','Expense','2215','K2GVA41','Zinsabschlagsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2011, 'SKR03','2','Expense','2216','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2012, 'SKR03','2','Expense','2218','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Zinsabschlagsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2013, 'SKR03','2','Expense','2219','K2GVA41','Ausländische Quellensteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2014, 'SKR03','2','Expense','2280','K2GVA41','Steuernachzahlungen Vorjahre für Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2015, 'SKR03','2','Expense','2282','K2GVA41','Steuererstattungen Vorjahre für Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2016, 'SKR03','2','Expense','2284','K2GVA41','Erträge aus der Auflösung von Rückstellungen für Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2017, 'SKR03','0','Expense','K2GVA42','K2GVA4','Sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2018, 'SKR03','2','Expense','2285','K2GVA41','Steuernachzahlungen Vorjahre für sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2019, 'SKR03','2','Expense','2287','K2GVA41','Steuererstattungen Vorjahre für sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2020, 'SKR03','2','Expense','2289','K2GVA41','Erträge aus der Auflösung von Rückstellungen für sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2021, 'SKR03','0','Expense','K2GVA5','K2GVA','Sonstige Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2022, 'SKR03','0','Expense','K2GVA51','K2GVA5','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2023, 'SKR03','2','Expense','2300','K2GVA51','Sonstige Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2024, 'SKR03','2','Expense','2307','2300','Sonstige Aufwendungen betriebsfremde und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2025, 'SKR03','2','Expense','2309','2300','Sonstige Aufwendungen unregelmässig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2026, 'SKR03','2','Expense','2310','2300','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2027, 'SKR03','2','Expense','2311','2300','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2028, 'SKR03','2','Expense','2312','2300','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2029, 'SKR03','2','Expense','2313','2300','Anlagenabgänge Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2030, 'SKR03','0','Expense','K2GVA52','K2GVA5','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2031, 'SKR03','2','Expense','2315','K2GVA52','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2032, 'SKR03','2','Expense','2316','K2GVA52','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2033, 'SKR03','2','Expense','2317','K2GVA52','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2034, 'SKR03','2','Expense','2318','K2GVA52','Anlagenabgänge Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2035, 'SKR03','2','Expense','2320','K2GVA51','Verluste aus dem Abgang von Gegenständen des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2036, 'SKR03','2','Expense','2323','K2GVA51','Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2037, 'SKR03','2','Expense','2325','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2038, 'SKR03','2','Expense','2326','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2039, 'SKR03','2','Expense','2327','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens nach §4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2040, 'SKR03','2','Expense','2328','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) nach §4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2041, 'SKR03','2','Expense','2340','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2042, 'SKR03','2','Expense','2341','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2043, 'SKR03','2','Expense','2342','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2044, 'SKR03','2','Expense','2345','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2045, 'SKR03','2','Expense','2346','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (§ 52 Abs. 16 EStG)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2046, 'SKR03','2','Expense','2348','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2047, 'SKR03','2','Expense','2349','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2048, 'SKR03','2','Expense','2350','K2GVA51','Grundstücksaufwendungen neutral',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2049, 'SKR03','0','Expense','K2GVA53','K2GVA5','Sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2050, 'SKR03','2','Expense','2375','K2GVA53','Grundsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2051, 'SKR03','2','Expense','2380','K2GVA51','Zuwendungen Spenden steuerlich nicht abziehbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2052, 'SKR03','2','Expense','2381','K2GVA51','Zuwendungen Spenden für wissenschaftliche und kulturelle Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2053, 'SKR03','2','Expense','2382','K2GVA51','Zuwendungen Spenden für mildtätige Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2054, 'SKR03','2','Expense','2383','K2GVA51','Zuwendungen Spenden für kirchliche religiöse und gemeinnützige Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2055, 'SKR03','2','Expense','2384','K2GVA51','Zuwendungen Spenden an politische Parteien',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2056, 'SKR03','2','Expense','2385','K2GVA51','Nicht abziehbare Hälfte der Aufsichtsratsvergütungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2057, 'SKR03','2','Expense','2386','K2GVA51','Abziehbare Aufsichtsratsvergütung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2058, 'SKR03','2','Expense','2387','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 1-3 AO',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2059, 'SKR03','2','Expense','2388','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 4 AO',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2060, 'SKR03','2','Expense','2389','K2GVA51','Zuwendungen Spenden an Stiftungen für kirchliche religiöse und gemeinnützige Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2061, 'SKR03','2','Expense','2390','K2GVA51','Zuwendungen Spenden an Stiftungen für wissenschaftliche mildtätige kulturelle Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2062, 'SKR03','2','Expense','2400','K2GVA51','Forderungsverluste (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2063, 'SKR03','2','Expense','2401','2400','Forderungsverluste 7% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2064, 'SKR03','2','Expense','2402','2400','Forderungsverluste aus steuerfreien EG-Lieferungen (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2065, 'SKR03','2','Expense','2403','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 7% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2066, 'SKR03','2','Expense','2404','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 16% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2067, 'SKR03','2','Expense','2405','2400','Forderungsverluste 16% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2068, 'SKR03','2','Expense','2406','2400','Forderungsverluste 19% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2069, 'SKR03','2','Expense','2407','2400','Forderungsverluste 15% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2070, 'SKR03','2','Expense','2408','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 19% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2071, 'SKR03','2','Expense','2409','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 15% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2072, 'SKR03','0','Expense','K2GVA54','K2GVA5','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2073, 'SKR03','2','Expense','2430','K2GVA54','Forderungsverluste unüblich hoch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2074, 'SKR03','2','Expense','2450','K2GVA51','Einstellung in die Pauschalwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2075, 'SKR03','2','Expense','2451','K2GVA51','Einstellung in die Einzelwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2076, 'SKR03','0','Expense','K2GVA55','K2GVA5','Aufwendungen aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2077, 'SKR03','2','Expense','2490','K2GVA55','Aufwendungen aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2078, 'SKR03','0','Expense','K2GVA56','K2GVA5','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2079, 'SKR03','2','Expense','2492','K2GVA56','Abgeführte Gewinne auf Grund einer Gewinngemeinschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2080, 'SKR03','2','Expense','2493','K2GVA56','Abgeführte Gewinnanteile an stille Gesellschafter § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2081, 'SKR03','2','Expense','2494','K2GVA56','Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2082, 'SKR03','0','Expense','K2GVA57','K2GVA5','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2083, 'SKR03','2','Expense','2495','K2GVA57','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2084, 'SKR03','0','Expense','K2GVA58','K2GVA5','Einstellung in Gewinnrücklagen in die gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2085, 'SKR03','2','Expense','2496','K2GVA58','Einstellung in die gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2086, 'SKR03','0','Expense','K2GVA59','K2GVA5','Einstellung in Gewinnrücklagen in satzungsmäßige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2087, 'SKR03','2','Expense','2497','K2GVA59','Einstellungen in satzungsmäßige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2088, 'SKR03','0','Expense','K2GVA5a','K2GVA5','Einstellung in Gewinnrücklagen in die Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2089, 'SKR03','2','Expense','2498','K2GVA5a','Einstellung in die Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2090, 'SKR03','0','Expense','K2GVA5b','K2GVA5','Einstellung in Gewinnrücklagen in andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2091, 'SKR03','2','Expense','2499','K2GVA5b','Einstellung in andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2092, 'SKR03','0','Revenue','K2GVE1','K2GVE','Außerordentliche Erträge i. S. d. BiRiLiG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2093, 'SKR03','0','Revenue','K2GVE11','K2GVE1','Außerordentliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2094, 'SKR03','2','Revenue','2500','K2GVE11','Außerordentliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2095, 'SKR03','2','Revenue','2501','K2GVE11','Außerordentliche Erträge finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2096, 'SKR03','2','Revenue','2505','K2GVE11','Außerordentliche Erträge nicht finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2097, 'SKR03','0','Revenue','K2GVE2','K2GVE','Betriebsfremde und periodenfremde Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2098, 'SKR03','0','Revenue','K2GVE21','K2GVE2','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2099, 'SKR03','2','Revenue','2510','K2GVE21','Betriebsfremde Erträge (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2100, 'SKR03','2','Revenue','2520','K2GVE21','Periodenfremde Erträge (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2101, 'SKR03','0','Revenue','K2GVE3','K2GVE','Zinsertäge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2102, 'SKR03','0','Revenue','K2GVE31','K2GVE3','Erträge aus Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2103, 'SKR03','2','Revenue','2600','K2GVE31','Erträge aus Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2104, 'SKR03','2','Revenue','2615','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung 100% / 50% steuerfrei) (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2105, 'SKR03','2','Revenue','2616','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2106, 'SKR03','2','Revenue','2617','2600','Gewinne aus Anteilen an nicht steuerbefreiten inländischen Kapitalgesellschaften § 9 Nr. 2a GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2107, 'SKR03','2','Revenue','2618','2600','Gewinnanteile aus Mitunternehmerschaften § 9 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2108, 'SKR03','2','Revenue','2619','2600','Erträge aus Beteiligungen an verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2109, 'SKR03','0','Revenue','K2GVE32','K2GVE3','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2110, 'SKR03','2','Revenue','2620','K2GVA32','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2111, 'SKR03','2','Revenue','2625','2620','laufende Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2112, 'SKR03','2','Revenue','2626','2620','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2113, 'SKR03','2','Revenue','2649','2620','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2114, 'SKR03','0','Revenue','K2GVE33','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2115, 'SKR03','2','Revenue','2650','K2GVA33','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2116, 'SKR03','2','Revenue','2655','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2117, 'SKR03','2','Revenue','2656','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2118, 'SKR03','2','Revenue','2657','2650','Zinserträge § 233a AO',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2119, 'SKR03','2','Revenue','2658','2650','Zinserträge § 233a AO Sonderfall Anlage A KSt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2120, 'SKR03','2','Revenue','2659','2650','Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2121, 'SKR03','0','Revenue','K2GVE34','K2GVE3','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2122, 'SKR03','2','Revenue','2660','K2GVA34','Erträge aus Kursdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2123, 'SKR03','2','Revenue','2661','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2124, 'SKR03','2','Revenue','2662','K2GVA34','Realisierte Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2125, 'SKR03','2','Revenue','2663','K2GVA34','Produkt Rechnung Preisdifferenz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2126, 'SKR03','2','Revenue','2664','K2GVA34','Realisierte Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2127, 'SKR03','2','Revenue','2665','K2GVA34','Erträge a. Währungsumstellung auf Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2128, 'SKR03','2','Revenue','2666','K2GVA34','Erträge aus Bewertung Finanzmittelfonds',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2129, 'SKR03','2','Revenue','2667','K2GVA34','Bank Währungsverlust (Konto)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2130, 'SKR03','2','Revenue','2668','K2GVA34','Währungsdifferenz zum Kontenausgleich',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2131, 'SKR03','2','Revenue','2669','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2132, 'SKR03','0','Revenue','K2GVE35','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2133, 'SKR03','2','Revenue','2670','K2GVA35','Diskonterträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2134, 'SKR03','2','Revenue','2671','K2GVA35','Bank Bewertungsertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2135, 'SKR03','2','Revenue','2672','K2GVA35','Rundungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2136, 'SKR03','2','Revenue','2673','K2GVA35','Kassendifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2137, 'SKR03','2','Revenue','2679','K2GVA35','Diskonterträge verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2138, 'SKR03','2','Revenue','2680','K2GVA35','Zinsähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2139, 'SKR03','2','Revenue','2689','K2GVA35','Zinsähnliche Erträge aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2140, 'SKR03','0','Revenue','K2GVE4','K2GVE','Sonstige Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2141, 'SKR03','0','Revenue','K2GVE41','K2GVE4','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2142, 'SKR03','2','Revenue','2700','K2GVA41','Sonstige Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2143, 'SKR03','2','Revenue','2705','2700','Sonstige Erträge betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2144, 'SKR03','2','Revenue','2707','2700','Sonstige Erträge betriebsfremd und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2145, 'SKR03','2','Revenue','2709','2700','Sonstige Erträge unregelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2146, 'SKR03','2','Revenue','2710','2700','Erträge aus Zuschreibungen des Sachanlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2147, 'SKR03','2','Revenue','2711','2700','Erträge aus Zuschreibungen des immateriellen Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2148, 'SKR03','2','Revenue','2712','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2149, 'SKR03','2','Revenue','2713','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2150, 'SKR03','2','Revenue','2714','2700','Erträge aus Zuschreibungen des anderen Anlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2151, 'SKR03','2','Revenue','2715','2700','Erträge aus Zuschreibungen des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2152, 'SKR03','2','Revenue','2716','2700','Erträge aus Zuschreibungen des Umlaufvermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2153, 'SKR03','2','Revenue','2720','2700','Erträge aus dem Abgang von Gegenständen des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2154, 'SKR03','2','Revenue','2723','2700','Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2155, 'SKR03','2','Revenue','2725','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2156, 'SKR03','2','Revenue','2726','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2157, 'SKR03','2','Revenue','2730','2700','Erträge aus Herabsetzung der Pauschalwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2158, 'SKR03','2','Revenue','2731','2700','Erträge aus Herabsetzung der Einzelwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2159, 'SKR03','2','Revenue','2732','2700','Erträge aus abgeschriebenen Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2160, 'SKR03','2','Revenue','2733','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2161, 'SKR03','2','Revenue','2734','2700','Erträge aus der steuerlich niedrigeren Bewertung von Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2162, 'SKR03','2','Revenue','2735','2700','Erträge aus der Auflösung von Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2163, 'SKR03','2','Revenue','2736','2700','Erträge aus der steuerlich niedrigeren Bewertung von Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2164, 'SKR03','2','Revenue','2737','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (aus der Währungsumstellung auf den Euro)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2165, 'SKR03','2','Revenue','2738','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2166, 'SKR03','2','Revenue','2739','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2167, 'SKR03','2','Revenue','2740','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2168, 'SKR03','2','Revenue','2741','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2169, 'SKR03','2','Revenue','2742','2700','Versicherungsentschädigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2170, 'SKR03','2','Revenue','2743','2700','Investitionszuschüsse (steuerpflichtig)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2171, 'SKR03','2','Revenue','2744','2700','Investitionszulagen (steuerfrei)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2172, 'SKR03','0','Revenue','K2GVE42','K2GVE4','Erträge aus Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2173, 'SKR03','2','Revenue','2745','K2GVE42','Erträge aus Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2174, 'SKR03','2','Revenue','2746','K2GVE41','Steuerfreie Erträge aus der Auflösung von Sonderposten mit Rücklageanteil',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2175, 'SKR03','2','Revenue','2747','K2GVE41','Sonstige steuerfreie Betriebseinnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2176, 'SKR03','0','Revenue','2749','K2GVE41','Erstattungen Aufwendungsausgleichsgesetz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2177, 'SKR03','2','Revenue','2750','K2GVE41','Grundstückserträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2178, 'SKR03','0','Revenue','K2GVE43','K2GVE4','Erträge aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2179, 'SKR03','2','Revenue','2790','K2GVE43','Erträge aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2180, 'SKR03','0','Revenue','K2GVE44','K2GVE4','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2181, 'SKR03','2','Revenue','2792','K2GVE44','Erhaltene Gewinne auf Grund einer Gewinngemeinschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2182, 'SKR03','2','Revenue','2794','K2GVE44','Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2183, 'SKR03','0','Revenue','K2GVE45','K2GVE4','Entnahmen aus der Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2184, 'SKR03','2','Revenue','2795','K2GVE45','Entnahmen aus der Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2185, 'SKR03','0','Revenue','K2GVE46','K2GVE4','Entnahmen aus Gewinnrücklagen aus der gesetzlichen Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2186, 'SKR03','2','Revenue','2796','K2GVE46','Entnahmen aus der gesetzlichen Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2187, 'SKR03','0','Revenue','K2GVE47','K2GVE4','Entnahmen aus Gewinnrücklagen aus satzungsmäßigen Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2188, 'SKR03','2','Revenue','2797','K2GVE47','Entnahmen aus satzungsmäßigen Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2189, 'SKR03','0','Revenue','K2GVE48','K2GVE4','Entnahmen aus Gewinnrücklagen aus der Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2190, 'SKR03','2','Revenue','2798','K2GVE48','Entnahmen aus der Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2191, 'SKR03','0','Revenue','K2GVE49','K2GVE4','Entnahmen aus Gewinnrücklagen aus anderen Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2192, 'SKR03','2','Revenue','2799','K2GVE49','Entnahmen aus anderen Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2193, 'SKR03','0','Revenue','K2GVE4a','K2GVE4','Gewinnvortrag oder Verlustvortrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2194, 'SKR03','2','Revenue','2860','K2GVE4a','Gewinnvortrag nach Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2195, 'SKR03','2','Revenue','2868','K2GVE4a','Verlustvortrag nach Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2196, 'SKR03','0','Revenue','K2GVE4b','K2GVE4','Vortrag auf neue Rechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2197, 'SKR03','2','Revenue','2869','K2GVE4b','Vortrag auf neue Rechnung (GuV)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2198, 'SKR03','0','Revenue','K2GVE4c','K2GVE4','Ausschüttung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2199, 'SKR03','2','Revenue','2870','K2GVE4c','Vorabausschüttung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2200, 'SKR03','0','Revenue','K2GVE5','K2GVE','Verrechnete kalkulatorische Kosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2201, 'SKR03','0','Revenue','K2GVE51','K2GVE5','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2202, 'SKR03','2','Revenue','2890','K2GVE51','Verrechneter kalkulatorischer Unternehmerlohn',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2203, 'SKR03','2','Revenue','2891','K2GVE51','Verrechnete kalkulatorische Miete und Pacht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2204, 'SKR03','2','Revenue','2892','K2GVE51','Verrechnete kalkulatorische Zinsen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2205, 'SKR03','2','Revenue','2893','K2GVE51','Verrechnete kalkulatorische Abschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2206, 'SKR03','2','Revenue','2894','K2GVE51','Verrechnete kalkulatorische Wagnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2207, 'SKR03','2','Revenue','2895','K2GVE51','Verrechneter kalkulatorische Lohn für unentgeltliche Mitarbeiter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2208, 'SKR03','0','Revenue','K2GVE52','K2GVE5','Sonstige betriebliche Erträge oder sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2209, 'SKR03','2','Revenue','2990','K2GVE52','Aufwendungen/Erträge aus Umrechnungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2210, 'SKR03','0','Expense','K3GVA1','K3GVA','Materialaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2211, 'SKR03','0','Expense','K3GVA11','K3GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2212, 'SKR03','3','Expense','3000','K3GVA11','Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2213, 'SKR03','3','Expense','3090','K3GVA11','Energiestoffe (Fertigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2214, 'SKR03','0','Expense','K3GVA12','K3GVA1','Aufwendungen für bezogene Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2215, 'SKR03','3','Expense','3100','K3GVA12','Fremdleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2216, 'SKR03','0','Expense','K3GVA2','K3GVA','Umsätze für die als Leistungsemfänger die Steuer nach § 13b Abs. 2 UStG geschuldet wird',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2217, 'SKR03','0','Expense','K3GVA21','K3GVA2','Aufwendungen für bezogene Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2218, 'SKR03','0','Expense','3106','K3GVA12','Fremdleistungen 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2219, 'SKR03','3','Expense','3110','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2220, 'SKR03','3','Expense','3115','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2221, 'SKR03','3','Expense','3120','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2222, 'SKR03','3','Expense','3121','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2223, 'SKR03','3','Expense','3122','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2224, 'SKR03','3','Expense','3125','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2225, 'SKR03','3','Expense','3126','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2226, 'SKR03','3','Expense','3127','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2227, 'SKR03','3','Expense','3130','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2228, 'SKR03','3','Expense','3135','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2229, 'SKR03','3','Expense','3140','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2230, 'SKR03','3','Expense','3141','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2231, 'SKR03','3','Expense','3142','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2232, 'SKR03','3','Expense','3145','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2233, 'SKR03','3','Expense','3146','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2234, 'SKR03','3','Expense','3147','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2235, 'SKR03','3','Expense','3150','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2236, 'SKR03','3','Expense','3151','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2237, 'SKR03','3','Expense','3152','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2238, 'SKR03','3','Expense','3153','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2239, 'SKR03','0','Expense','K3GVA22','K3GVA2','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2240, 'SKR03','3','Expense','3200','K3GVA22','Wareneingang',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2241, 'SKR03','3','Expense','3300','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2242, 'SKR03','3','Expense','3301','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2243, 'SKR03','3','Expense','3302','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2244, 'SKR03','3','Expense','3303','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2245, 'SKR03','3','Expense','3304','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2246, 'SKR03','3','Expense','3305','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2247, 'SKR03','3','Expense','3306','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2248, 'SKR03','3','Expense','3307','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2249, 'SKR03','3','Expense','3308','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2250, 'SKR03','3','Expense','3309','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2251, 'SKR03','3','Expense','3340','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2252, 'SKR03','3','Expense','3341','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2253, 'SKR03','3','Expense','3342','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2254, 'SKR03','3','Expense','3343','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2255, 'SKR03','3','Expense','3344','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2256, 'SKR03','3','Expense','3345','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2257, 'SKR03','3','Expense','3346','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2258, 'SKR03','3','Expense','3347','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2259, 'SKR03','3','Expense','3348','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2260, 'SKR03','3','Expense','3349','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2261, 'SKR03','3','Expense','3400','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2262, 'SKR03','3','Expense','3401','3200','Produkt Ausgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2263, 'SKR03','3','Expense','3402','3200','Produkt Vertriebsausgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2264, 'SKR03','3','Expense','3403','3200','Konto Kasse Aufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2265, 'SKR03','3','Expense','3404','3200','Einstandskosten Verrechnungskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2266, 'SKR03','3','Expense','3405','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2267, 'SKR03','3','Expense','3406','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2268, 'SKR03','3','Expense','3407','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2269, 'SKR03','3','Expense','3408','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2270, 'SKR03','3','Expense','3409','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2271, 'SKR03','3','Expense','3420','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2272, 'SKR03','3','Expense','3421','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2273, 'SKR03','3','Expense','3422','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2274, 'SKR03','3','Expense','3423','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2275, 'SKR03','3','Expense','3424','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2276, 'SKR03','3','Expense','3425','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2277, 'SKR03','3','Expense','3426','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2278, 'SKR03','3','Expense','3427','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2279, 'SKR03','3','Expense','3428','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2280, 'SKR03','3','Expense','3429','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2281, 'SKR03','3','Expense','3430','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2282, 'SKR03','3','Expense','3433','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2283, 'SKR03','3','Expense','3434','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2284, 'SKR03','3','Expense','3435','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2285, 'SKR03','3','Expense','3440','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2286, 'SKR03','3','Expense','3441','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2287, 'SKR03','3','Expense','3500','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2288, 'SKR03','3','Expense','3501','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2289, 'SKR03','3','Expense','3502','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2290, 'SKR03','3','Expense','3503','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2291, 'SKR03','3','Expense','3504','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2292, 'SKR03','3','Expense','3505','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2293, 'SKR03','3','Expense','3506','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2294, 'SKR03','3','Expense','3507','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2295, 'SKR03','3','Expense','3508','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2296, 'SKR03','3','Expense','3509','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2297, 'SKR03','3','Expense','3530','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2298, 'SKR03','3','Expense','3531','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2299, 'SKR03','3','Expense','3532','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2300, 'SKR03','3','Expense','3533','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2301, 'SKR03','3','Expense','3534','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2302, 'SKR03','3','Expense','3540','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2303, 'SKR03','3','Expense','3541','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2304, 'SKR03','3','Expense','3542','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2305, 'SKR03','3','Expense','3543','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2306, 'SKR03','3','Expense','3544','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2307, 'SKR03','3','Expense','3545','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2308, 'SKR03','3','Expense','3546','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2309, 'SKR03','3','Expense','3547','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2310, 'SKR03','3','Expense','3548','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2311, 'SKR03','3','Expense','3549','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2312, 'SKR03','3','Expense','3550','3200','steuerfreier innergemeinschaftlicher Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2313, 'SKR03','3','Expense','3551','3200','Wareneingang im Drittland steuerbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2314, 'SKR03','3','Expense','3559','3200','Steuerfreier Einfuhren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2315, 'SKR03','3','Expense','3558','3200','Wareneingang I.a. EG-Land steuerbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2316, 'SKR03','3','Expense','3560','3200','waren aus einem Umsatzsteuerlager § 13a UStG 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2317, 'SKR03','3','Expense','3565','3200','waren aus einem Umsatzsteuerlager § 13a UStG 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2318, 'SKR03','3','Expense','3566','3200','waren aus einem Umsatzsteuerlager § 13a UStG 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2319, 'SKR03','3','Expense','3600','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2320, 'SKR03','3','Expense','3601','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2321, 'SKR03','3','Expense','3602','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2322, 'SKR03','3','Expense','3603','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2323, 'SKR03','3','Expense','3604','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2324, 'SKR03','3','Expense','3605','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2325, 'SKR03','3','Expense','3606','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2326, 'SKR03','3','Expense','3607','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2327, 'SKR03','3','Expense','3608','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2328, 'SKR03','3','Expense','3609','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2329, 'SKR03','3','Expense','3610','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2330, 'SKR03','3','Expense','3611','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2331, 'SKR03','3','Expense','3612','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2332, 'SKR03','3','Expense','3613','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2333, 'SKR03','3','Expense','3614','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2334, 'SKR03','3','Expense','3615','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2335, 'SKR03','3','Expense','3616','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2336, 'SKR03','3','Expense','3617','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2337, 'SKR03','3','Expense','3618','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2338, 'SKR03','3','Expense','3619','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2339, 'SKR03','3','Expense','3650','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2340, 'SKR03','3','Expense','3651','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2341, 'SKR03','3','Expense','3652','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2342, 'SKR03','3','Expense','3653','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2343, 'SKR03','3','Expense','3654','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2344, 'SKR03','3','Expense','3655','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2345, 'SKR03','3','Expense','3656','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2346, 'SKR03','3','Expense','3657','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2347, 'SKR03','3','Expense','3658','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2348, 'SKR03','3','Expense','3659','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2349, 'SKR03','3','Expense','3660','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2350, 'SKR03','3','Expense','3661','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2351, 'SKR03','3','Expense','3662','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2352, 'SKR03','3','Expense','3663','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2353, 'SKR03','3','Expense','3664','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2354, 'SKR03','3','Expense','3665','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2355, 'SKR03','3','Expense','3666','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2356, 'SKR03','3','Expense','3667','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2357, 'SKR03','3','Expense','3668','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2358, 'SKR03','3','Expense','3669','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2359, 'SKR03','3','Expense','3700','3200','Nachlässe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2360, 'SKR03','3','Expense','3710','3200','Nachlässe 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2361, 'SKR03','3','Expense','3711','3200','Nachlässe 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2362, 'SKR03','3','Expense','3720','3200','Nachlässe 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2363, 'SKR03','3','Expense','3721','3200','Nachlässe 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2364, 'SKR03','3','Expense','3722','3200','Nachlässe 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2365, 'SKR03','3','Expense','3723','3200','Nachlässe 15% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2366, 'SKR03','3','Expense','3724','3200','Nachlässe aus innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2367, 'SKR03','3','Expense','3725','3200','Nachlässe aus innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2368, 'SKR03','3','Expense','3726','3200','Nachlässe aus innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2369, 'SKR03','3','Expense','3727','3200','Nachlässe aus innergemeinschaftlichem Erwerb 15% Vorsteuer und 15% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2370, 'SKR03','0','Revenue','K3GVE1','K3GVE','Wareneingang',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2371, 'SKR03','0','Revenue','K3GVE11','K3GVE1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2372, 'SKR03','3','Revenue','3730','K3GVE11','Erhaltene Skonti',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2373, 'SKR03','3','Revenue','3731','3730','Erhaltene Skonti 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2374, 'SKR03','3','Revenue','3735','3730','Erhaltene Skonti 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2375, 'SKR03','3','Revenue','3736','3730','Erhaltene Skonti 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2376, 'SKR03','3','Revenue','3745','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2377, 'SKR03','3','Revenue','3746','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2378, 'SKR03','3','Revenue','3748','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2379, 'SKR03','3','Revenue','3749','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2380, 'SKR03','3','Revenue','3750','3769','Erhaltene Boni 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2381, 'SKR03','3','Revenue','3751','3769','Erhaltene Boni 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2382, 'SKR03','3','Revenue','3760','3769','Erhaltene Boni 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2383, 'SKR03','3','Revenue','3761','3769','Erhaltene Boni 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2384, 'SKR03','3','Revenue','3764','3769','Erhaltene Boni 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2385, 'SKR03','3','Revenue','3765','3769','Erhaltene Boni 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2386, 'SKR03','3','Revenue','3769','K3GVE11','Erhaltene Boni',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2387, 'SKR03','3','Revenue','3770','K3GVE11','Erhaltene Rabatte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2388, 'SKR03','3','Revenue','3780','3770','Erhaltene Rabatte 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2389, 'SKR03','3','Revenue','3781','3770','Erhaltene Rabatte 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2390, 'SKR03','3','Revenue','3790','3770','Erhaltene Rabatte 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2391, 'SKR03','3','Revenue','3791','3770','Erhaltene Rabatte 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2392, 'SKR03','3','Revenue','3794','3770','Erhaltene Rabatte 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2393, 'SKR03','3','Revenue','3795','3770','Erhaltene Rabatte 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2394, 'SKR03','3','Expense','3800','3200','Bezugsnebenkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2395, 'SKR03','3','Expense','3830','3200','Leergut',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2396, 'SKR03','3','Expense','3850','3200','Zölle und Einfuhrabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2397, 'SKR03','0','XXXXX','BV3','BV','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2398, 'SKR03','0','XXXXX','BV31','BV3','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2399, 'SKR03','3','XXXXX','3960','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2400, 'SKR03','3','XXXXX','3961','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2401, 'SKR03','3','XXXXX','3962','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2402, 'SKR03','3','XXXXX','3963','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2403, 'SKR03','3','XXXXX','3964','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2404, 'SKR03','3','XXXXX','3965','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2405, 'SKR03','3','XXXXX','3966','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2406, 'SKR03','3','XXXXX','3967','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2407, 'SKR03','3','XXXXX','3968','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2408, 'SKR03','3','XXXXX','3969','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2409, 'SKR03','0','Asset','K3BA1','K3BA','Bestand an Vorräte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2410, 'SKR03','0','Asset','K3BA11','K3BA1','Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2411, 'SKR03','3','Asset','3970','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2412, 'SKR03','3','Asset','3971','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2413, 'SKR03','3','Asset','3972','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2414, 'SKR03','3','Asset','3973','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2415, 'SKR03','3','Asset','3974','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2416, 'SKR03','3','Asset','3975','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2417, 'SKR03','3','Asset','3976','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2418, 'SKR03','3','Asset','3977','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2419, 'SKR03','3','Asset','3978','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2420, 'SKR03','3','Asset','3979','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2421, 'SKR03','0','Asset','K3BA12','K3BA1','Fertige Erzeugnisse und Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2422, 'SKR03','3','Asset','3980','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2423, 'SKR03','3','Asset','3981','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2424, 'SKR03','3','Asset','3982','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2425, 'SKR03','3','Asset','3983','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2426, 'SKR03','3','Asset','3984','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2427, 'SKR03','3','Asset','3985','K3BA12','Lager Bestandswert Korrektur',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2428, 'SKR03','3','Expense','3986','K3BA12','Lager Differenzkorrektur Gewinn / Verlust',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2429, 'SKR03','3','Expense','3987','K3BA12','Lager Differenzkorrektur Marktwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2430, 'SKR03','3','Asset','3988','K3BA12','Lager Bestand Zwischenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2431, 'SKR03','3','Asset','3989','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2432, 'SKR03','0','XXXXX','VSK3','VSK','Verrechnete Stoffkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2433, 'SKR03','0','XXXXX','VSK31','VSK3','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2434, 'SKR03','3','Expense','3990','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2435, 'SKR03','3','XXXXX','3991','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2436, 'SKR03','3','XXXXX','3992','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2437, 'SKR03','3','XXXXX','3993','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2438, 'SKR03','3','XXXXX','3994','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2439, 'SKR03','3','XXXXX','3995','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2440, 'SKR03','3','XXXXX','3996','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2441, 'SKR03','3','XXXXX','3997','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2442, 'SKR03','3','XXXXX','3998','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2443, 'SKR03','3','XXXXX','3999','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2444, 'SKR03','0','Expense','K4GVA1','K4GVA','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2445, 'SKR03','0','Expense','K4GVA11','K4GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2446, 'SKR03','4','Expense','4000','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2447, 'SKR03','4','Expense','4001','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2448, 'SKR03','4','Expense','4002','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2449, 'SKR03','4','Expense','4003','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2450, 'SKR03','4','Expense','4004','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2451, 'SKR03','4','Expense','4005','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2452, 'SKR03','4','Expense','4006','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2453, 'SKR03','4','Expense','4007','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2454, 'SKR03','4','Expense','4008','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2455, 'SKR03','4','Expense','4009','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2456, 'SKR03','4','Expense','4010','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2457, 'SKR03','4','Expense','4011','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2458, 'SKR03','4','Expense','4012','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2459, 'SKR03','4','Expense','4013','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2460, 'SKR03','4','Expense','4014','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2461, 'SKR03','4','Expense','4015','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2462, 'SKR03','4','Expense','4016','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2463, 'SKR03','4','Expense','4017','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2464, 'SKR03','4','Expense','4018','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2465, 'SKR03','4','Expense','4019','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2466, 'SKR03','4','Expense','4020','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2467, 'SKR03','4','Expense','4021','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2468, 'SKR03','4','Expense','4022','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2469, 'SKR03','4','Expense','4023','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2470, 'SKR03','4','Expense','4024','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2471, 'SKR03','4','Expense','4025','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2472, 'SKR03','4','Expense','4026','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2473, 'SKR03','4','Expense','4027','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2474, 'SKR03','4','Expense','4028','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2475, 'SKR03','4','Expense','4029','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2476, 'SKR03','4','Expense','4030','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2477, 'SKR03','4','Expense','4031','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2478, 'SKR03','4','Expense','4032','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2479, 'SKR03','4','Expense','4033','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2480, 'SKR03','4','Expense','4034','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2481, 'SKR03','4','Expense','4035','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2482, 'SKR03','4','Expense','4036','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2483, 'SKR03','4','Expense','4037','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2484, 'SKR03','4','Expense','4038','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2485, 'SKR03','4','Expense','4039','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2486, 'SKR03','4','Expense','4040','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2487, 'SKR03','4','Expense','4041','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2488, 'SKR03','4','Expense','4042','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2489, 'SKR03','4','Expense','4043','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2490, 'SKR03','4','Expense','4044','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2491, 'SKR03','4','Expense','4045','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2492, 'SKR03','4','Expense','4046','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2493, 'SKR03','4','Expense','4047','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2494, 'SKR03','4','Expense','4048','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2495, 'SKR03','4','Expense','4049','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2496, 'SKR03','4','Expense','4050','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2497, 'SKR03','4','Expense','4051','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2498, 'SKR03','4','Expense','4052','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2499, 'SKR03','4','Expense','4053','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2500, 'SKR03','4','Expense','4054','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2501, 'SKR03','4','Expense','4055','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2502, 'SKR03','4','Expense','4056','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2503, 'SKR03','4','Expense','4057','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2504, 'SKR03','4','Expense','4058','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2505, 'SKR03','4','Expense','4059','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2506, 'SKR03','4','Expense','4060','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2507, 'SKR03','4','Expense','4061','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2508, 'SKR03','4','Expense','4062','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2509, 'SKR03','4','Expense','4063','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2510, 'SKR03','4','Expense','4064','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2511, 'SKR03','4','Expense','4065','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2512, 'SKR03','4','Expense','4066','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2513, 'SKR03','4','Expense','4067','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2514, 'SKR03','4','Expense','4068','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2515, 'SKR03','4','Expense','4069','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2516, 'SKR03','4','Expense','4070','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2517, 'SKR03','4','Expense','4071','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2518, 'SKR03','4','Expense','4072','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2519, 'SKR03','4','Expense','4073','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2520, 'SKR03','4','Expense','4074','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2521, 'SKR03','4','Expense','4075','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2522, 'SKR03','4','Expense','4076','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2523, 'SKR03','4','Expense','4077','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2524, 'SKR03','4','Expense','4078','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2525, 'SKR03','4','Expense','4079','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2526, 'SKR03','4','Expense','4080','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2527, 'SKR03','4','Expense','4081','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2528, 'SKR03','4','Expense','4082','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2529, 'SKR03','4','Expense','4083','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2530, 'SKR03','4','Expense','4084','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2531, 'SKR03','4','Expense','4085','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2532, 'SKR03','4','Expense','4086','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2533, 'SKR03','4','Expense','4087','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2534, 'SKR03','4','Expense','4088','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2535, 'SKR03','4','Expense','4089','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2536, 'SKR03','4','Expense','4090','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2537, 'SKR03','4','Expense','4091','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2538, 'SKR03','4','Expense','4092','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2539, 'SKR03','4','Expense','4093','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2540, 'SKR03','4','Expense','4094','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2541, 'SKR03','4','Expense','4095','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2542, 'SKR03','4','Expense','4096','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2543, 'SKR03','4','Expense','4097','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2544, 'SKR03','4','Expense','4098','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2545, 'SKR03','4','Expense','4099','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2546, 'SKR03','0','Expense','K4GVA2','K4GVA','Personalaufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2547, 'SKR03','0','Expense','K4GVA21','K4GVA2','Löhne und Gehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2548, 'SKR03','4','Expense','4100','K4GVA21','Löhne und Gehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2549, 'SKR03','4','Expense','4110','K4GVA21','Löhne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2550, 'SKR03','4','Expense','4120','K4GVA21','Gehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2551, 'SKR03','4','Expense','4124','K4GVA21','Geschäftsführergehälter GmbH-Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2552, 'SKR03','4','Expense','4125','K4GVA21','Ehegattengehalt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2553, 'SKR03','4','Expense','4126','K4GVA21','Tantiemen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2554, 'SKR03','4','Expense','4127','K4GVA21','Geschäftsführergehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2555, 'SKR03','4','Expense','4128','K4GVA21','Vergütungen an angestellte Mitunternehmer §15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2556, 'SKR03','0','Expense','K4GVA22','K4GVA2','Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2557, 'SKR03','4','Expense','4130','K4GVA22','Gesetzliche Soziale Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2558, 'SKR03','4','Expense','4137','K4GVA22','Gesetzliche soziale Aufwendungen für Mitunternehmer §15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2559, 'SKR03','4','Expense','4138','K4GVA22','Beiträge zur Berufsgenossenschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2560, 'SKR03','0','Expense','K4GVA23','K4GVA2','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2561, 'SKR03','4','Expense','4139','K4GVA23','Ausgleichsabgabe i. S. d. Schwerbehindertengesetz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2562, 'SKR03','4','Expense','4140','K4GVA22','Freiwillige soziale Aufwendungen lohnsteuerfrei',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2563, 'SKR03','4','Expense','4145','K4GVA21','Freiwillige soziale Aufwendungen lohnsteuerpflichtig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2564, 'SKR03','4','Expense','4149','K4GVA21','Pauschale Steuer auf sonstige Bezüge (z.B. Fahrkostenzuschüsse)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2565, 'SKR03','4','Expense','4150','K4GVA21','Krankengeldzuschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2566, 'SKR03','4','Expense','4155','K4GVA21','Zuschüsse der Agenturen für Arbeit (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2567, 'SKR03','4','Expense','4160','K4GVA22','Versorgungskassen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2568, 'SKR03','4','Expense','4165','K4GVA22','Aufwendungen für Altersversorgung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2569, 'SKR03','4','Expense','4167','K4GVA22','Pauschale Steuer auf sonstige Bezüge (z.B. Direktversicherungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2570, 'SKR03','4','Expense','4168','K4GVA22','Aufwendungen für Altersversorgung für Mitunternehmer §15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2571, 'SKR03','4','Expense','4169','K4GVA22','Aufwendungen für Unterstützung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2572, 'SKR03','4','Expense','4170','K4GVA21','Vermögenswirksame Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2573, 'SKR03','4','Expense','4175','K4GVA21','Fahrtkostenerstattung Wohnung/Arbeitsstätte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2574, 'SKR03','4','Expense','4180','K4GVA21','Bedienungsgelder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2575, 'SKR03','4','Expense','4190','K4GVA21','Aushilfslöhne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2576, 'SKR03','4','Expense','4199','K4GVA21','Pauschale Steuer für Aushilfen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2577, 'SKR03','0','Expense','K4GVA3','K4GVA','Sonstige betriebliche Aufwendungen und Abschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2578, 'SKR03','0','Expense','K4GVA31','K4GVA3','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2579, 'SKR03','4','Expense','4200','K4GVA31','Raumkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2580, 'SKR03','4','Expense','4210','K4GVA31','Miete',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2581, 'SKR03','4','Expense','4218','K4GVA31','Gewerbesteuerlich zu berücksichtigende Miete §8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2582, 'SKR03','4','Expense','4219','K4GVA31','Vergütung Mitunternehmer für die mieteweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2583, 'SKR03','4','Expense','4220','K4GVA31','Pacht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2584, 'SKR03','4','Expense','4228','K4GVA31','Gewerbesteuerlich zu berücksichtigende Pacht §8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2585, 'SKR03','4','Expense','4229','K4GVA31','Vergütung an Mitunternehmer für die pachtweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2586, 'SKR03','4','Expense','4230','K4GVA31','Heizung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2587, 'SKR03','4','Expense','4240','K4GVA31','Gas Strom Wasser',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2588, 'SKR03','4','Expense','4250','K4GVA31','Reinigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2589, 'SKR03','4','Expense','4260','K4GVA31','Instandhaltung betrieblicher Räume',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2590, 'SKR03','4','Expense','4270','K4GVA31','Abgaben für betrieblich genutzten Grundbesitz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2591, 'SKR03','4','Expense','4280','K4GVA31','Sonstige Raumkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2592, 'SKR03','4','Expense','4288','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2593, 'SKR03','4','Expense','4289','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2594, 'SKR03','4','Expense','4290','K4GVA31','Grundstücksaufwendungen betrieblich',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2595, 'SKR03','4','Expense','4300','K4GVA31','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2596, 'SKR03','4','Expense','4301','K4GVA31','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2597, 'SKR03','4','Expense','4305','K4GVA31','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2598, 'SKR03','4','Expense','4306','K4GVA31','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2599, 'SKR03','0','Expense','K4GVA32','K4GVA3','Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2600, 'SKR03','4','Expense','4320','K4GVA32','Gewerbesteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2601, 'SKR03','0','Expense','K4GVA33','K4GVA3','Sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2602, 'SKR03','4','Expense','4340','K4GVA33','Sonstige Betriebssteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2603, 'SKR03','4','Expense','4350','K4GVA33','Verbrauchsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2604, 'SKR03','4','Expense','4355','K4GVA33','ökosteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2605, 'SKR03','4','Expense','4360','K4GVA31','Versicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2606, 'SKR03','4','Expense','4366','K4GVA31','Versicherungen für Gebäude',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2607, 'SKR03','4','Expense','4370','K4GVA31','Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2608, 'SKR03','4','Expense','4380','K4GVA31','Beiträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2609, 'SKR03','4','Expense','4390','K4GVA31','Sonstige Abgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2610, 'SKR03','4','Expense','4396','K4GVA31','Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2611, 'SKR03','4','Expense','4397','K4GVA31','Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2612, 'SKR03','4','Expense','4400','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2613, 'SKR03','4','Expense','4401','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2614, 'SKR03','4','Expense','4402','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2615, 'SKR03','4','Expense','4403','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2616, 'SKR03','4','Expense','4404','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2617, 'SKR03','4','Expense','4405','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2618, 'SKR03','4','Expense','4406','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2619, 'SKR03','4','Expense','4407','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2620, 'SKR03','4','Expense','4408','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2621, 'SKR03','4','Expense','4409','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2622, 'SKR03','4','Expense','4410','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2623, 'SKR03','4','Expense','4411','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2624, 'SKR03','4','Expense','4412','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2625, 'SKR03','4','Expense','4413','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2626, 'SKR03','4','Expense','4414','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2627, 'SKR03','4','Expense','4415','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2628, 'SKR03','4','Expense','4416','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2629, 'SKR03','4','Expense','4417','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2630, 'SKR03','4','Expense','4418','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2631, 'SKR03','4','Expense','4419','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2632, 'SKR03','4','Expense','4420','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2633, 'SKR03','4','Expense','4421','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2634, 'SKR03','4','Expense','4422','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2635, 'SKR03','4','Expense','4423','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2636, 'SKR03','4','Expense','4424','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2637, 'SKR03','4','Expense','4425','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2638, 'SKR03','4','Expense','4426','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2639, 'SKR03','4','Expense','4427','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2640, 'SKR03','4','Expense','4428','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2641, 'SKR03','4','Expense','4429','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2642, 'SKR03','4','Expense','4430','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2643, 'SKR03','4','Expense','4431','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2644, 'SKR03','4','Expense','4432','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2645, 'SKR03','4','Expense','4433','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2646, 'SKR03','4','Expense','4434','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2647, 'SKR03','4','Expense','4435','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2648, 'SKR03','4','Expense','4436','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2649, 'SKR03','4','Expense','4437','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2650, 'SKR03','4','Expense','4438','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2651, 'SKR03','4','Expense','4439','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2652, 'SKR03','4','Expense','4440','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2653, 'SKR03','4','Expense','4441','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2654, 'SKR03','4','Expense','4442','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2655, 'SKR03','4','Expense','4443','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2656, 'SKR03','4','Expense','4444','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2657, 'SKR03','4','Expense','4445','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2658, 'SKR03','4','Expense','4446','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2659, 'SKR03','4','Expense','4447','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2660, 'SKR03','4','Expense','4448','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2661, 'SKR03','4','Expense','4449','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2662, 'SKR03','4','Expense','4450','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2663, 'SKR03','4','Expense','4451','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2664, 'SKR03','4','Expense','4452','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2665, 'SKR03','4','Expense','4453','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2666, 'SKR03','4','Expense','4454','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2667, 'SKR03','4','Expense','4455','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2668, 'SKR03','4','Expense','4456','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2669, 'SKR03','4','Expense','4457','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2670, 'SKR03','4','Expense','4458','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2671, 'SKR03','4','Expense','4459','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2672, 'SKR03','4','Expense','4460','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2673, 'SKR03','4','Expense','4461','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2674, 'SKR03','4','Expense','4462','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2675, 'SKR03','4','Expense','4463','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2676, 'SKR03','4','Expense','4464','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2677, 'SKR03','4','Expense','4465','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2678, 'SKR03','4','Expense','4466','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2679, 'SKR03','4','Expense','4467','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2680, 'SKR03','4','Expense','4468','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2681, 'SKR03','4','Expense','4469','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2682, 'SKR03','4','Expense','4470','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2683, 'SKR03','4','Expense','4471','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2684, 'SKR03','4','Expense','4472','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2685, 'SKR03','4','Expense','4473','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2686, 'SKR03','4','Expense','4474','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2687, 'SKR03','4','Expense','4475','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2688, 'SKR03','4','Expense','4476','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2689, 'SKR03','4','Expense','4477','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2690, 'SKR03','4','Expense','4478','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2691, 'SKR03','4','Expense','4479','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2692, 'SKR03','4','Expense','4480','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2693, 'SKR03','4','Expense','4481','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2694, 'SKR03','4','Expense','4482','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2695, 'SKR03','4','Expense','4483','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2696, 'SKR03','4','Expense','4484','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2697, 'SKR03','4','Expense','4485','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2698, 'SKR03','4','Expense','4486','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2699, 'SKR03','4','Expense','4487','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2700, 'SKR03','4','Expense','4488','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2701, 'SKR03','4','Expense','4489','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2702, 'SKR03','4','Expense','4490','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2703, 'SKR03','4','Expense','4491','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2704, 'SKR03','4','Expense','4492','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2705, 'SKR03','4','Expense','4493','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2706, 'SKR03','4','Expense','4494','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2707, 'SKR03','4','Expense','4495','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2708, 'SKR03','4','Expense','4496','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2709, 'SKR03','4','Expense','4497','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2710, 'SKR03','4','Expense','4498','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2711, 'SKR03','4','Expense','4499','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2712, 'SKR03','4','Expense','4500','K4GVA31','Fahrzeugkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2713, 'SKR03','4','Expense','4510','K4GVA33','Kfz-steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2714, 'SKR03','4','Expense','4520','K4GVA31','Kfz-Versicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2715, 'SKR03','4','Expense','4530','K4GVA31','Laufende Kfz-Betriebskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2716, 'SKR03','4','Expense','4540','K4GVA31','Kfz-Reparaturen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2717, 'SKR03','4','Expense','4550','K4GVA31','Garagenmieten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2718, 'SKR03','4','Expense','4560','K4GVA31','Mautgebühren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2719, 'SKR03','4','Expense','4570','K4GVA31','Leasingfahrzeugkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2720, 'SKR03','4','Expense','4580','K4GVA31','Sonstige Kfz-Kosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2721, 'SKR03','4','Expense','4590','K4GVA31','Kfz-Kosten für Betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2722, 'SKR03','4','Expense','4595','K4GVA31','Fremdfahrzeugkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2723, 'SKR03','4','Expense','4600','K4GVA31','Werbekosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2724, 'SKR03','4','Expense','4630','K4GVA31','Geschenke abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2725, 'SKR03','4','Expense','4635','K4GVA31','Geschenke nicht abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2726, 'SKR03','4','Expense','4638','K4GVA31','Geschenke ausschließlich betrieblich genutzt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2727, 'SKR03','4','Expense','4640','K4GVA31','Repräsentationskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2728, 'SKR03','4','Expense','4650','K4GVA31','Bewirtungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2729, 'SKR03','4','Expense','4651','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2730, 'SKR03','4','Expense','4652','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2731, 'SKR03','4','Expense','4653','K4GVA31','Aufmerksamkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2732, 'SKR03','4','Expense','4654','K4GVA31','Nicht abzugsfähige Bewirtungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2733, 'SKR03','4','Expense','4655','K4GVA31','Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2734, 'SKR03','4','Expense','4660','K4GVA31','Reisekosten Arbeitnehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2735, 'SKR03','4','Expense','4662','K4GVA31','Reisekosten Arbeitnehmer (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2736, 'SKR03','4','Expense','4663','K4GVA31','Reisekosten Arbeitnehmer Fahrkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2737, 'SKR03','4','Expense','4664','K4GVA31','Reisekosten Arbeitnehmer Verpflegungsmehraufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2738, 'SKR03','4','Expense','4666','K4GVA31','Reisekosten Arbeitnehmer übernachtungsaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2739, 'SKR03','4','Expense','4668','K4GVA31','Kilometergelderstattung Arbeitnehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2740, 'SKR03','4','Expense','4670','K4GVA31','Reisekosten Unternehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2741, 'SKR03','4','Expense','4672','K4GVA31','Reisekosten Unternehmer (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2742, 'SKR03','4','Expense','4673','K4GVA31','Reisekosten Unternehmer Fahrkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2743, 'SKR03','4','Expense','4674','K4GVA31','Reisekosten Unternehmer Verpflegungsmehraufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2744, 'SKR03','4','Expense','4676','K4GVA31','Reisekosten Unternehmer übernachtungsaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2745, 'SKR03','4','Expense','4678','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2746, 'SKR03','4','Expense','4679','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2747, 'SKR03','4','Expense','4680','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2748, 'SKR03','4','Expense','4700','K4GVA31','Kosten der Warenabgabe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2749, 'SKR03','4','Expense','4710','K4GVA31','Verpackungsmaterial',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2750, 'SKR03','4','Expense','4730','K4GVA31','Ausgangsfrachten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2751, 'SKR03','4','Expense','4750','K4GVA31','Transportversicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2752, 'SKR03','4','Expense','4760','K4GVA31','Verkaufsprovisionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2753, 'SKR03','4','Expense','4780','K4GVA31','Fremdarbeiten (Vertrieb)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2754, 'SKR03','4','Expense','4790','K4GVA31','Aufwand für Gewährleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2755, 'SKR03','4','Expense','4800','K4GVA31','Reparaturen und Instandhaltungen von technischen Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2756, 'SKR03','4','Expense','4805','K4GVA31','Reparaturen und Instandhaltungen von anderen Anlagen und Betriebs- und Geschäftsaustattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2757, 'SKR03','4','Expense','4806','K4GVA31','Wartungskosten für Hard- und Software',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2758, 'SKR03','4','Expense','4809','K4GVA31','Sonstige Reparaturen und Instandhaltungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2759, 'SKR03','4','Expense','4810','K4GVA31','Mietleasing',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2760, 'SKR03','4','Expense','4814','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2761, 'SKR03','0','Expense','K4GVA34','K4GVA3','Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen sowie auf aktivierte Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2762, 'SKR03','4','Expense','4815','K4GVA34','Kaufleasing',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2763, 'SKR03','4','Expense','4820','K4GVA34','Abschreibung auf Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2764, 'SKR03','4','Expense','4821','K4GVA34','Abschreibung auf Aufwendungen für die Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2765, 'SKR03','4','Expense','4822','K4GVA34','Abschreibung auf immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2766, 'SKR03','4','Expense','4824','K4GVA34','Abschreibung auf den Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2767, 'SKR03','4','Expense','4826','K4GVA34','Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2768, 'SKR03','4','Expense','4830','K4GVA34','Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2769, 'SKR03','4','Expense','4831','K4GVA34','Abschreibungen auf Gebäude',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2770, 'SKR03','4','Expense','4832','K4GVA34','Abschreibungen auf Kfz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2771, 'SKR03','4','Expense','4833','K4GVA34','Abschreibungen auf Gebäudeanteil des häuslichen Arbeitszimmers',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2772, 'SKR03','4','Expense','4840','K4GVA34','Außerplanmäßige Abschreibungen auf Sachanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2773, 'SKR03','4','Expense','4841','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2774, 'SKR03','4','Expense','4842','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2775, 'SKR03','4','Expense','4843','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2776, 'SKR03','4','Expense','4850','K4GVA34','Abschreibungen auf Sachanlagen auf Grund steuerlich Sondervorschriften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2777, 'SKR03','4','Expense','4851','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (ohne Kfz)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2778, 'SKR03','4','Expense','4852','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (für Kfz)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2779, 'SKR03','4','Expense','4855','K4GVA34','Sofortabschreibung geringwertiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2780, 'SKR03','4','Expense','4860','K4GVA34','Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2781, 'SKR03','4','Expense','4862','K4GVA34','Abschreibung auf Sammelposten WG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2782, 'SKR03','4','Expense','4865','K4GVA34','Außerplanmäßige Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2783, 'SKR03','0','Expense','K4GVA35','K4GVA3','Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2784, 'SKR03','4','Expense','4870','K4GVA35','Abschreibungen auf Finanzanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2785, 'SKR03','4','Expense','4871','K4GVA35','Abschreibungen auf Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2786, 'SKR03','4','Expense','4872','K4GVA35','Abschreibungen auf Grund von Verlustanteilen an Mitunternehmerschaften § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2787, 'SKR03','4','Expense','4873','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2788, 'SKR03','4','Expense','4874','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2789, 'SKR03','4','Expense','4875','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2790, 'SKR03','4','Expense','4876','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2791, 'SKR03','4','Expense','4879','K4GVA35','Vorwegnahme künftiger Wertschwankungen bei Wertpapieren des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2792, 'SKR03','0','Expense','K4GVA36','K4GVA3','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2793, 'SKR03','4','Expense','4880','K4GVA36','Abschreibungen auf Umlaufvermögen ohne Wertpapiere (soweit unübliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2794, 'SKR03','4','Expense','4882','K4GVA36','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit unübliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2795, 'SKR03','4','Expense','4885','K4GVA31','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2796, 'SKR03','4','Expense','4886','K4GVA31','Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (soweit übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2797, 'SKR03','4','Expense','4887','K4GVA31','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2798, 'SKR03','4','Expense','4890','K4GVA36','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen (soweit unübliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2799, 'SKR03','4','Expense','4900','K4GVA31','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2800, 'SKR03','4','Expense','4905','K4GVA31','Sonstige Aufwendungen betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2801, 'SKR03','4','Expense','4909','K4GVA31','Fremdleistungen / Fremarbeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2802, 'SKR03','4','Expense','4910','K4GVA31','Porto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2803, 'SKR03','4','Expense','4920','K4GVA31','Telefon',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2804, 'SKR03','4','Expense','4925','K4GVA31','Telefax und Internetkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2805, 'SKR03','4','Expense','4930','K4GVA31','Bürobedarf',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2806, 'SKR03','4','Expense','4940','K4GVA31','Zeitschriften Bücher',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2807, 'SKR03','4','Expense','4945','K4GVA31','Fortbildungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2808, 'SKR03','4','Expense','4946','K4GVA31','Freiwillige Sozialleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2809, 'SKR03','4','Expense','4948','K4GVA31','Vergütungen an Mitunternehmer § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2810, 'SKR03','4','Expense','4949','K4GVA31','Haftungsvergütung an Mitunternehmer § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2811, 'SKR03','4','Expense','4950','K4GVA31','Rechts- und Beratungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2812, 'SKR03','4','Expense','4955','K4GVA31','Buchführungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2813, 'SKR03','4','Expense','4955.01','K4GVA31','Kosten Heidrich&Müller-Hansen PG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2814, 'SKR03','4','Expense','4957','K4GVA31','Abschluss- und Prüfungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2815, 'SKR03','4','Expense','4960','K4GVA31','Mieten für Einrichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2816, 'SKR03','4','Expense','4964','K4GVA31','Aufwendungen für die zeitlich befristetete Überlassung von Rechten (Lizenzen,Konzessionen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2817, 'SKR03','4','Expense','4965','K4GVA31','Mietleasing',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2818, 'SKR03','4','Expense','4966','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2819, 'SKR03','4','Expense','4968','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing für Einrichtungen § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2820, 'SKR03','4','Expense','4969','K4GVA31','Aufwendungen für Abraum- und Abfallbeseitigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2821, 'SKR03','4','Expense','4970','K4GVA31','Nebenkosten des Geldverkehrs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2822, 'SKR03','4','Expense','4975','K4GVA31','Aufwendungen aus Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2823, 'SKR03','4','Expense','4976','K4GVA31','Aufwendungen aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2824, 'SKR03','4','Expense','4980','K4GVA31','Betriebsbedarf',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2825, 'SKR03','4','Expense','4985','K4GVA31','Werkzeuge und Kleingeräte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2826, 'SKR03','0','Expense','K4GVA4','K4GVA','Kalkulatorische Kosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2827, 'SKR03','0','Expense','K4GVA41','K4GVA4','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2828, 'SKR03','4','Expense','4990','K4GVA41','Kalkulatorischer Unternehmerlohn',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2829, 'SKR03','4','Expense','4991','K4GVA41','Kalkulatorische Miete und Pacht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2830, 'SKR03','4','Expense','4992','K4GVA41','Kalkulatorische Zinsen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2831, 'SKR03','4','Expense','4993','K4GVA41','Kalkulatorische Abschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2832, 'SKR03','4','Expense','4994','K4GVA41','Kalkulatorische Wagnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2833, 'SKR03','4','Expense','4995','K4GVA41','Kalkulatorischer Lohn für unentgeltliche Mitarbeiter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2834, 'SKR03','0','Expense','K4GVA5','K4GVA','Kosten bei Anwendung des Umsatzkostenverfahren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2835, 'SKR03','0','Expense','K4GVA51','K4GVA5','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2836, 'SKR03','4','Expense','4996','K4GVA51','Herstellungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2837, 'SKR03','4','Expense','4997','K4GVA51','Verwaltungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2838, 'SKR03','4','Expense','4998','K4GVA51','Vertriebskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2839, 'SKR03','4','Expense','4999','K4GVA51','Gegenkonto 4996 - 4998',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2840, 'SKR03','0','Asset','K7BA01','K7BA','Unfertige Erzeugnisse und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2841, 'SKR03','7','Asset','7000','K7BA01','Unfertige Erzeugnisse und Leistungen (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2842, 'SKR03','7','Asset','7050','7000','Unfertige Erzeugnisse (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2843, 'SKR03','7','Asset','7080','7000','Unfertige Leistungen (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2844, 'SKR03','0','Asset','K7BA02','K7BA','In Ausführung befindliche Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2845, 'SKR03','7','Asset','7090','K7BA02','In Ausführung befindliche Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2846, 'SKR03','0','Asset','K7BA03','K7BA','In Arbeit befindliche Aufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2847, 'SKR03','7','Asset','7095','K7BA03','In Arbeit befindliche Aufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2848, 'SKR03','0','Asset','K7BA04','K7BA','Fertige Erzeugnisse und Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2849, 'SKR03','7','Asset','7100','K7BA04','Fertige Erzeugnisse und Waren (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2850, 'SKR03','7','Asset','7110','7100','Fertige Erzeugnisse (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2851, 'SKR03','7','Asset','7140','7100','Waren (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2852, 'SKR03','0','Revenue','K8GVE1','K8GVE','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2853, 'SKR03','0','Revenue','K8GVE11','K8GVE1','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2854, 'SKR03','8','Revenue','8000','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2855, 'SKR03','8','Revenue','8001','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2856, 'SKR03','8','Revenue','8002','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2857, 'SKR03','8','Revenue','8003','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2858, 'SKR03','8','Revenue','8004','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2859, 'SKR03','8','Revenue','8005','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2860, 'SKR03','8','Revenue','8006','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2861, 'SKR03','8','Revenue','8007','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2862, 'SKR03','8','Revenue','8008','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2863, 'SKR03','8','Revenue','8009','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2864, 'SKR03','8','Revenue','8010','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2865, 'SKR03','8','Revenue','8011','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2866, 'SKR03','8','Revenue','8012','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2867, 'SKR03','8','Revenue','8013','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2868, 'SKR03','8','Revenue','8014','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2869, 'SKR03','8','Revenue','8015','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2870, 'SKR03','8','Revenue','8016','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2871, 'SKR03','8','Revenue','8017','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2872, 'SKR03','8','Revenue','8018','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2873, 'SKR03','8','Revenue','8019','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2874, 'SKR03','8','Revenue','8020','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2875, 'SKR03','8','Revenue','8021','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2876, 'SKR03','8','Revenue','8022','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2877, 'SKR03','8','Revenue','8023','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2878, 'SKR03','8','Revenue','8024','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2879, 'SKR03','8','Revenue','8025','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2880, 'SKR03','8','Revenue','8026','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2881, 'SKR03','8','Revenue','8027','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2882, 'SKR03','8','Revenue','8028','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2883, 'SKR03','8','Revenue','8029','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2884, 'SKR03','8','Revenue','8030','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2885, 'SKR03','8','Revenue','8031','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2886, 'SKR03','8','Revenue','8032','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2887, 'SKR03','8','Revenue','8033','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2888, 'SKR03','8','Revenue','8034','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2889, 'SKR03','8','Revenue','8035','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2890, 'SKR03','8','Revenue','8036','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2891, 'SKR03','8','Revenue','8037','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2892, 'SKR03','8','Revenue','8038','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2893, 'SKR03','8','Revenue','8039','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2894, 'SKR03','8','Revenue','8040','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2895, 'SKR03','8','Revenue','8041','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2896, 'SKR03','8','Revenue','8042','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2897, 'SKR03','8','Revenue','8043','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2898, 'SKR03','8','Revenue','8044','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2899, 'SKR03','8','Revenue','8045','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2900, 'SKR03','8','Revenue','8046','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2901, 'SKR03','8','Revenue','8047','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2902, 'SKR03','8','Revenue','8048','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2903, 'SKR03','8','Revenue','8049','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2904, 'SKR03','8','Revenue','8050','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2905, 'SKR03','8','Revenue','8051','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2906, 'SKR03','8','Revenue','8052','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2907, 'SKR03','8','Revenue','8053','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2908, 'SKR03','8','Revenue','8054','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2909, 'SKR03','8','Revenue','8055','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2910, 'SKR03','8','Revenue','8056','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2911, 'SKR03','8','Revenue','8057','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2912, 'SKR03','8','Revenue','8058','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2913, 'SKR03','8','Revenue','8059','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2914, 'SKR03','8','Revenue','8060','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2915, 'SKR03','8','Revenue','8061','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2916, 'SKR03','8','Revenue','8062','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2917, 'SKR03','8','Revenue','8063','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2918, 'SKR03','8','Revenue','8064','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2919, 'SKR03','8','Revenue','8065','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2920, 'SKR03','8','Revenue','8066','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2921, 'SKR03','8','Revenue','8067','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2922, 'SKR03','8','Revenue','8068','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2923, 'SKR03','8','Revenue','8069','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2924, 'SKR03','8','Revenue','8070','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2925, 'SKR03','8','Revenue','8071','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2926, 'SKR03','8','Revenue','8072','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2927, 'SKR03','8','Revenue','8073','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2928, 'SKR03','8','Revenue','8074','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2929, 'SKR03','8','Revenue','8075','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2930, 'SKR03','8','Revenue','8076','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2931, 'SKR03','8','Revenue','8077','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2932, 'SKR03','8','Revenue','8078','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2933, 'SKR03','8','Revenue','8079','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2934, 'SKR03','8','Revenue','8080','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2935, 'SKR03','8','Revenue','8081','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2936, 'SKR03','8','Revenue','8082','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2937, 'SKR03','8','Revenue','8083','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2938, 'SKR03','8','Revenue','8084','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2939, 'SKR03','8','Revenue','8085','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2940, 'SKR03','8','Revenue','8086','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2941, 'SKR03','8','Revenue','8087','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2942, 'SKR03','8','Revenue','8088','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2943, 'SKR03','8','Revenue','8089','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2944, 'SKR03','8','Revenue','8090','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2945, 'SKR03','8','Revenue','8091','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2946, 'SKR03','8','Revenue','8092','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2947, 'SKR03','8','Revenue','8093','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2948, 'SKR03','8','Revenue','8094','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2949, 'SKR03','8','Revenue','8095','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2950, 'SKR03','8','Revenue','8096','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2951, 'SKR03','8','Revenue','8097','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2952, 'SKR03','8','Revenue','8098','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2953, 'SKR03','8','Revenue','8099','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2954, 'SKR03','8','Revenue','8100','K8GVE11','steuerfreie Umsätze § 4 Nr. 8 ff. UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2955, 'SKR03','8','Revenue','8105','K8GVE11','Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpackung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2956, 'SKR03','8','Revenue','8110','K8GVE11','Sonstige steuerfreie Umsätze Inland',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2957, 'SKR03','8','Revenue','8120','K8GVE11','steuerfreie Umsätze § 4 Nr. 1a UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2958, 'SKR03','8','Revenue','8125','K8GVE11','steuerfreie innergemeinschaftliche Lieferung § 4 Nr. 1b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2959, 'SKR03','8','Revenue','8130','K8GVE11','Lieferungen des ersten Abnehmers bei Innergemeinschaftlichen Dreiecksgeschäften § 25b abs. 2 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2960, 'SKR03','8','Revenue','8135','K8GVE11','Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer Identifikationsnummer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2961, 'SKR03','8','Revenue','8140','K8GVE11','Steuerfreie Umsätze Offshore usw.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2962, 'SKR03','8','Revenue','8150','K8GVE11','Sonstige steuerfreie Umsätze (z.B. § 4 Nr. 2-7 UStG)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2963, 'SKR03','8','Revenue','8160','K8GVE11','Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2964, 'SKR03','8','Revenue','8190','K8GVE11','Erlöse die mit den Durchschnittssätzen des § 24 UStG versteuert werden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2965, 'SKR03','8','Revenue','8195','K8GVE11','Erlöse als Kleinunternehmer i. S. d. § 19 Abs. 1 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2966, 'SKR03','8','Revenue','8196','K8GVE11','Erlöse aus Geldspielautomaten 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2967, 'SKR03','8','Revenue','8197','K8GVE11','Erlöse aus Geldspielautomaten 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2968, 'SKR03','8','Revenue','8200','K8GVE11','Erlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2969, 'SKR03','8','Revenue','8300','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2970, 'SKR03','8','Revenue','8301','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2971, 'SKR03','8','Revenue','8302','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2972, 'SKR03','8','Revenue','8303','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2973, 'SKR03','8','Revenue','8304','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2974, 'SKR03','8','Revenue','8305','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2975, 'SKR03','8','Revenue','8306','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2976, 'SKR03','8','Revenue','8307','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2977, 'SKR03','8','Revenue','8308','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2978, 'SKR03','8','Revenue','8309','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2979, 'SKR03','8','Revenue','8310','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2980, 'SKR03','8','Revenue','8311','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2981, 'SKR03','8','Revenue','8312','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2982, 'SKR03','8','Revenue','8313','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2983, 'SKR03','8','Revenue','8314','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2984, 'SKR03','8','Revenue','8315','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2985, 'SKR03','8','Revenue','8316','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2986, 'SKR03','8','Revenue','8317','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2987, 'SKR03','8','Revenue','8318','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2988, 'SKR03','8','Revenue','8319','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2989, 'SKR03','8','Revenue','8320','K8GVE11','Erlöse aus im anderen EG-Land steuerpflichtigen Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2990, 'SKR03','8','Revenue','8330','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2991, 'SKR03','8','Revenue','8337','K8GVE11','Erlöse aus Leistungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2992, 'SKR03','8','Revenue','8338','K8GVE11','Erlöse aus im Drittland steuerbaren Leistungen im Inland nicht steuerbare Umsätze',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2993, 'SKR03','8','Revenue','8339','K8GVE11','Erlöse aus im anderen EG-Land steuerbaren Lieferungen im Inland nicht steuerbare Umsätze',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2994, 'SKR03','8','Revenue','8340','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2995, 'SKR03','8','Revenue','8341','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2996, 'SKR03','8','Revenue','8342','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2997, 'SKR03','8','Revenue','8343','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2998, 'SKR03','8','Revenue','8344','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2999, 'SKR03','8','Revenue','8345','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3000, 'SKR03','8','Revenue','8346','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3001, 'SKR03','8','Revenue','8347','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3002, 'SKR03','8','Revenue','8348','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3003, 'SKR03','8','Revenue','8349','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3004, 'SKR03','8','Revenue','8400','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3005, 'SKR03','8','Revenue','8400.01','K8GVE11','Erlöse Projekte 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3006, 'SKR03','8','Revenue','8401','K8GVE11','Vorausberechnete Einnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3007, 'SKR03','8','Revenue','8402','K8GVE11','Sontige Einnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3008, 'SKR03','8','Revenue','8403','K8GVE11','Konto Kasse Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3009, 'SKR03','8','Revenue','8404','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3010, 'SKR03','8','Revenue','8405','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3011, 'SKR03','8','Revenue','8406','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3012, 'SKR03','8','Revenue','8407','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3013, 'SKR03','8','Revenue','8408','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3014, 'SKR03','8','Revenue','8409','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3015, 'SKR03','8','Revenue','8410','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3016, 'SKR03','8','Revenue','8510','K8GVE11','Provisionsumsätze',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3017, 'SKR03','8','Revenue','8514','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 8 ff. UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3018, 'SKR03','8','Revenue','8515','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 5 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3019, 'SKR03','8','Revenue','8516','K8GVE11','Provisionsumsätze 7 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3020, 'SKR03','8','Revenue','8518','K8GVE11','Provisionsumsätze 16 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3021, 'SKR03','8','Revenue','8519','K8GVE11','Provisionsumsätze 19 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3022, 'SKR03','8','Revenue','8520','K8GVE11','Erlöse Abfallverwertung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3023, 'SKR03','8','Revenue','8540','K8GVE11','Erlöse Leergut',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3024, 'SKR03','0','Revenue','K8GVE12','K8GVE1','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3025, 'SKR03','8','Revenue','8570','K8GVE12','Provision sonstige Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3026, 'SKR03','8','Revenue','8574','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 8 ff UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3027, 'SKR03','8','Revenue','8575','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 5 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3028, 'SKR03','8','Revenue','8576','K8GVE12','Provision sonstige Erträge 7 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3029, 'SKR03','8','Revenue','8578','K8GVE12','Provision sonstige Erträge 16 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3030, 'SKR03','8','Revenue','8579','K8GVE12','Provision sonstige Erträge 19 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3031, 'SKR03','0','Revenue','K8GVE2','K8GVE','Statistische Konten EüR',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3032, 'SKR03','0','Revenue','K8GVE21','K8GVE2','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3033, 'SKR03','8','Revenue','8580','K8GVE21','Statistisches Konto Erlöse zum Allgemeinen Umsatzsteuerersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3034, 'SKR03','8','Revenue','8581','K8GVE21','Statistisches Konto Erlöse zum ermäßigten Umsatzsteuerersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3035, 'SKR03','8','Revenue','8582','K8GVE21','Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3036, 'SKR03','8','Revenue','8589','K8GVE21','Gegenkonto 8580-8582 bei Aufteilung der Erlöse nach Steuersätzen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3037, 'SKR03','0','Revenue','K8GVE22','K8GVE2','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3038, 'SKR03','8','Revenue','8590','K8GVE22','Verrechnete sonstige Sachbezüge (keine Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3039, 'SKR03','8','Revenue','8591','K8GVE22','Sachbezüge 7% USt (Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3040, 'SKR03','8','Revenue','8595','K8GVE22','Sachbezüge 19% USt (Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3041, 'SKR03','8','Revenue','8596','K8GVE22','Sachbezüge 16% USt (Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3042, 'SKR03','8','Revenue','8600','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3043, 'SKR03','8','Revenue','8605','K8GVE22','Sonstige Erträge betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3044, 'SKR03','8','Revenue','8609','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei § 4 Nr. 8 ff UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3045, 'SKR03','8','Revenue','8610','K8GVE22','Verrechnete sonstige Sachbezüge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3046, 'SKR03','8','Revenue','8611','K8GVE22','Verrechnete sonstige Sachbezüge 19% USt (z.B. Kfz-Gestellung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3047, 'SKR03','8','Revenue','8612','K8GVE22','Verrechnete sonstige Sachbezüge 16% USt (z.B. Kfz-Gestellung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3048, 'SKR03','8','Revenue','8614','K8GVE22','Verrechnete sonstige Sachbezüge ohne Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3049, 'SKR03','8','Revenue','8625','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3050, 'SKR03','8','Revenue','8626','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3051, 'SKR03','8','Revenue','8627','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3052, 'SKR03','8','Revenue','8628','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3053, 'SKR03','8','Revenue','8629','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3054, 'SKR03','8','Revenue','8630','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3055, 'SKR03','8','Revenue','8631','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3056, 'SKR03','8','Revenue','8632','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3057, 'SKR03','8','Revenue','8633','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3058, 'SKR03','8','Revenue','8634','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3059, 'SKR03','8','Revenue','8640','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3060, 'SKR03','8','Revenue','8641','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3061, 'SKR03','8','Revenue','8642','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3062, 'SKR03','8','Revenue','8643','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3063, 'SKR03','8','Revenue','8644','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3064, 'SKR03','8','Revenue','8648','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3065, 'SKR03','8','Revenue','8649','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3066, 'SKR03','0','Revenue','K8GVE23','K8GVE2','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3067, 'SKR03','8','Revenue','8650','K8GVE23','Erlöse Zinsen und Diskontspesen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3068, 'SKR03','8','Revenue','8660','K8GVE23','Erlöse Zinsen und Diskontspesen aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3069, 'SKR03','0','Expense','K8GVA1','K8GVA','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3070, 'SKR03','0','Expense','K8GVA11','K8GVA1','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3071, 'SKR03','8','Expense','8700','K8GVA11','Erlösschmälerungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3072, 'SKR03','8','Revenue','8701','K8GVA11','Nicht abgerechnete Einnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3073, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3074, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen aus steuerfreien Umsätzen §4 Nr. 1a UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3075, 'SKR03','8','Expense','8710','K8GVA11','Erlösschmälerungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3076, 'SKR03','8','Expense','8720','K8GVA11','Erlösschmälerungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3077, 'SKR03','8','Expense','8721','K8GVA11','Erlösschmälerungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3078, 'SKR03','8','Expense','8723','K8GVA11','Erlösschmälerungen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3079, 'SKR03','8','Expense','8724','K8GVA11','Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3080, 'SKR03','8','Expense','8725','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 7 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3081, 'SKR03','8','Expense','8726','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 19 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3082, 'SKR03','8','Expense','8727','K8GVA11','Erlösschmälerungen aus im anderen EG-Land steuerpflichtigen Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3083, 'SKR03','8','Expense','8729','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3084, 'SKR03','8','Expense','8730','K8GVA11','Gewährte Skonti',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3085, 'SKR03','8','Expense','8731','K8GVA11','Gewährte Skonti 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3086, 'SKR03','8','Expense','8735','K8GVA11','Gewährte Skonti 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3087, 'SKR03','8','Expense','8736','K8GVA11','Gewährte Skonti 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3088, 'SKR03','8','Expense','8741','K8GVA11','Gewährte Skonti aus Lieferungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3089, 'SKR03','8','Expense','8743','K8GVA11','Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3090, 'SKR03','8','Expense','8745','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3091, 'SKR03','8','Expense','8746','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3092, 'SKR03','8','Expense','8748','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3093, 'SKR03','8','Expense','8749','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3094, 'SKR03','8','Expense','8750','K8GVA11','Gewährte Boni 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3095, 'SKR03','8','Expense','8751','K8GVA11','Gewährte Boni 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3096, 'SKR03','8','Expense','8760','K8GVA11','Gewährte Boni 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3097, 'SKR03','8','Expense','8761','K8GVA11','Gewährte Boni 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3098, 'SKR03','8','Expense','8764','K8GVA11','Gewährte Boni 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3099, 'SKR03','8','Expense','8765','K8GVA11','Gewährte Boni 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3100, 'SKR03','8','Expense','8769','K8GVA11','Gewährte Boni',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3101, 'SKR03','8','Expense','8770','K8GVA11','Gewährte Rabatte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3102, 'SKR03','8','Expense','8780','K8GVA11','Gewährte Rabatte 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3103, 'SKR03','8','Expense','8781','K8GVA11','Gewährte Rabatte 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3104, 'SKR03','8','Expense','8790','K8GVA11','Gewährte Rabatte 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3105, 'SKR03','8','Expense','8791','K8GVA11','Gewährte Rabatte 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3106, 'SKR03','8','Expense','8794','K8GVA11','Gewährte Rabatte 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3107, 'SKR03','8','Expense','8795','K8GVA11','Gewährte Rabatte 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3108, 'SKR03','0','Expense','K8GVA12','K8GVA1','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3109, 'SKR03','8','Expense','8800','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3110, 'SKR03','8','Expense','8801','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3111, 'SKR03','8','Expense','8802','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3112, 'SKR03','8','Expense','8803','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3113, 'SKR03','8','Expense','8804','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3114, 'SKR03','8','Expense','8805','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3115, 'SKR03','8','Expense','8806','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3116, 'SKR03','8','Expense','8807','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3117, 'SKR03','8','Expense','8808','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3118, 'SKR03','8','Expense','8809','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3119, 'SKR03','8','Expense','8817','K8GVA12','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3120, 'SKR03','8','Expense','8818','K8GVA12','Erlöse aus Verkäufen Finanzanlagen (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3121, 'SKR03','8','Expense','8819','K8GVA12','Erlöse aus Verkäufen Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3122, 'SKR03','8','Expense','8820','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3123, 'SKR03','8','Expense','8821','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3124, 'SKR03','8','Expense','8822','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3125, 'SKR03','8','Expense','8823','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3126, 'SKR03','8','Expense','8824','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3127, 'SKR03','8','Expense','8825','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3128, 'SKR03','8','Expense','8826','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3129, 'SKR03','8','Expense','8827','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1a UStG (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3130, 'SKR03','8','Expense','8828','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1b UStG (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3131, 'SKR03','8','Expense','8829','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3132, 'SKR03','8','Expense','8837','K8GVE22','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3133, 'SKR03','8','Expense','8838','K8GVE22','Erlöse aus Verkäufen Finanzanlagen (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3134, 'SKR03','8','Expense','8839','K8GVE22','Erlöse aus Verkäufen Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3135, 'SKR03','8','Expense','8850','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19% USt für § 4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3136, 'SKR03','8','Expense','8851','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3137, 'SKR03','8','Expense','8852','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3138, 'SKR03','8','Expense','8853','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3139, 'SKR03','8','Expense','8900','K8GVE21','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3140, 'SKR03','8','Expense','8905','K8GVE21','Entnahme von Gegenständen ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3141, 'SKR03','8','Expense','8906','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3142, 'SKR03','8','Expense','8910','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3143, 'SKR03','8','Expense','8911','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3144, 'SKR03','8','Expense','8912','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3145, 'SKR03','8','Expense','8913','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3146, 'SKR03','8','Expense','8914','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3147, 'SKR03','8','Expense','8915','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3148, 'SKR03','8','Expense','8916','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3149, 'SKR03','8','Expense','8917','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3150, 'SKR03','8','Expense','8918','K8GVE21','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3151, 'SKR03','8','Expense','8919','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3152, 'SKR03','8','Expense','8920','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3153, 'SKR03','8','Expense','8921','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Kfz-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3154, 'SKR03','8','Expense','8922','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Telefon-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3155, 'SKR03','8','Expense','8923','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3156, 'SKR03','8','Expense','8924','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3157, 'SKR03','8','Expense','8925','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3158, 'SKR03','8','Expense','8926','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3159, 'SKR03','8','Expense','8927','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3160, 'SKR03','8','Expense','8928','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3161, 'SKR03','8','Expense','8929','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3162, 'SKR03','8','Expense','8930','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3163, 'SKR03','8','Expense','8931','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3164, 'SKR03','8','Expense','8932','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3165, 'SKR03','8','Expense','8933','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3166, 'SKR03','8','Expense','8934','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Kfz_Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3167, 'SKR03','8','Expense','8935','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3168, 'SKR03','8','Expense','8936','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3169, 'SKR03','8','Expense','8937','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3170, 'SKR03','8','Expense','8938','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3171, 'SKR03','8','Expense','8939','K8GVE22','Unentgeltliche Zuwendung von Gegenständen ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3172, 'SKR03','8','Expense','8940','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3173, 'SKR03','8','Expense','8941','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3174, 'SKR03','8','Expense','8942','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3175, 'SKR03','8','Expense','8943','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3176, 'SKR03','8','Expense','8944','K8GVE21','Unentgeltliche Zuwendung von Waren 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3177, 'SKR03','8','Expense','8945','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3178, 'SKR03','8','Expense','8946','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3179, 'SKR03','8','Expense','8947','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3180, 'SKR03','8','Expense','8948','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Telefon-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3181, 'SKR03','8','Expense','8949','K8GVE21','Unentgeltliche Zuwendung von Waren ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3182, 'SKR03','8','Expense','8950','K8GVE21','Nicht steuerbare Umsätze (Innenumsätze)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3183, 'SKR03','8','Expense','8955','K8GVE21','Umsatzsteuervergütungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3184, 'SKR03','0','XXXXX','BV81','BV','Erhöhung des Bestands an fertigen und unfertigen Erzeugnissen oder Verminderung des Bestands an fertigen oder unfertigen Erzeugnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3185, 'SKR03','8','XXXXX','8960','BV81','Bestandsveränderungen- unfertige Erzeugnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3186, 'SKR03','8','XXXXX','8970','BV81','Bestandsveränderungen- unfertige Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3187, 'SKR03','0','XXXXX','BV82','BV','Erhöhung des Bestands in Ausführung befindlicher Bauaufträge oder Verminderung des Bestands in Ausführung befindlicher Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3188, 'SKR03','8','XXXXX','8975','BV82','Bestandsveränderungen - in Ausführung befindliche Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3189, 'SKR03','0','XXXXX','BV83','BV','Erhöhung des Bestands in Arbeit befindlicher Bauaufträge oder Verminderung des Bestands in Arbeit befindlicher Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3190, 'SKR03','8','XXXXX','8977','BV83','Bestandsveränderungen - in Arbeit befindliche Aufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3191, 'SKR03','8','XXXXX','8980','BV81','Bestandsveränderungen - fertige Erzeugnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3192, 'SKR03','8','XXXXX','8990','AEL','Andere aktivierte Eigenleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3193, 'SKR03','0','XXXXX','KK9',NULL,'Vortrags Kapital- und statistische Konten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3194, 'SKR03','0','XXXXX','KK91','KK9','Vortragskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3195, 'SKR03','9','XXXXX','9000','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3196, 'SKR03','9','XXXXX','9001','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3197, 'SKR03','9','XXXXX','9002','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3198, 'SKR03','9','XXXXX','9003','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3199, 'SKR03','9','XXXXX','9004','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3200, 'SKR03','9','XXXXX','9005','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3201, 'SKR03','9','XXXXX','9006','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3202, 'SKR03','9','XXXXX','9007','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3203, 'SKR03','9','XXXXX','9008','KK91','Saldenvorträge Debitoren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3204, 'SKR03','9','XXXXX','9009','KK91','Saldenvorträge Kreditoren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3205, 'SKR03','9','XXXXX','9060','KK91','Offene Posten aus 1990',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3206, 'SKR03','9','XXXXX','9069','KK91','Offene Posten aus 1999',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3207, 'SKR03','9','XXXXX','9070','KK91','Offene Posten aus 2000',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3208, 'SKR03','9','XXXXX','9071','KK91','Offene Posten aus 2001',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3209, 'SKR03','9','XXXXX','9072','KK91','Offene Posten aus 2002',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3210, 'SKR03','9','XXXXX','9073','KK91','Offene Posten aus 2003',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3211, 'SKR03','9','XXXXX','9074','KK91','Offene Posten aus 2004',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3212, 'SKR03','9','XXXXX','9075','KK91','Offene Posten aus 2005',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3213, 'SKR03','9','XXXXX','9076','KK91','Offene Posten aus 2006',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3214, 'SKR03','9','XXXXX','9077','KK91','Offene Posten aus 2007',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3215, 'SKR03','9','XXXXX','9090','KK91','Summenvortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3216, 'SKR03','9','XXXXX','9091','9090','Offene Posten aus 1991',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3217, 'SKR03','9','XXXXX','9092','9090','Offene Posten aus 1992',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3218, 'SKR03','9','XXXXX','9093','9090','Offene Posten aus 1993',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3219, 'SKR03','9','XXXXX','9094','9090','Offene Posten aus 1994',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3220, 'SKR03','9','XXXXX','9095','9090','Offene Posten aus 1995',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3221, 'SKR03','9','XXXXX','9096','9090','Offene Posten aus 1996',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3222, 'SKR03','9','XXXXX','9097','9090','Offene Posten aus 1997',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3223, 'SKR03','9','XXXXX','9098','9090','Offene Posten aus 1998',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3224, 'SKR03','0','XXXXX','KK92','KK9','Statistische Konten für Betriebswirtschaftliche Auswertung (BWA)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3225, 'SKR03','9','XXXXX','9101','KK92','Verkaufstage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3226, 'SKR03','9','XXXXX','9102','KK92','Anzahl der Barkunden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3227, 'SKR03','9','XXXXX','9103','KK92','Beschäftigte Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3228, 'SKR03','9','XXXXX','9104','KK92','Unbezahlte Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3229, 'SKR03','9','XXXXX','9105','KK92','Verkaufskräfte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3230, 'SKR03','9','XXXXX','9106','KK92','Geschäftsraum qm',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3231, 'SKR03','9','XXXXX','9107','KK92','Verkaufsraum qm',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3232, 'SKR03','9','XXXXX','9116','KK92','Anzahl Rechnungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3233, 'SKR03','9','XXXXX','9117','KK92','Anzahl Kreditkunden monatlich',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3234, 'SKR03','9','XXXXX','9118','KK92','Anzahl Kreditkunden aufgelaufen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3235, 'SKR03','9','XXXXX','9120','KK92','Erweiterungsinvestitionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3236, 'SKR03','9','XXXXX','9135','KK92','Auftragseingang im Geschäftsjahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3237, 'SKR03','9','XXXXX','9140','KK92','Auftragsbestand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3238, 'SKR03','9','XXXXX','9190','KK92','Gegenkonto für statistischen Mengeneinheiten Konten 9101 - 9107 und Konten 9116 - 9118',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3239, 'SKR03','9','XXXXX','9199','KK92','Gegenkonto zu Konten 9120 9135 - 9140',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3240, 'SKR03','0','XXXXX','KK93','KK9','Statistische Konten für den Kennziffernteil der Bilanz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3241, 'SKR03','9','XXXXX','9200','KK93','Beschäftigte Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3242, 'SKR03','9','XXXXX','9209','KK93','Gegenkonto zu 9200',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3243, 'SKR03','9','XXXXX','9210','KK93','Produktive Löhne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3244, 'SKR03','9','XXXXX','9219','KK93','Gegenkonto zu 9210',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3245, 'SKR03','0','Owner''s Equity','KK94','KK9','Statistische Konten zur informativen Angaben des gezeichneten Kapitals in anderer Währung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3246, 'SKR03','0','Owner''s Equity','KK941','KK94','Gezeichnetes Kapital in DM',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3247, 'SKR03','9','Owner''s Equity','9220','KK941','Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3248, 'SKR03','0','Owner''s Equity','KK942','KK94','Gezeichnetes Kapital in Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3249, 'SKR03','9','Owner''s Equity','9221','KK942','Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3250, 'SKR03','9','Owner''s Equity','9229','KK94','Gegenkonto zu Konten 9022 - 9221',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3251, 'SKR03','0','Owner''s Equity','KK95','KK9','Passive Rechnungsabgrenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3252, 'SKR03','9','Owner''s Equity','9230','KK95','Baukostenzuschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3253, 'SKR03','9','Owner''s Equity','9232','KK95','Investitionszulagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3254, 'SKR03','9','Owner''s Equity','9234','KK95','Investitionszuschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3255, 'SKR03','9','Owner''s Equity','9239','KK95','Gegenkonto zu Konten 9230 - 9238',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3256, 'SKR03','9','Owner''s Equity','9240','KK95','Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3257, 'SKR03','9','Owner''s Equity','9241','KK95','Investitionsverbindlichkeiten aus Sachanlagenverkäufen bei Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3258, 'SKR03','9','Owner''s Equity','9242','KK95','Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3259, 'SKR03','9','Owner''s Equity','9243','KK95','Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3260, 'SKR03','9','Owner''s Equity','9244','KK95','Gegenkonto zu Konten 9240 - 9243',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3261, 'SKR03','9','Owner''s Equity','9245','KK95','Forderungen aus Sachanlagenverkäufen bei sonstigen Vermögensgegenständen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3262, 'SKR03','9','Owner''s Equity','9246','KK95','Forderungen aus Verkäufen immaterieller Vermögensgegenständen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3263, 'SKR03','9','Owner''s Equity','9247','KK95','Forderungen aus Verkäufe von Finanzanlagen bei sonstigen Vermögensgegenständen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3264, 'SKR03','9','Owner''s Equity','9249','KK95','Gegenkonto zu Konten 9245 - 9247',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3265, 'SKR03','0','XXXXX','KK96','KK9','Eigenkapitalersetzende Gesellschafterdarlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3266, 'SKR03','9','Owner''s Equity','9250','KK96','Eigenkapitalersetzende Gesellschafterdarlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3267, 'SKR03','9','Owner''s Equity','9255','KK96','Ungesicherte Gesellschafterdarlehen mit Restlaufzeit größer 5 Jahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3268, 'SKR03','9','Owner''s Equity','9259','KK96','Gegenkonto zu 9250 und 9255',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3269, 'SKR03','0','XXXXX','KK97','KK9','Aufgliederung der Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3270, 'SKR03','9','Owner''s Equity','9260','KK97','Kurzfristige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3271, 'SKR03','9','Owner''s Equity','9262','KK97','Mittelfristige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3272, 'SKR03','9','Owner''s Equity','9264','KK97','Langfristige Rückstellungen außer Pensionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3273, 'SKR03','9','Owner''s Equity','9269','KK97','Gegenkonto zu Konten 9260 - 9268',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3274, 'SKR03','0','XXXXX','KK98','KK9','Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3275, 'SKR03','9','Owner''s Equity','9270','KK98','Gegenkonto zu 9271 bis 9278 (soll-Buchung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3276, 'SKR03','9','Owner''s Equity','9271','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3277, 'SKR03','9','Owner''s Equity','9272','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechseln gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3278, 'SKR03','9','Owner''s Equity','9273','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3279, 'SKR03','9','Owner''s Equity','9274','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3280, 'SKR03','9','Owner''s Equity','9275','KK98','Verbindlichkeiten aus Gewährleistungsverträgen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3281, 'SKR03','9','Owner''s Equity','9276','KK98','Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3282, 'SKR03','9','Owner''s Equity','9277','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3283, 'SKR03','9','Owner''s Equity','9278','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3284, 'SKR03','9','Owner''s Equity','9279','KK98','Verpflichtungen aus Trendhandvermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3285, 'SKR03','0','Owner''s Equity','KK99','KK9','Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3286, 'SKR03','9','Owner''s Equity','9280','KK99','Gegenkonto zu Konten 9281 - 9284',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3287, 'SKR03','9','Owner''s Equity','9281','KK99','Verpflichtungen aus Miet- und Leasingverträgen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3288, 'SKR03','9','Owner''s Equity','9282','KK99','Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3289, 'SKR03','9','Owner''s Equity','9283','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3290, 'SKR03','9','Owner''s Equity','9284','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3291, 'SKR03','0','Owner''s Equity','KK9a','KK9','Statistische Konten für § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3292, 'SKR03','9','Owner''s Equity','9287','KK9a','Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3293, 'SKR03','9','Owner''s Equity','9288','KK9a','Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3294, 'SKR03','9','Owner''s Equity','9289','KK9a','Gegenkonto zu 9287 und 9288',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3295, 'SKR03','9','Owner''s Equity','9290','KK9a','Statistisches Konto steuerfreie Auslagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3296, 'SKR03','9','Owner''s Equity','9291','KK9a','Gegenkonto zu 9290',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3297, 'SKR03','9','Owner''s Equity','9292','KK9a','Statistisches Konto Fremdgeld',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3298, 'SKR03','9','Owner''s Equity','9293','KK9a','Gegenkonto zu 9292',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3299, 'SKR03','0','Owner''s Equity','KK9a1','KK9a','Einlagen stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3300, 'SKR03','9','Owner''s Equity','9295','KK9a1','Einlagen stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3301, 'SKR03','0','Owner''s Equity','KK9a2','KK9a','Steuerrechtlicher Ausgleichsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3302, 'SKR03','9','Owner''s Equity','9297','KK9a2','Steuerrechtlicher Ausgleichsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3303, 'SKR03','0','Owner''s Equity','KK9b','KK9','Privat Teilhafter (für Verrechnung Gesellschafterdarlehen mit Eigenkapitalcharakter - Konto 9840 - 9849)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3304, 'SKR03','9','Owner''s Equity','9400','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3305, 'SKR03','9','Owner''s Equity','9401','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3306, 'SKR03','9','Owner''s Equity','9402','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3307, 'SKR03','9','Owner''s Equity','9403','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3308, 'SKR03','9','Owner''s Equity','9404','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3309, 'SKR03','9','Owner''s Equity','9405','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3310, 'SKR03','9','Owner''s Equity','9406','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3311, 'SKR03','9','Owner''s Equity','9407','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3312, 'SKR03','9','Owner''s Equity','9408','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3313, 'SKR03','9','Owner''s Equity','9409','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3314, 'SKR03','9','Owner''s Equity','9410','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3315, 'SKR03','9','Owner''s Equity','9411','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3316, 'SKR03','9','Owner''s Equity','9412','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3317, 'SKR03','9','Owner''s Equity','9413','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3318, 'SKR03','9','Owner''s Equity','9414','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3319, 'SKR03','9','Owner''s Equity','9415','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3320, 'SKR03','9','Owner''s Equity','9416','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3321, 'SKR03','9','Owner''s Equity','9417','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3322, 'SKR03','9','Owner''s Equity','9418','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3323, 'SKR03','9','Owner''s Equity','9419','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3324, 'SKR03','9','Owner''s Equity','9420','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3325, 'SKR03','9','Owner''s Equity','9421','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3326, 'SKR03','9','Owner''s Equity','9422','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3327, 'SKR03','9','Owner''s Equity','9423','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3328, 'SKR03','9','Owner''s Equity','9424','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3329, 'SKR03','9','Owner''s Equity','9425','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3330, 'SKR03','9','Owner''s Equity','9426','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3331, 'SKR03','9','Owner''s Equity','9427','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3332, 'SKR03','9','Owner''s Equity','9428','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3333, 'SKR03','9','Owner''s Equity','9429','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3334, 'SKR03','9','Owner''s Equity','9430','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3335, 'SKR03','9','Owner''s Equity','9431','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3336, 'SKR03','9','Owner''s Equity','9432','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3337, 'SKR03','9','Owner''s Equity','9433','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3338, 'SKR03','9','Owner''s Equity','9434','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3339, 'SKR03','9','Owner''s Equity','9435','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3340, 'SKR03','9','Owner''s Equity','9436','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3341, 'SKR03','9','Owner''s Equity','9437','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3342, 'SKR03','9','Owner''s Equity','9438','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3343, 'SKR03','9','Owner''s Equity','9439','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3344, 'SKR03','9','Owner''s Equity','9440','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3345, 'SKR03','9','Owner''s Equity','9441','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3346, 'SKR03','9','Owner''s Equity','9442','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3347, 'SKR03','9','Owner''s Equity','9443','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3348, 'SKR03','9','Owner''s Equity','9444','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3349, 'SKR03','9','Owner''s Equity','9445','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3350, 'SKR03','9','Owner''s Equity','9446','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3351, 'SKR03','9','Owner''s Equity','9447','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3352, 'SKR03','9','Owner''s Equity','9448','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3353, 'SKR03','9','Owner''s Equity','9449','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3354, 'SKR03','9','Owner''s Equity','9450','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3355, 'SKR03','9','Owner''s Equity','9451','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3356, 'SKR03','9','Owner''s Equity','9452','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3357, 'SKR03','9','Owner''s Equity','9453','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3358, 'SKR03','9','Owner''s Equity','9454','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3359, 'SKR03','9','Owner''s Equity','9455','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3360, 'SKR03','9','Owner''s Equity','9456','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3361, 'SKR03','9','Owner''s Equity','9457','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3362, 'SKR03','9','Owner''s Equity','9458','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3363, 'SKR03','9','Owner''s Equity','9459','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3364, 'SKR03','9','Owner''s Equity','9460','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3365, 'SKR03','9','Owner''s Equity','9461','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3366, 'SKR03','9','Owner''s Equity','9462','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3367, 'SKR03','9','Owner''s Equity','9463','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3368, 'SKR03','9','Owner''s Equity','9464','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3369, 'SKR03','9','Owner''s Equity','9465','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3370, 'SKR03','9','Owner''s Equity','9466','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3371, 'SKR03','9','Owner''s Equity','9467','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3372, 'SKR03','9','Owner''s Equity','9468','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3373, 'SKR03','9','Owner''s Equity','9469','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3374, 'SKR03','9','Owner''s Equity','9470','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3375, 'SKR03','9','Owner''s Equity','9471','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3376, 'SKR03','9','Owner''s Equity','9472','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3377, 'SKR03','9','Owner''s Equity','9473','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3378, 'SKR03','9','Owner''s Equity','9474','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3379, 'SKR03','9','Owner''s Equity','9475','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3380, 'SKR03','9','Owner''s Equity','9476','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3381, 'SKR03','9','Owner''s Equity','9477','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3382, 'SKR03','9','Owner''s Equity','9478','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3383, 'SKR03','9','Owner''s Equity','9479','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3384, 'SKR03','9','Owner''s Equity','9480','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3385, 'SKR03','9','Owner''s Equity','9481','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3386, 'SKR03','9','Owner''s Equity','9482','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3387, 'SKR03','9','Owner''s Equity','9483','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3388, 'SKR03','9','Owner''s Equity','9484','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3389, 'SKR03','9','Owner''s Equity','9485','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3390, 'SKR03','9','Owner''s Equity','9486','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3391, 'SKR03','9','Owner''s Equity','9487','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3392, 'SKR03','9','Owner''s Equity','9488','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3393, 'SKR03','9','Owner''s Equity','9489','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3394, 'SKR03','9','Owner''s Equity','9490','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3395, 'SKR03','9','Owner''s Equity','9491','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3396, 'SKR03','9','Owner''s Equity','9492','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3397, 'SKR03','9','Owner''s Equity','9493','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3398, 'SKR03','9','Owner''s Equity','9494','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3399, 'SKR03','9','Owner''s Equity','9495','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3400, 'SKR03','9','Owner''s Equity','9496','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3401, 'SKR03','9','Owner''s Equity','9497','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3402, 'SKR03','9','Owner''s Equity','9498','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3403, 'SKR03','9','Owner''s Equity','9499','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3404, 'SKR03','0','Owner''s Equity','KK9c','KK9','Statistische Konten für Kapitalkontenentwicklung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3405, 'SKR03','9','Owner''s Equity','9500','KK9c','Anteil für Konto 0900 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3406, 'SKR03','9','Owner''s Equity','9501','KK9c','Anteil für Konto 0901 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3407, 'SKR03','9','Owner''s Equity','9502','KK9c','Anteil für Konto 0902 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3408, 'SKR03','9','Owner''s Equity','9503','KK9c','Anteil für Konto 0903 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3409, 'SKR03','9','Owner''s Equity','9504','KK9c','Anteil für Konto 0904 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3410, 'SKR03','9','Owner''s Equity','9505','KK9c','Anteil für Konto 0905 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3411, 'SKR03','9','Owner''s Equity','9506','KK9c','Anteil für Konto 0906 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3412, 'SKR03','9','Owner''s Equity','9507','KK9c','Anteil für Konto 0907 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3413, 'SKR03','9','Owner''s Equity','9508','KK9c','Anteil für Konto 0908 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3414, 'SKR03','9','Owner''s Equity','9509','KK9c','Anteil für Konto 0909 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3415, 'SKR03','9','Owner''s Equity','9510','KK9c','Anteil für Konto 0910 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3416, 'SKR03','9','Owner''s Equity','9511','KK9c','Anteil für Konto 0911 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3417, 'SKR03','9','Owner''s Equity','9512','KK9c','Anteil für Konto 0912 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3418, 'SKR03','9','Owner''s Equity','9513','KK9c','Anteil für Konto 0913 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3419, 'SKR03','9','Owner''s Equity','9514','KK9c','Anteil für Konto 0914 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3420, 'SKR03','9','Owner''s Equity','9515','KK9c','Anteil für Konto 0915 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3421, 'SKR03','9','Owner''s Equity','9516','KK9c','Anteil für Konto 0916 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3422, 'SKR03','9','Owner''s Equity','9517','KK9c','Anteil für Konto 0917 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3423, 'SKR03','9','Owner''s Equity','9518','KK9c','Anteil für Konto 0918 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3424, 'SKR03','9','Owner''s Equity','9519','KK9c','Anteil für Konto 0919 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3425, 'SKR03','9','Owner''s Equity','9520','KK9c','Anteil für Konto 0920 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3426, 'SKR03','9','Owner''s Equity','9521','KK9c','Anteil für Konto 0921 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3427, 'SKR03','9','Owner''s Equity','9522','KK9c','Anteil für Konto 0922 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3428, 'SKR03','9','Owner''s Equity','9523','KK9c','Anteil für Konto 0923 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3429, 'SKR03','9','Owner''s Equity','9524','KK9c','Anteil für Konto 0924 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3430, 'SKR03','9','Owner''s Equity','9525','KK9c','Anteil für Konto 0925 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3431, 'SKR03','9','Owner''s Equity','9526','KK9c','Anteil für Konto 0926 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3432, 'SKR03','9','Owner''s Equity','9527','KK9c','Anteil für Konto 0927 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3433, 'SKR03','9','Owner''s Equity','9528','KK9c','Anteil für Konto 0928 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3434, 'SKR03','9','Owner''s Equity','9529','KK9c','Anteil für Konto 0929 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3435, 'SKR03','9','Owner''s Equity','9530','KK9c','Anteil für Konto 0830 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3436, 'SKR03','9','Owner''s Equity','9531','KK9c','Anteil für Konto 0831 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3437, 'SKR03','9','Owner''s Equity','9532','KK9c','Anteil für Konto 0832 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3438, 'SKR03','9','Owner''s Equity','9533','KK9c','Anteil für Konto 0833 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3439, 'SKR03','9','Owner''s Equity','9534','KK9c','Anteil für Konto 0834 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3440, 'SKR03','9','Owner''s Equity','9535','KK9c','Anteil für Konto 0835 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3441, 'SKR03','9','Owner''s Equity','9536','KK9c','Anteil für Konto 0836 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3442, 'SKR03','9','Owner''s Equity','9537','KK9c','Anteil für Konto 0837 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3443, 'SKR03','9','Owner''s Equity','9538','KK9c','Anteil für Konto 0838 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3444, 'SKR03','9','Owner''s Equity','9539','KK9c','Anteil für Konto 0839 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3445, 'SKR03','9','Owner''s Equity','9540','KK9c','Anteil für Konto 0810 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3446, 'SKR03','9','Owner''s Equity','9541','KK9c','Anteil für Konto 0811 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3447, 'SKR03','9','Owner''s Equity','9542','KK9c','Anteil für Konto 0812 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3448, 'SKR03','9','Owner''s Equity','9543','KK9c','Anteil für Konto 0813 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3449, 'SKR03','9','Owner''s Equity','9544','KK9c','Anteil für Konto 0814 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3450, 'SKR03','9','Owner''s Equity','9545','KK9c','Anteil für Konto 0815 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3451, 'SKR03','9','Owner''s Equity','9546','KK9c','Anteil für Konto 0816 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3452, 'SKR03','9','Owner''s Equity','9547','KK9c','Anteil für Konto 0817 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3453, 'SKR03','9','Owner''s Equity','9548','KK9c','Anteil für Konto 0818 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3454, 'SKR03','9','Owner''s Equity','9549','KK9c','Anteil für Konto 0819 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3455, 'SKR03','9','Owner''s Equity','9550','KK9c','Anteil für Konto 9810 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3456, 'SKR03','9','Owner''s Equity','9551','KK9c','Anteil für Konto 9811 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3457, 'SKR03','9','Owner''s Equity','9552','KK9c','Anteil für Konto 9812 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3458, 'SKR03','9','Owner''s Equity','9553','KK9c','Anteil für Konto 9813 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3459, 'SKR03','9','Owner''s Equity','9554','KK9c','Anteil für Konto 9814 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3460, 'SKR03','9','Owner''s Equity','9555','KK9c','Anteil für Konto 9815 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3461, 'SKR03','9','Owner''s Equity','9556','KK9c','Anteil für Konto 9816 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3462, 'SKR03','9','Owner''s Equity','9557','KK9c','Anteil für Konto 9817 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3463, 'SKR03','9','Owner''s Equity','9558','KK9c','Anteil für Konto 9818 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3464, 'SKR03','9','Owner''s Equity','9559','KK9c','Anteil für Konto 9819 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3465, 'SKR03','9','Owner''s Equity','9560','KK9c','Anteil für Konto 9820 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3466, 'SKR03','9','Owner''s Equity','9561','KK9c','Anteil für Konto 9821 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3467, 'SKR03','9','Owner''s Equity','9562','KK9c','Anteil für Konto 9822 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3468, 'SKR03','9','Owner''s Equity','9563','KK9c','Anteil für Konto 9823 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3469, 'SKR03','9','Owner''s Equity','9564','KK9c','Anteil für Konto 9824 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3470, 'SKR03','9','Owner''s Equity','9565','KK9c','Anteil für Konto 9825 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3471, 'SKR03','9','Owner''s Equity','9566','KK9c','Anteil für Konto 9826 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3472, 'SKR03','9','Owner''s Equity','9567','KK9c','Anteil für Konto 9827 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3473, 'SKR03','9','Owner''s Equity','9568','KK9c','Anteil für Konto 9828 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3474, 'SKR03','9','Owner''s Equity','9569','KK9c','Anteil für Konto 9829 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3475, 'SKR03','9','Owner''s Equity','9570','KK9c','Anteil für Konto 0870 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3476, 'SKR03','9','Owner''s Equity','9571','KK9c','Anteil für Konto 0871 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3477, 'SKR03','9','Owner''s Equity','9572','KK9c','Anteil für Konto 0872 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3478, 'SKR03','9','Owner''s Equity','9573','KK9c','Anteil für Konto 0873 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3479, 'SKR03','9','Owner''s Equity','9574','KK9c','Anteil für Konto 0874 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3480, 'SKR03','9','Owner''s Equity','9575','KK9c','Anteil für Konto 0875 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3481, 'SKR03','9','Owner''s Equity','9576','KK9c','Anteil für Konto 0876 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3482, 'SKR03','9','Owner''s Equity','9577','KK9c','Anteil für Konto 0877 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3483, 'SKR03','9','Owner''s Equity','9578','KK9c','Anteil für Konto 0878 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3484, 'SKR03','9','Owner''s Equity','9579','KK9c','Anteil für Konto 0879 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3485, 'SKR03','9','Owner''s Equity','9580','KK9c','Anteil für Konto 0880 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3486, 'SKR03','9','Owner''s Equity','9581','KK9c','Anteil für Konto 0881 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3487, 'SKR03','9','Owner''s Equity','9582','KK9c','Anteil für Konto 0882 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3488, 'SKR03','9','Owner''s Equity','9583','KK9c','Anteil für Konto 0883 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3489, 'SKR03','9','Owner''s Equity','9584','KK9c','Anteil für Konto 0884 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3490, 'SKR03','9','Owner''s Equity','9585','KK9c','Anteil für Konto 0885 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3491, 'SKR03','9','Owner''s Equity','9586','KK9c','Anteil für Konto 0886 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3492, 'SKR03','9','Owner''s Equity','9587','KK9c','Anteil für Konto 0887 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3493, 'SKR03','9','Owner''s Equity','9588','KK9c','Anteil für Konto 0888 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3494, 'SKR03','9','Owner''s Equity','9589','KK9c','Anteil für Konto 0889 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3495, 'SKR03','9','Owner''s Equity','9590','KK9c','Anteil für Konto 0890 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3496, 'SKR03','9','Owner''s Equity','9591','KK9c','Anteil für Konto 0891 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3497, 'SKR03','9','Owner''s Equity','9592','KK9c','Anteil für Konto 0892 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3498, 'SKR03','9','Owner''s Equity','9593','KK9c','Anteil für Konto 0893 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3499, 'SKR03','9','Owner''s Equity','9594','KK9c','Anteil für Konto 0894 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3500, 'SKR03','9','Owner''s Equity','9595','KK9c','Anteil für Konto 0895 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3501, 'SKR03','9','Owner''s Equity','9596','KK9c','Anteil für Konto 0896 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3502, 'SKR03','9','Owner''s Equity','9597','KK9c','Anteil für Konto 0897 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3503, 'SKR03','9','Owner''s Equity','9598','KK9c','Anteil für Konto 0898 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3504, 'SKR03','9','Owner''s Equity','9599','KK9c','Anteil für Konto 0899 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3505, 'SKR03','9','Owner''s Equity','9600','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3506, 'SKR03','9','Owner''s Equity','9601','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3507, 'SKR03','9','Owner''s Equity','9602','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3508, 'SKR03','9','Owner''s Equity','9603','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3509, 'SKR03','9','Owner''s Equity','9604','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3510, 'SKR03','9','Owner''s Equity','9605','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3511, 'SKR03','9','Owner''s Equity','9606','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3512, 'SKR03','9','Owner''s Equity','9607','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3513, 'SKR03','9','Owner''s Equity','9608','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3514, 'SKR03','9','Owner''s Equity','9609','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3515, 'SKR03','9','Owner''s Equity','9610','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3516, 'SKR03','9','Owner''s Equity','9611','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3517, 'SKR03','9','Owner''s Equity','9612','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3518, 'SKR03','9','Owner''s Equity','9613','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3519, 'SKR03','9','Owner''s Equity','9614','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3520, 'SKR03','9','Owner''s Equity','9615','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3521, 'SKR03','9','Owner''s Equity','9616','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3522, 'SKR03','9','Owner''s Equity','9617','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3523, 'SKR03','9','Owner''s Equity','9618','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3524, 'SKR03','9','Owner''s Equity','9619','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3525, 'SKR03','9','Owner''s Equity','9620','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3526, 'SKR03','9','Owner''s Equity','9621','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3527, 'SKR03','9','Owner''s Equity','9622','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3528, 'SKR03','9','Owner''s Equity','9623','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3529, 'SKR03','9','Owner''s Equity','9624','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3530, 'SKR03','9','Owner''s Equity','9625','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3531, 'SKR03','9','Owner''s Equity','9626','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3532, 'SKR03','9','Owner''s Equity','9627','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3533, 'SKR03','9','Owner''s Equity','9628','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3534, 'SKR03','9','Owner''s Equity','9629','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3535, 'SKR03','9','Owner''s Equity','9630','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3536, 'SKR03','9','Owner''s Equity','9631','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3537, 'SKR03','9','Owner''s Equity','9632','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3538, 'SKR03','9','Owner''s Equity','9633','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3539, 'SKR03','9','Owner''s Equity','9634','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3540, 'SKR03','9','Owner''s Equity','9635','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3541, 'SKR03','9','Owner''s Equity','9636','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3542, 'SKR03','9','Owner''s Equity','9637','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3543, 'SKR03','9','Owner''s Equity','9638','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3544, 'SKR03','9','Owner''s Equity','9639','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3545, 'SKR03','9','Owner''s Equity','9640','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3546, 'SKR03','9','Owner''s Equity','9641','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3547, 'SKR03','9','Owner''s Equity','9642','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3548, 'SKR03','9','Owner''s Equity','9643','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3549, 'SKR03','9','Owner''s Equity','9644','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3550, 'SKR03','9','Owner''s Equity','9645','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3551, 'SKR03','9','Owner''s Equity','9646','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3552, 'SKR03','9','Owner''s Equity','9647','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3553, 'SKR03','9','Owner''s Equity','9648','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3554, 'SKR03','9','Owner''s Equity','9649','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3555, 'SKR03','9','Owner''s Equity','9650','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3556, 'SKR03','9','Owner''s Equity','9651','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3557, 'SKR03','9','Owner''s Equity','9652','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3558, 'SKR03','9','Owner''s Equity','9653','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3559, 'SKR03','9','Owner''s Equity','9654','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3560, 'SKR03','9','Owner''s Equity','9655','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3561, 'SKR03','9','Owner''s Equity','9656','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3562, 'SKR03','9','Owner''s Equity','9657','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3563, 'SKR03','9','Owner''s Equity','9658','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3564, 'SKR03','9','Owner''s Equity','9659','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3565, 'SKR03','9','Owner''s Equity','9690','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3566, 'SKR03','9','Owner''s Equity','9691','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3567, 'SKR03','9','Owner''s Equity','9692','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3568, 'SKR03','9','Owner''s Equity','9693','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3569, 'SKR03','9','Owner''s Equity','9694','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3570, 'SKR03','9','Owner''s Equity','9695','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3571, 'SKR03','9','Owner''s Equity','9696','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3572, 'SKR03','9','Owner''s Equity','9697','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3573, 'SKR03','9','Owner''s Equity','9698','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3574, 'SKR03','9','Owner''s Equity','9699','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3575, 'SKR03','9','Owner''s Equity','9700','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3576, 'SKR03','9','Owner''s Equity','9701','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3577, 'SKR03','9','Owner''s Equity','9702','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3578, 'SKR03','9','Owner''s Equity','9703','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3579, 'SKR03','9','Owner''s Equity','9704','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3580, 'SKR03','9','Owner''s Equity','9705','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3581, 'SKR03','9','Owner''s Equity','9706','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3582, 'SKR03','9','Owner''s Equity','9707','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3583, 'SKR03','9','Owner''s Equity','9708','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3584, 'SKR03','9','Owner''s Equity','9709','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3585, 'SKR03','9','Owner''s Equity','9710','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3586, 'SKR03','9','Owner''s Equity','9711','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3587, 'SKR03','9','Owner''s Equity','9712','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3588, 'SKR03','9','Owner''s Equity','9713','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3589, 'SKR03','9','Owner''s Equity','9714','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3590, 'SKR03','9','Owner''s Equity','9715','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3591, 'SKR03','9','Owner''s Equity','9716','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3592, 'SKR03','9','Owner''s Equity','9717','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3593, 'SKR03','9','Owner''s Equity','9718','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3594, 'SKR03','9','Owner''s Equity','9719','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3595, 'SKR03','9','Owner''s Equity','9720','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3596, 'SKR03','9','Owner''s Equity','9721','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3597, 'SKR03','9','Owner''s Equity','9722','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3598, 'SKR03','9','Owner''s Equity','9723','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3599, 'SKR03','9','Owner''s Equity','9724','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3600, 'SKR03','9','Owner''s Equity','9725','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3601, 'SKR03','9','Owner''s Equity','9726','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3602, 'SKR03','9','Owner''s Equity','9727','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3603, 'SKR03','9','Owner''s Equity','9728','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3604, 'SKR03','9','Owner''s Equity','9729','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3605, 'SKR03','9','Owner''s Equity','9730','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3606, 'SKR03','9','Owner''s Equity','9731','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3607, 'SKR03','9','Owner''s Equity','9732','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3608, 'SKR03','9','Owner''s Equity','9733','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3609, 'SKR03','9','Owner''s Equity','9734','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3610, 'SKR03','9','Owner''s Equity','9735','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3611, 'SKR03','9','Owner''s Equity','9736','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3612, 'SKR03','9','Owner''s Equity','9737','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3613, 'SKR03','9','Owner''s Equity','9738','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3614, 'SKR03','9','Owner''s Equity','9739','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3615, 'SKR03','9','Owner''s Equity','9740','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3616, 'SKR03','9','Owner''s Equity','9741','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3617, 'SKR03','9','Owner''s Equity','9742','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3618, 'SKR03','9','Owner''s Equity','9743','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3619, 'SKR03','9','Owner''s Equity','9744','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3620, 'SKR03','9','Owner''s Equity','9745','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3621, 'SKR03','9','Owner''s Equity','9746','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3622, 'SKR03','9','Owner''s Equity','9747','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3623, 'SKR03','9','Owner''s Equity','9748','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3624, 'SKR03','9','Owner''s Equity','9749','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3625, 'SKR03','9','Owner''s Equity','9750','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3626, 'SKR03','9','Owner''s Equity','9751','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3627, 'SKR03','9','Owner''s Equity','9752','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3628, 'SKR03','9','Owner''s Equity','9753','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3629, 'SKR03','9','Owner''s Equity','9754','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3630, 'SKR03','9','Owner''s Equity','9755','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3631, 'SKR03','9','Owner''s Equity','9756','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3632, 'SKR03','9','Owner''s Equity','9757','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3633, 'SKR03','9','Owner''s Equity','9758','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3634, 'SKR03','9','Owner''s Equity','9759','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3635, 'SKR03','9','Owner''s Equity','9760','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3636, 'SKR03','9','Owner''s Equity','9761','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3637, 'SKR03','9','Owner''s Equity','9762','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3638, 'SKR03','9','Owner''s Equity','9763','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3639, 'SKR03','9','Owner''s Equity','9764','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3640, 'SKR03','9','Owner''s Equity','9765','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3641, 'SKR03','9','Owner''s Equity','9766','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3642, 'SKR03','9','Owner''s Equity','9767','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3643, 'SKR03','9','Owner''s Equity','9768','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3644, 'SKR03','9','Owner''s Equity','9769','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3645, 'SKR03','9','Owner''s Equity','9770','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3646, 'SKR03','9','Owner''s Equity','9771','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3647, 'SKR03','9','Owner''s Equity','9772','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3648, 'SKR03','9','Owner''s Equity','9773','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3649, 'SKR03','9','Owner''s Equity','9774','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3650, 'SKR03','9','Owner''s Equity','9775','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3651, 'SKR03','9','Owner''s Equity','9776','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3652, 'SKR03','9','Owner''s Equity','9777','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3653, 'SKR03','9','Owner''s Equity','9778','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3654, 'SKR03','9','Owner''s Equity','9779','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3655, 'SKR03','9','Owner''s Equity','9780','KK9c','Anteil für Konto 9840 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3656, 'SKR03','9','Owner''s Equity','9781','KK9c','Anteil für Konto 9841 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3657, 'SKR03','9','Owner''s Equity','9782','KK9c','Anteil für Konto 9842 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3658, 'SKR03','9','Owner''s Equity','9783','KK9c','Anteil für Konto 9843 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3659, 'SKR03','9','Owner''s Equity','9784','KK9c','Anteil für Konto 9844 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3660, 'SKR03','9','Owner''s Equity','9785','KK9c','Anteil für Konto 9845 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3661, 'SKR03','9','Owner''s Equity','9786','KK9c','Anteil für Konto 9846 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3662, 'SKR03','9','Owner''s Equity','9787','KK9c','Anteil für Konto 9847 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3663, 'SKR03','9','Owner''s Equity','9788','KK9c','Anteil für Konto 9848 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3664, 'SKR03','9','Owner''s Equity','9789','KK9c','Anteil für Konto 9849 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3665, 'SKR03','9','Owner''s Equity','9790','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3666, 'SKR03','9','Owner''s Equity','9791','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3667, 'SKR03','9','Owner''s Equity','9792','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3668, 'SKR03','9','Owner''s Equity','9793','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3669, 'SKR03','9','Owner''s Equity','9794','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3670, 'SKR03','9','Owner''s Equity','9795','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3671, 'SKR03','9','Owner''s Equity','9796','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3672, 'SKR03','9','Owner''s Equity','9797','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3673, 'SKR03','9','Owner''s Equity','9798','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3674, 'SKR03','9','Owner''s Equity','9799','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3675, 'SKR03','9','Owner''s Equity','9800','KK9c','Lösch- und Korrekturschlüssel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3676, 'SKR03','9','Owner''s Equity','9801','KK9c','Lösch- und Korrekturschlüssel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3677, 'SKR03','0','Owner''s Equity','KK9d','KK9','Kapital Personenhandelsgesellschaft Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3678, 'SKR03','9','Owner''s Equity','9810','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3679, 'SKR03','9','Owner''s Equity','9811','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3680, 'SKR03','9','Owner''s Equity','9812','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3681, 'SKR03','9','Owner''s Equity','9813','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3682, 'SKR03','9','Owner''s Equity','9814','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3683, 'SKR03','9','Owner''s Equity','9815','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3684, 'SKR03','9','Owner''s Equity','9816','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3685, 'SKR03','9','Owner''s Equity','9817','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3686, 'SKR03','9','Owner''s Equity','9818','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3687, 'SKR03','9','Owner''s Equity','9819','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3688, 'SKR03','9','Owner''s Equity','9820','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3689, 'SKR03','9','Owner''s Equity','9821','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3690, 'SKR03','9','Owner''s Equity','9822','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3691, 'SKR03','9','Owner''s Equity','9823','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3692, 'SKR03','9','Owner''s Equity','9824','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3693, 'SKR03','9','Owner''s Equity','9825','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3694, 'SKR03','9','Owner''s Equity','9826','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3695, 'SKR03','9','Owner''s Equity','9827','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3696, 'SKR03','9','Owner''s Equity','9828','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3697, 'SKR03','9','Owner''s Equity','9829','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3698, 'SKR03','9','Owner''s Equity','9830','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3699, 'SKR03','9','Owner''s Equity','9831','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3700, 'SKR03','9','Owner''s Equity','9832','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3701, 'SKR03','9','Owner''s Equity','9833','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3702, 'SKR03','9','Owner''s Equity','9834','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3703, 'SKR03','9','Owner''s Equity','9835','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3704, 'SKR03','9','Owner''s Equity','9836','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3705, 'SKR03','9','Owner''s Equity','9837','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3706, 'SKR03','9','Owner''s Equity','9838','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3707, 'SKR03','9','Owner''s Equity','9839','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3708, 'SKR03','0','Owner''s Equity','KK9e','KK9','Kapital Personenhandelsgesellschaft Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3709, 'SKR03','9','Owner''s Equity','9840','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3710, 'SKR03','9','Owner''s Equity','9841','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3711, 'SKR03','9','Owner''s Equity','9842','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3712, 'SKR03','9','Owner''s Equity','9843','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3713, 'SKR03','9','Owner''s Equity','9844','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3714, 'SKR03','9','Owner''s Equity','9845','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3715, 'SKR03','9','Owner''s Equity','9846','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3716, 'SKR03','9','Owner''s Equity','9847','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3717, 'SKR03','9','Owner''s Equity','9848','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3718, 'SKR03','9','Owner''s Equity','9849','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3719, 'SKR03','9','Owner''s Equity','9850','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3720, 'SKR03','9','Owner''s Equity','9851','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3721, 'SKR03','9','Owner''s Equity','9852','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3722, 'SKR03','9','Owner''s Equity','9853','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3723, 'SKR03','9','Owner''s Equity','9854','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3724, 'SKR03','9','Owner''s Equity','9855','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3725, 'SKR03','9','Owner''s Equity','9856','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3726, 'SKR03','9','Owner''s Equity','9857','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3727, 'SKR03','9','Owner''s Equity','9858','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3728, 'SKR03','9','Owner''s Equity','9859','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3729, 'SKR03','0','Owner''s Equity','KK9f','KK9','Einzahlungsverpflichtungen im Bereich der Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3730, 'SKR03','9','Owner''s Equity','9860','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3731, 'SKR03','9','Owner''s Equity','9861','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3732, 'SKR03','9','Owner''s Equity','9862','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3733, 'SKR03','9','Owner''s Equity','9863','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3734, 'SKR03','9','Owner''s Equity','9864','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3735, 'SKR03','9','Owner''s Equity','9865','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3736, 'SKR03','9','Owner''s Equity','9866','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3737, 'SKR03','9','Owner''s Equity','9867','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3738, 'SKR03','9','Owner''s Equity','9868','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3739, 'SKR03','9','Owner''s Equity','9869','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3740, 'SKR03','9','Owner''s Equity','9870','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3741, 'SKR03','9','Owner''s Equity','9871','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3742, 'SKR03','9','Owner''s Equity','9872','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3743, 'SKR03','9','Owner''s Equity','9873','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3744, 'SKR03','9','Owner''s Equity','9874','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3745, 'SKR03','9','Owner''s Equity','9875','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3746, 'SKR03','9','Owner''s Equity','9876','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3747, 'SKR03','9','Owner''s Equity','9877','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3748, 'SKR03','9','Owner''s Equity','9878','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3749, 'SKR03','9','Owner''s Equity','9879','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3750, 'SKR03','0','Owner''s Equity','KK9g','KK9','Ausgleichsposten für aktivierte eigene Anteile und Bilanzierungshilfen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3751, 'SKR03','9','Owner''s Equity','9880','KK9g','Ausgleichsposten für aktivierte eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3752, 'SKR03','9','Owner''s Equity','9882','KK9g','Ausgleichsposten für aktivierte Bilanzierungshilfen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3753, 'SKR03','0','Owner''s Equity','KK9h','KK9','Nicht durch Vermögenseinlagen gedeckte Entnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3754, 'SKR03','9','Owner''s Equity','9883','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3755, 'SKR03','9','Owner''s Equity','9884','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3756, 'SKR03','0','Owner''s Equity','KK9i','KK9','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3757, 'SKR03','9','Owner''s Equity','9885','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3758, 'SKR03','9','Owner''s Equity','9886','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3759, 'SKR03','0','Owner''s Equity','KK9j','KK9','Steueraufwand der Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3760, 'SKR03','9','Owner''s Equity','9887','KK9j','Steueraufwand der Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3761, 'SKR03','9','Owner''s Equity','9889','KK9j','Gegenkonto zu 9887',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3762, 'SKR03','0','Owner''s Equity','KK9k','KK9','Statistische Konten für Gewinnzuschlag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3763, 'SKR03','9','Owner''s Equity','9890','KK9k','Statistische Konto für den Gewinnzuschlag nach §§6b 6c und 6g EStG (Haben-Buchung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3764, 'SKR03','9','Owner''s Equity','9891','KK9k','Statistische Konto für den Gewinnzuschlag - Gegenkonto zu 9890',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3765, 'SKR03','0','XXXXX','KK9l','KK9','Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3766, 'SKR03','9','XXXXX','9893','KK9l','Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3767, 'SKR03','9','XXXXX','9894','KK9l','Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3768, 'SKR03','9','XXXXX','9895','KK9l','Gegenkonto 9893 - 9894 für die Aufteilung der Umsatzsteuer (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3769, 'SKR03','9','XXXXX','9896','KK9l','Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3770, 'SKR03','9','XXXXX','9897','KK9l','Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3771, 'SKR03','9','Owner''s Equity','9899','KK9l','Gegenkonto zu 9899 - 9897 für die Aufteilung der Vorsteuer (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3772, 'SKR03','0','XXXXX','KK9m','KK9','Statistische Konten zu § 4 (4a) EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3773, 'SKR03','9','XXXXX','9910','KK9m','Gegenkonto zur Minderung der Entnahmen § 4 (4a) EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3774, 'SKR03','9','XXXXX','9911','KK9m','Minderung der Entnahmen § 4 (4a) EStG (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3775, 'SKR03','9','XXXXX','9912','KK9m','Erhöhung der Entnahmen § 4 (4a) EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3776, 'SKR03','9','XXXXX','9913','KK9m','Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3777, 'SKR03','0','XXXXX','KK9n','KK9','Statistische Konten für Kinderbetreuungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3778, 'SKR03','9','XXXXX','9918','KK9n','Kinderbetreuungskosten (wie Betriebsausgaben steuerlich anzusetzender Betrag)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3779, 'SKR03','9','XXXXX','9919','KK9n','Gegenkonto zu 9918 (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3780, 'SKR03','0','XXXXX','KK9o','KK9','Ausstehende Einlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3781, 'SKR03','9','Owner''s Equity','9920','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3782, 'SKR03','9','Owner''s Equity','9921','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3783, 'SKR03','9','Owner''s Equity','9922','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3784, 'SKR03','9','Owner''s Equity','9923','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3785, 'SKR03','9','Owner''s Equity','9924','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3786, 'SKR03','9','Owner''s Equity','9925','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3787, 'SKR03','9','Owner''s Equity','9926','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3788, 'SKR03','9','Owner''s Equity','9927','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3789, 'SKR03','9','Owner''s Equity','9928','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3790, 'SKR03','9','Owner''s Equity','9929','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3791, 'SKR03','9','Owner''s Equity','9930','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3792, 'SKR03','9','Owner''s Equity','9931','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3793, 'SKR03','9','Owner''s Equity','9932','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3794, 'SKR03','9','Owner''s Equity','9933','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3795, 'SKR03','9','Owner''s Equity','9934','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3796, 'SKR03','9','Owner''s Equity','9935','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3797, 'SKR03','9','Owner''s Equity','9936','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3798, 'SKR03','9','Owner''s Equity','9937','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3799, 'SKR03','9','Owner''s Equity','9938','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3800, 'SKR03','9','Owner''s Equity','9939','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3801, 'SKR03','9','Owner''s Equity','9940','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3802, 'SKR03','9','Owner''s Equity','9941','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3803, 'SKR03','9','Owner''s Equity','9942','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3804, 'SKR03','9','Owner''s Equity','9943','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3805, 'SKR03','9','Owner''s Equity','9944','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3806, 'SKR03','9','Owner''s Equity','9945','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3807, 'SKR03','9','Owner''s Equity','9946','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3808, 'SKR03','9','Owner''s Equity','9947','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3809, 'SKR03','9','Owner''s Equity','9948','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3810, 'SKR03','9','Owner''s Equity','9949','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3811, 'SKR03','9','Owner''s Equity','9950','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3812, 'SKR03','9','Owner''s Equity','9951','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3813, 'SKR03','9','Owner''s Equity','9952','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3814, 'SKR03','9','Owner''s Equity','9953','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3815, 'SKR03','9','Owner''s Equity','9954','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3816, 'SKR03','9','Owner''s Equity','9955','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3817, 'SKR03','9','Owner''s Equity','9956','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3818, 'SKR03','9','Owner''s Equity','9957','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3819, 'SKR03','9','Owner''s Equity','9958','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3820, 'SKR03','9','Owner''s Equity','9959','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3821, 'SKR03','9','Memo','9900',NULL,'SO Commitment',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3822, 'SKR03','9','Memo','9910',NULL,'PO Commitment',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3823, 'SKR03','9','Liability','9901',NULL,'Steuer Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3824, 'SKR03','6','Asset','6000',NULL,'Work In Process',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3825, 'SKR03','6','Asset','6001',NULL,'Floor Stock',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3826, 'SKR03','6','Expense','6002',NULL,'Cost Of Production',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3827, 'SKR03','6','Expense','6003',NULL,'Scrap',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3828, 'SKR03','5','Expense','51130',NULL,'Outside Processing (Subcontract)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3829, 'SKR03','5','Expense','58400',NULL,'Using Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3830, 'SKR03','5','Expense','58500',NULL,'Method Change Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3831, 'SKR03','5','Expense','58600',NULL,'Rate Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3832, 'SKR03','5','Expense','58700',NULL,'Mix Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3833, 'SKR03','8','Expense','83100',NULL,'Labor (Absorbed)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3834, 'SKR03','8','Expense','83200',NULL,'Burden (Absorbed)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3835, 'SKR03','8','Expense','83300',NULL,'Overhead (Applied)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3836, 'SKR03','8','Expense','83400',NULL,'Average Cost Variance',1); -- SKR04 -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Anlagevermögen', 0, 0, 'Anlagevermögen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 100, 0, 'Entgeltlich erworbene Konzessionen, gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 110, 100, 'Konzessionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 120, 100, 'Gewerbliche Schutzrechte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 130, 100, 'Ähnliche Rechte und Werte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 135, 100, 'EDV-Software'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 140, 100, 'Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten und Werte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 143, 0, 'Selbst geschaffene immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 144, 143, 'EDV-Software'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 145, 143, 'Lizenzen und Franchiseverträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 146, 143, 'Konzessionen und gewerbliche Schutzrechte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 147, 143, 'Rezepte, Verfahren, Prototypen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 148, 143, 'Immaterielle Vermögensgegenstände in Entwicklung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 150, 0, 'Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 160, 0, 'Verschmelzungsmehrwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 170, 0, 'Geleistete Anzahlungen auf immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 179, 0, 'Anzahlungen auf Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 200, 0, 'Grundstücke, grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstück'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 210, 200, 'Grundstücksgleiche Rechte ohne Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 215, 200, 'Unbebaute Grundstücke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 220, 200, 'Grundstücksgleiche Rechte (Erbbaurecht, Dauerwohnrecht, unbebaute Grundstücke)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 225, 200, 'Grundstücke mit Substanzverkehr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 229, 200, 'Grundstücksanteil des häuslichen Arbeitszimmers'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 230, 200, 'Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 235, 200, 'Grundstückswerte eigener bebauter Grundstücke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 240, 200, 'Geschäftsbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 250, 200, 'Fabrikbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 260, 200, 'Andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 270, 200, 'Garagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 280, 200, 'Außenanlagen für Geschäfts-, Fabrik- und andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 285, 200, 'Hof- und Wegbefestigungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 290, 200, 'Einrichtungen für Geschäfts-. Fabrik- und andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 300, 200, 'Wohnbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 305, 200, 'Garagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 310, 200, 'Außenanlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 315, 200, 'Hof- und Wegbefestigungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 320, 200, 'Einrichtungen für Wohnbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 329, 200, 'Gebäudeteil des häuslichen Arbeitszimmers'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 330, 200, 'Bauten auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 340, 200, 'Geschäftsbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 350, 200, 'Fabrikbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 360, 200, 'Wohnbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 370, 200, 'Andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 380, 200, 'Garagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 390, 200, 'Außenanlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 395, 200, 'Hof- und Wegbefestigungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 398, 200, 'Einrichtungen für Geschäfts-. Fabrik-, Wohn- und andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 400, 0, 'Technische Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 420, 400, 'Technische Anlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 440, 400, 'Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 450, 400, 'Transportanlagen und Ähnlichen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 460, 400, 'Maschinengebundene Werkzeuge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 470, 400, 'Betriebsvorrichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 500, 0, 'Andere Anlagen, Betriebs- und Geschäftsausstattungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 510, 500, 'Andere Anlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 520, 500, 'PKW'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 540, 500, 'LKW'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 560, 500, 'Sonstige Transportmittel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 620, 500, 'Werkzeuge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 630, 500, 'Betriebsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 635, 500, 'Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 640, 500, 'Ladeneinrichtung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 650, 500, 'Büroeinrichtung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 660, 500, 'Gerüst- und Schalungsmaterial'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 670, 500, 'Geringwertige Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 675, 500, 'Wirtschaftsgüter (Sammelposten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 680, 500, 'Einbauten in fremde Grundstücke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 690, 500, 'Sonstige Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 700, 0, 'Geleistete Anzahlungen und Anlagen im Bau'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 705, 700, 'Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 710, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf eigenen Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 720, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 725, 700, 'Wohnbauten im Bau auf eigenen Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 735, 700, 'Anzahlungen auf Wohnbauten auf eigene Grundstücken und grundstücksgleichen Rechten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 740, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 750, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 755, 700, 'Wohnbauten im Bau auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 765, 700, 'Anzahlungen auf Wohnbauten auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 770, 700, 'Technische Anlagen und Maschinen im Bau'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 780, 700, 'Anzahlungen auf technische Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 785, 700, 'Andere Anlagen, Betriebs- und Geschäftsausstattung im Bau'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 795, 700, 'Anzahlungen auf andere Anlagen, Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 800, 700, 'Anteile an verbundenen Unternehmen (Anlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 803, 800, 'Anteile an verbundenen Unternehmen, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 804, 800, 'Anteile an verbundenen Unternehmen, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 805, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 808, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 809, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 810, 700, 'Ausleihungen an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 813, 810, 'Ausleihungen an verbundene Unternehmen, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 814, 810, 'Ausleihungen an verbundene Unternehmen, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 815, 810, 'Ausleihungen an verbundene Unternehmen, Einzelunternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 820, 700, 'Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 829, 820, 'Beteiligung einer GmbH & Co. KG an einer Komplementär GmbH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 830, 820, 'Typisch stille Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 840, 820, 'Atypische stille Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 850, 820, 'Beteiligungen an Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 860, 820, 'Beteiligungen an Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 880, 700, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 883, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 885, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 900, 0, 'Wertpapiere des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 910, 900, 'Wertpapiere mit Gewinnbeteiligungsansprüchen, die dem Teileinkünfteverfahren unterliegen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 920, 900, 'Festverzinsliche Wertpapiere'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 930, 0, 'Sonstige Ausleihungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 940, 930, 'Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 960, 930, 'Ausleihungen an Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an GmbH-Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 962, 930, 'Ausleihungen an persönlich haftende Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 964, 930, 'Ausleihungen an stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 970, 930, 'Ausleihungen an nahe stehende Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 980, 0, 'Genossenschaftsanteile zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 990, 0, 'Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Umlaufvermögen', 1, 1, 'Umlaufvermögen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1000, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1001, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1002, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1003, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1004, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1005, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1006, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1007, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1008, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1009, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1010, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1011, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1012, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1013, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1014, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1015, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1016, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1017, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1018, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1019, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1020, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1021, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1022, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1023, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1024, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1025, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1026, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1027, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1028, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1029, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1030, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1031, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1032, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1033, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1034, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1035, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1036, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1037, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1038, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1039, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1040, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1041, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1042, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1043, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1044, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1045, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1046, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1047, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1048, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1049, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1050, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1051, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1052, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1053, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1054, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1055, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1056, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1057, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1058, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1059, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1060, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1061, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1062, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1063, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1064, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1065, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1066, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1067, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1068, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1069, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1070, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1071, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1072, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1073, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1074, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1075, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1076, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1077, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1078, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1079, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1080, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1081, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1082, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1083, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1084, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1085, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1086, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1087, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1088, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1089, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1090, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1091, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1092, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1093, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1094, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1095, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1096, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1097, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1098, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1099, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1100, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1101, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1102, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1103, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1104, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1105, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1106, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1107, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1108, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1109, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1110, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1111, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1112, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1113, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1114, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1115, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1116, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1117, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1118, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1119, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1120, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1121, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1122, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1123, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1124, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1125, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1126, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1127, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1128, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1129, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1130, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1131, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1132, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1133, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1134, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1135, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1136, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1137, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1138, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1139, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1140, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1141, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1142, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1143, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1144, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1145, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1146, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1147, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1148, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1149, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1150, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1151, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1152, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1153, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1154, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1155, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1156, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1157, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1158, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1159, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1160, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1161, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1162, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1163, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1164, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1165, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1166, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1167, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1168, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1169, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1170, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1171, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1172, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1173, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1174, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1175, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1176, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1177, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1178, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1179, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1180, 1, 'Geleistete Anzahlungen auf Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1181, 1180, 'Geleistete Anzahlungen auf 7% Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1182, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1183, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1184, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1185, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1186, 1180, 'Geleistete Anzahlungen auf 19% Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1190, 1180, 'Erhaltene Anzahlungen auf Bestellungen (von Vorräten offen abgesetzt)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1200, 1, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1201, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1202, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1203, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1204, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1205, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1206, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1210, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1211, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1212, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1213, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1214, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1215, 1200, 'Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmers (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1216, 1200, 'Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1217, 1200, 'Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1218, 1200, 'Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1219, 1200, 'Gegenkonto 1215-1218 bei Aufteilung der Forderungen nach Steuersätzen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1220, 1200, 'Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1221, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1225, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1230, 1200, 'Wechsel aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1231, 1200, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1232, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1235, 1200, 'Wechsel aus Lieferungen und Leistungen, Bundesbankfertig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1240, 1200, 'Zweifelhafte Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1241, 1200, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1245, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1246, 1200, 'Einzelwertberichtigungen auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1247, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1248, 1200, 'Pauschalwertberichtigung auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1249, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1250, 1200, 'Forderungen aus Lieferungen und Leistungen gegen Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1251, 1200, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1255, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1258, 1200, 'Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1259, 1200, 'Gegenkonto 1221-1229, 1240-1245, 1250-1257, 1270-1279, 1290-1297 bei Aufteilung Debitorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1260, 1, 'Forderungen gegen verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1261, 1260, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1265, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1266, 1260, 'Besitzwechsel gegen verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1267, 1260, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1268, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1269, 1260, 'Besitzwechsel gegen verbundene Unternehmen, bundesbankfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1270, 1260, 'Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1271, 1260, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1275, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1276, 1260, 'Wertberichtigung auf Forderungen gegen verbundene Unternehmen – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1277, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1280, 1, 'Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1281, 1280, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1285, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1286, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1287, 1280, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1288, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1289, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht, bundesbankfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1290, 1280, 'Forderungen aus Lieferungen und Leistungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1291, 1280, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1295, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1296, 1280, 'Wertberichtigungen auf Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht – Restlaufzeit 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1297, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1298, 1, 'Ausstehende Einlagen auf das gezeichnete Kapital, eingefordert (Forderungen, nicht eingeforderte ausstehende Einlagen s. Konto 2910)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1299, 1, 'Nachschüsse (Forderungen, Gegenkonto 2929)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1300, 1, 'Sonstige Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1301, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1305, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1307, 1300, 'Forderungen gegen GmbH-Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1308, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1309, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1310, 1300, 'Forderungen gegen Vorstandsmitglieder und Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1311, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1315, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1317, 1300, 'Forderungen gegen persönlich haftende Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1318, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1319, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1320, 1300, 'Forderungen gegen Aufsichtsrats- und Beirats-Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1321, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1325, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1327, 1300, 'Forderungen gegen Kommanditisten und atypisch stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1328, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1329, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1330, 1300, 'Forderungen gegen sonstige Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1331, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1335, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1337, 1300, 'Forderungen gegen typisch stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1338, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1339, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1340, 1300, 'Forderungen gegen Personal aus Lohn- und Gehaltsabrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1341, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1345, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1349, 1300, 'Ansprüche aus betrieblicher Altersversorgung und Pensionsansprüche (Mitunternehmer)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1350, 1300, 'Kautionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1351, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1355, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1360, 1300, 'Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1361, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1365, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1369, 1300, 'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1370, 1300, 'Durchlaufende Posten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1374, 1300, 'Fremdgeld'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1375, 1300, 'Agenturwarenabrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1376, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 2 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1377, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 2 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1378, 1300, 'Ansprüche aus Rückdeckungsversicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1380, 1300, 'Vermögensgegenstände zur Erfüllung von Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1381, 1300, 'Vermögensgegenstände zur Saldierung mit Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1382, 1300, 'Vermögensgegenstände zur Erfüllung von mit der Altersvorsorge vergleichbaren langfristigen Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1383, 1300, 'Vermögensgegenstände zur Saldierung mit der Altersversorgung vergleichbaren langfristigen Verpflichtungen nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1390, 1300, 'GmbH-Anteile zum kurzfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1391, 1300, 'Forderungen gegen Arbeitsgemeinschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1393, 1300, 'Genussrechte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1394, 1300, 'Einzahlungsansprüche zu Nebenleistungen oder Zuzahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1395, 1300, 'Genossenschaftsanteile zum kurzfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1396, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1397, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1398, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1399, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1400, 1300, 'Abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1401, 1300, 'Abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1402, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1403, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1404, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1405, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1406, 1300, 'Abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1407, 1300, 'Abziehbare Vorsteuer nach § 13b UStG 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1408, 1300, 'Abziehbare Vorsteuer nach § 13b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1409, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1410, 1300, 'Aufzuteilende Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1411, 1300, 'Aufzuteilende Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1412, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1413, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1414, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1415, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1416, 1300, 'Aufzuteilende Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1417, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1418, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1419, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1420, 1300, 'Forderungen aus Umsatzsteuer-Vorauszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1421, 1300, 'Umsatzsteuerforderungen laufendes Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1422, 1300, 'Umsatzsteuerforderungen Vorjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1425, 1300, 'Umsatzsteuerforderungen frühere Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1427, 1300, 'Forderungen aus entrichteten Verbrauchsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1431, 1300, 'Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1432, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Ust-Identifikationsnummer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1433, 1300, 'Entstandene Einfuhrumsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1434, 1300, 'Vorsteuer in Folgeperiode/im Folgejahr abziehbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1435, 1300, 'Forderungen aus Gewerbesteuerüberzahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1436, 1300, 'Vorsteuer aus Erwerb als letzter Abnehmer innerhalb eine Dreiecksgeschäfts'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1440, 1300, 'Steuererstattungsansprüche gegenüber Ländern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1450, 1300, 'Körperschaftsteuerrückforderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1452, 1300, 'Körperschaftsteuerrückforderungen nach § 37 KStG – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1453, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1456, 1300, 'Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1457, 1300, 'Forderung gegenüber Bundesagentur für Arbeit'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1460, 1300, 'Geldtransit'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1480, 1300, 'Gegenkonto Vorsteuer § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1481, 1300, 'Auflösung Vorsteuer aus Vorjahr § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1482, 1300, 'Vorsteuer aus Investitionen § 4/3 EstG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1483, 1300, 'Gegenkonto für Vorsteuer nach Durchschnittsätzen für § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1484, 1300, 'Vorsteuer nach allgemeinen Durchschittssätzen UstVA Kz. 63'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1485, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, ergebniswirksam'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1486, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, nicht ergebniswirksam'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1487, 1300, 'Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1490, 1300, 'Verrechnungskonto Ist-Versteuerung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1495, 1300, 'Verrechnungskonto erhaltene Anzahlungen bei Buchungen über Debitorenkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1496, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1497, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1498, 1300, 'Überleitungskonto Kostenstellen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1500, 1, 'Anteile an verbundenen Unternehmen (Umlaufvermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1504, 1, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1510, 1, 'Sonstige Wertpapiere'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1520, 1510, 'Finanzwechsel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1525, 1510, 'Andere Wertpapiere mit unwesentlichen Wertschwankungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1530, 1510, 'Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1550, 1, 'Schecks'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1600, 1, 'Kasse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1610, 1600, 'Nebenkasse 1'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1620, 1600, 'Nebenkasse 2'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1700, 1, 'Bank (Postbank)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1720, 1700, 'Bank (Postbank2)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1730, 1700, 'Bank (Postbank 3)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1780, 1700, 'LZB-Guthaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1790, 1700, 'Bundesbankguthaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1800, 1, 'Bank'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1810, 1800, 'Bank 1'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1820, 1800, 'Bank 2'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1830, 1800, 'Bank 3'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1840, 1800, 'Bank 4'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1850, 1800, 'Bank 5'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1889, 1800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1890, 1800, 'Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition (nicht im Finanzmittelfonds enthalten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1895, 1800, 'Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1900, 1, 'Aktive Rechnungsabgrenzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1920, 1900, 'Als Aufwand berücksichtigte Zölle und Verbrauchsteuer auf Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1930, 1900, 'Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1940, 1900, 'Damnum/Disagio'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1950, 1, 'Aktive latente Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapitalkonten/Fremdkapitalkonten', 2, 2, 'Eigenkapitalkonten/Fremdkapitalkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2000, 2, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2001, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2002, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2003, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2004, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2005, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2006, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2007, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2008, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2009, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2010, 2, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2011, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2012, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2013, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2014, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2015, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2016, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2017, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2018, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2019, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2020, 2, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2021, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2022, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2023, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2024, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2025, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2026, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2027, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2028, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2029, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2030, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2031, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2032, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2033, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2034, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2035, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2036, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2037, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2038, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2039, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2040, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2041, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2042, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2043, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2044, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2045, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2046, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2047, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2048, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2049, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2050, 2, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2051, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2052, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2053, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2054, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2055, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2056, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2057, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2058, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2059, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2060, 2, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2061, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2062, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2063, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2064, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2065, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2066, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2067, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2068, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2069, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2070, 2, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2071, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2072, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2073, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2074, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2075, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2076, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2077, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2078, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2079, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2080, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2081, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2082, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2083, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2084, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2085, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2086, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2087, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2088, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2089, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2090, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2091, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2092, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2093, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2094, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2095, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2096, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2097, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2098, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2099, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2100, 2, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2101, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2102, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2103, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'prp', 2104, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2105, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2106, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2107, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2108, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2109, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2110, 2, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2111, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2112, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2113, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2114, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2115, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2116, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2117, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2118, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2119, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2120, 2, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2121, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2122, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2123, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2124, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2125, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2126, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2127, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2128, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2129, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2130, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2131, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2132, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2133, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2134, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2135, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2136, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2137, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2138, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2139, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2140, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2141, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2142, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2143, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2144, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2145, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2146, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2147, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2148, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2149, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2150, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2151, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2152, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2153, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2154, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2155, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2156, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2157, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2158, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2159, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2160, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2161, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2162, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2163, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2164, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2165, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2166, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2167, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2168, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2169, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2170, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2171, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2172, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2173, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2174, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2175, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2176, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2177, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2178, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2179, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2180, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2181, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2182, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2183, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2184, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2185, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2186, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2187, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2188, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2189, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2190, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2191, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2192, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2193, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2194, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2195, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2196, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2197, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2198, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2199, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2200, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2201, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2202, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2203, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2204, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2205, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2206, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2207, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2208, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2209, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2210, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2211, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2212, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2213, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2214, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2215, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2216, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2217, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2218, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2219, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2220, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2221, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2222, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2223, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2224, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2225, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2226, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2227, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2228, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2229, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2230, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2231, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2232, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2233, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2234, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2235, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2236, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2237, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2238, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2239, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2240, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2241, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2242, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2243, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2244, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2245, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2246, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2247, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2248, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2249, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2250, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2251, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2252, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2253, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2254, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2255, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2256, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2257, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2258, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2259, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2260, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2261, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2262, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2263, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2264, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2265, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2266, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2267, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2268, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2269, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2270, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2271, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2272, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2273, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2274, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2275, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2276, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2277, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2278, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2279, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2280, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2281, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2282, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2283, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2284, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2285, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2286, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2287, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2288, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2289, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2290, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2291, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2292, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2293, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2294, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2295, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2296, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2297, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2298, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2299, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2300, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2301, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2302, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2303, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2304, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2305, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2306, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2307, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2308, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2309, 2300, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2310, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2311, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2312, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2313, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2314, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2315, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2316, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2317, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2318, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2319, 2310, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2320, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2321, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2322, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2323, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2324, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2325, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2326, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2327, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2328, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2329, 2320, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2330, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2331, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2332, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2333, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2334, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2335, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2336, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2337, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2338, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2339, 2330, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2340, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2341, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2342, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2343, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2344, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2345, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2346, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2347, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2348, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2349, 2340, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2350, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2351, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2352, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2353, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2354, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2355, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2356, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2357, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2358, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2359, 2350, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2360, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2361, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2362, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2363, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2364, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2365, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2366, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2367, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2368, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2369, 2360, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2370, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2371, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2372, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2373, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2374, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2375, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2376, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2377, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2378, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2379, 2370, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2380, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2381, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2382, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2383, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2384, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2385, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2386, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2387, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2388, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2389, 2380, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2390, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2391, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2392, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2393, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2394, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2395, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2396, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2397, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2398, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2399, 2390, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2500, 2, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2501, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2502, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2503, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2504, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2505, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2506, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2507, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2508, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2509, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2510, 2, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2511, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2512, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2513, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2514, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2515, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2516, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2517, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2518, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2519, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2520, 2, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2521, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2522, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2523, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2524, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2525, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2526, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2527, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2528, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2529, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2530, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2531, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2532, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2533, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2534, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2535, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2536, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2537, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2538, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2539, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2540, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2541, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2542, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2543, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2544, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2545, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2546, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2547, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2548, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2549, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2550, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2551, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2552, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2553, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2554, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2555, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2556, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2557, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2558, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2559, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2560, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2561, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2562, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2563, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2564, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2565, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2566, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2567, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2568, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2569, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2570, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2571, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2572, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2573, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2574, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2575, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2576, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2577, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2578, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2579, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2580, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2581, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2582, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2583, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2584, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2585, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2586, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2587, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2588, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2589, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2590, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2591, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2592, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2593, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2594, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2595, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2596, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2597, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2598, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2599, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2600, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2601, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2602, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2603, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2604, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2605, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2606, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2607, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2608, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2609, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2610, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2611, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2612, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2613, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2614, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2615, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2616, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2617, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2618, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2619, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2620, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2621, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2622, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2623, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2624, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2625, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2626, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2627, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2628, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2629, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2630, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2631, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2632, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2633, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2634, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2635, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2636, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2637, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2638, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2639, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2640, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2641, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2642, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2643, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2644, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2645, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2646, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2647, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2648, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2649, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2650, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2651, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2652, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2653, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2654, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2655, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2656, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2657, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2658, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2659, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2660, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2661, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2662, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2663, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2664, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2665, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2666, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2667, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2668, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2669, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2670, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2671, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2672, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2673, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2674, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2675, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2676, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2677, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2678, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2679, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2680, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2681, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2682, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2683, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2684, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2685, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2686, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2687, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2688, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2689, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2690, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2691, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2692, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2693, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2694, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2695, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2696, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2697, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2698, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2699, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2700, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2701, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2702, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2703, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2704, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2705, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2706, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2707, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2708, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2709, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2710, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2711, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2712, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2713, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2714, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2715, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2716, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2717, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2718, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2719, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2720, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2721, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2722, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2723, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2724, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2725, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2726, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2727, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2728, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2729, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2730, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2731, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2732, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2733, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2734, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2735, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2736, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2737, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2738, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2739, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2740, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2741, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2742, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2743, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2744, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2745, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2746, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2747, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2748, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2749, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2750, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2751, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2752, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2753, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2754, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2755, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2756, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2757, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2758, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2759, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2760, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2761, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2762, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2763, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2764, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2765, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2766, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2767, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2768, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2769, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2770, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2771, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2772, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2773, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2774, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2775, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2776, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2777, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2778, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2779, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2780, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2781, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2782, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2783, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2784, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2785, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2786, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2787, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2788, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2789, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2790, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2791, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2792, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2793, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2794, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2795, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2796, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2797, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2798, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2799, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2900, 2, 'Gezeichnetes Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2901, 2900, 'Geschäftsguthaben der verbleibenden Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2902, 2900, 'Geschäftsguthaben der ausscheidenden Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2903, 2900, 'Geschäftsguthaben aus gekündigten Geschäftsanteilen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2906, 2900, 'Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2907, 2900, 'Gegenkonto Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2908, 2900, 'Kapitalerhöhung aus Gesellschaftsmitteln'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2909, 2900, 'Erworbene eigene Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2910, 2900, 'Ausstehende Einlagen auf das gezeichnete Kapital, nicht eingefordert (Passivausweis, vom gezeichneten Kapital offen abgesetzt; eingeforderte ausstehende Einlagen s. Konto 1289)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2920, 2, 'Kapitalrücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2925, 2920, 'Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2926, 2920, 'Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2927, 2920, 'Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2928, 2920, 'Kapitalrücklage durch Zuzahlungen in das Eigenkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2929, 2920, 'Nachschusskonto (Gegenkonto 1299)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2930, 2, 'Gesetzliche Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2935, 2930, 'Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2937, 3930, 'Andere Ergebnisrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2950, 2, 'Satzungsmäßige Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2959, 2950, 'Gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2960, 2, 'Andere Gewinnrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2961, 2960, 'Andere Gewinnrücklagen aus dem Erwerb eigener Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2962, 2960, 'Eigenkapitalanteil von Wertaufholungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2963, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2964, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Sachanlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2965, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Finanzanlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2966, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Auflösung der Sonderposten mit Rücklageanteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2967, 2960, 'Latente Steuern (Gewinnrücklage Haben) aus erfolgsneutralen Verrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2968, 2960, 'Latente Steuern (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2969, 2960, 'Rechnungsabgenzungsposten (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2970, 2, 'Gewinnvortrag vor Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2975, 2970, 'Gewinnvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2977, 2978, 'Verlustvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2978, 2, 'Verlustvortrag vor Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2979, 2, 'Vortrag auf neue Rechnung (Bilanz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2980, 2, 'Sonderposten mit Rücklageanteil, steuerfreie Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2981, 2, 'Sonderposten mit Rücklageanteil nach § 6b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2982, 2, 'Sonderposten mit Rücklageanteil nach EstR R 6.6'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2988, 2, 'Rücklage für Zuschüsse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2989, 2, 'Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2990, 2, 'Sonderposten mit Rücklageanteil, Sonderabschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2993, 2, 'Sonderposten mit Rücklageanteil nach § 7g Abs. 2 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2995, 2, 'Ausgleichsposten bei Entnahmen § 4g EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2997, 2, 'Sonderposten bei Rücklageanteil § 7g Abs. 5 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2999, 2, 'Sonderposten für Zuschüsse und Zulagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Fremdkapitalkonten', 3, 3, 'Fremdkapitalkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3000, 3, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3005, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen gegenüber Gesellschaftern oder nahestehenden Personen (10 % Beteiligung am Kapital)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3009, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3010, 3000, 'Rückstellungen für Direktzusagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3011, 3000, 'Rückstellungen für Zuschussverpflichtungen für Pensionskassen und Lebensversicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3015, 3000, 'Rückstellungen für pensionähnliche Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3020, 3, 'Steuerrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3030, 3020, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3035, 3020, 'Gewerbesteuerrückstellungen § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3040, 3020, 'Körperschaftsteuerrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3050, 3020, 'Steuerrückstellung aus Steuerstundung (BstBK)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3060, 3020, 'Rückstellungen für latente Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3065, 3020, 'Passive latente Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3070, 3, 'Sonstige Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3074, 3070, 'Rückstellungen für Personalkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3075, 3070, 'Rückstellungen für unterlassene Aufwendungen für Instandhaltung, Nachholung in den ersten drei Monaten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3076, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3077, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3079, 3070, 'Urlaubsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3085, 3070, 'Rückstellungen für Abraum- und Abfallbeseitigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3090, 3070, 'Rückstellungen für Gewährleistungen (Gegenkonto 6790)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3092, 3070, 'Rückstellungen für drohende Verluste aus schwebenden Geschäften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3095, 3070, 'Rückstellungen für Abschluss- und Prüfungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3096, 3070, 'Rückstellungen zur Erfüllung der Aufbewahrungspflichten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3098, 3070, 'Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB a. F.'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3099, 3070, 'Rückstellungen für Umweltschutz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3100, 3, 'Anleihen, nicht konvertibel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3101, 3100, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3105, 3100, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3110, 3100, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3120, 3100, 'Anleihen, konvertibel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3121, 3120, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3125, 3120, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3130, 3120, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3150, 3, 'Verbindlichkeiten gegenüber Kreditinstituten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3151, 3150, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3160, 3150, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3170, 3150, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3180, 3150, 'Verbindlichkeiten gegenüber Kreditinstituten aus Teilzahlungsverträgen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3181, 3180, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3190, 3180, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3200, 3180, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3210, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3211, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3212, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3213, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3214, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3215, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3216, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3217, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3218, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3219, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3220, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3221, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3222, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3223, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3224, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3225, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3226, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3227, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3228, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3229, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3230, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3231, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3232, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3233, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3234, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3235, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3236, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3237, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3238, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3239, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3240, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3241, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3242, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3243, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3244, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3245, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3246, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3247, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3248, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3249, 3150, 'Gegenkonto 3150-3109 bei Aufteilung der Konten 3210-3248'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3250, 3, 'Erhaltene Anzahlungen auf Bestellungen (Verbindlichkeiten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3260, 3250, 'Erhaltene, versteuerte Anzahlungen 7 % USt (Verbindlichkeiten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3261, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3262, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3263, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3264, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3270, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3271, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3272, 3250, 'Erhaltene, versteuerte Anzahlungen 19 % USt (Verbindlichkeiten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3273, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3274, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3280, 3250, 'Erhaltene Anzahlungen – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3284, 3280, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3285, 3280, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3300, 3, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3301, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3302, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3303, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3305, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3306, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3307, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3309, 3300, 'Gegenkonto 3305-3307 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3310, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3311, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3312, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3313, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3334, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3335, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3337, 3335, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3338, 3335, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3340, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3341, 3340, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3345, 3340, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3348, 3340, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3349, 3300, 'Gegenkonto 3335-3348, 3420-3449, 3470-3499 bei Aufteilung Kreditorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3350, 3, 'Wechselverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3351, 3350, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3380, 3350, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3390, 3350, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3400, 3, 'Verbindlichkeiten gegenüber verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3401, 3400, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3405, 3400, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3410, 3400, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3420, 3400, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3421, 3420, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3425, 3420, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3430, 3420, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3450, 3, 'Verbindlichkeiten gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3451, 3450, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3455, 3450, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3460, 3450, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3470, 3450, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3471, 3470, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3475, 3470, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3480, 3470, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3500, 3, 'Sonstige Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3501, 3500, '- Restlaufzeit bis 1Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3504, 3500, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3507, 3500, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3509, 3500, 'Sonstige Verbindlichkeiten nach § 11 Abs. 2 Satz 2 EStG für § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3510, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3511, 3510, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3514, 3510, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3517, 3510, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3519, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern für offene Ausschüttungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3520, 3500, 'Darlehen typisch stiller Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3521, 3520, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3524, 3520, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3527, 3520, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3530, 3500, 'Darlehen atypisch stiller Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3531, 3530, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3534, 3530, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3537, 3530, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3540, 3500, 'Partiarische Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3541, 3540, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3544, 3540, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3547, 3540, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3550, 3500, 'Erhaltene Kautionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3551, 3550, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3554, 3550, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3557, 3550, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3560, 3500, 'Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3561, 3560, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3564, 3560, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3567, 3560, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3570, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3571, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3572, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3573, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3574, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3575, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3576, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3577, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3578, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3579, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3580, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3581, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3582, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3583, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3584, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3585, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3586, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3587, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3588, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3589, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3590, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3591, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3592, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3593, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3594, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3595, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3596, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3597, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3598, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3599, 3500, 'Gegenkonto 3500-3569 und 3640-3658 bei Aufteilung der Konten 3570-3598'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3600, 3500, 'Agenturwarenabrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3610, 3500, 'Kreditkartenabrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3611, 3500, 'Verbindlichkeiten gegenüber Arbeitsgemeinschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3620, 3500, 'Gewinnverfügungskonto stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3630, 3500, 'Sonstige Verrechnungskosten (Interimskonto)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3635, 3500, 'Sonstige Verbindlichkeiten aus genossenschaftlicher Rückvergütung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3640, 3500, 'Verbindlichkeiten gegenüber GmbH-Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3641, 3640, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3642, 3640, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3643, 3640, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3645, 3500, 'Verbindlichkeiten gegenüber persönlich haftenden Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3646, 3645, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3647, 3645, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3648, 3645, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3650, 3500, 'Verbindlichkeiten gegenüber Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3651, 3650, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3652, 3650, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3653, 3650, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3655, 3500, 'Verbindlichkeiten gegenüber stillen Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3656, 3655, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3657, 3655, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3658, 3655, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3695, 3500, 'Verrechnungskonto geleistete Anzahlungen bei Buchungen über Kreditorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3700, 3500, 'Verbindlichkeiten aus Steuern und Abgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3701, 3700, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3710, 3700, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3715, 3700, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3720, 3500, 'Verbindlichkeiten aus Lohn und Gehalt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3725, 3500, 'Verbindlichkeiten für Einbehaltungen von Arbeitnehmern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3726, 3500, 'Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3730, 3500, 'Verbindlichkeiten aus Lohn- und Kirchensteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3740, 3500, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3741, 3740, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3750, 3740, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3755, 3740, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3759, 3500, 'Voraussichtliche Beitragsschuld gegenüber den Sozialversicherungsträgern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3760, 3500, 'Verbindlichkeiten aus Einbehaltungen (KapESt und SolZ, KiSt auf KapESt) für offene Ausschüttungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3761, 3500, 'Verbindlichkeiten für Verbrauchsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3770, 3500, 'Verbindlichkeiten aus Vermögensbildung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3771, 3770, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3780, 3770, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3785, 3770, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3786, 3500, 'Ausgegebene Geschenkgutscheine'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3790, 3, 'Lohn- und Gehaltsverrechnungskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3791, 3790, 'Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3796, 3790, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3798, 3790, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3799, 3790, 'Steuerzahlungen aus im anderen EU-Land steuerpflichtigen elektronische Dienstleistungen an kleine einzige Anlaufstelle (KEA/MOSS)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3800, 3, 'Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3801, 3800, 'Umsatzsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3802, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3803, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3804, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3805, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3806, 3800, 'Umsatzsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3807, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3808, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3809, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb ohne Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3810, 3800, 'Umsatzsteuer nicht fällig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3811, 3800, 'Umsatzsteuer nicht fällig 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3812, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3813, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3814, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3815, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3816, 3800, 'Umsatzsteuer nicht fällig 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3817, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3818, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen/Werklieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3819, 3800, 'Umsatzsteuer aus Erwerb als letzter Abnehmer innerhalb eines Dreiecksgeschäfts'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3820, 3800, 'Umsatzsteuer-Vorauszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3830, 3800, 'Umsatzsteuer-Vorauszahlungen 1/11'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3831, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3832, 3800, 'Nachsteuer, UstVA Kz. 65'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3833, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3834, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3835, 3800, 'Umsatzsteuer nach § 13b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3836, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3837, 3800, 'Umsatzsteuer nach § 13b UStG 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3838, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3839, 3800, 'Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3840, 3800, 'Umsatzsteuer laufendes Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3841, 3800, 'Umsatzsteuer Vorjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3845, 3800, 'Umsatzsteuer frühere Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3850, 3800, 'Einfuhrumsatzsteuer aufgeschoben bis ...'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3851, 3800, 'In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerbeträge, UstVA Kz. 69'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3854, 3800, 'Steuerzahlungen an andere Länder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3860, 3, 'Verbindlichkeiten aus Umsatzsteuer-Vorauszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3865, 3800, 'Umsatzsteuer in Folgeperiode fällig (§§ 13 Abs. 1 Nr. 6, 13b Abs. 2 UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3900, 3, 'Passive Rechnungsabgrenzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3950, 3900, 'Abgrenzung unterjährig pauschal gebuchter Abschreibungen für BWA'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Betriebliche Erträge', 4, 4, 'Betriebliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4000, 4, 'Umsatzerlöse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4001, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4002, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4003, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4004, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4005, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4006, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4007, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4008, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4009, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4010, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4011, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4012, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4013, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4014, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4015, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4016, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4017, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4018, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4019, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4020, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4021, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4022, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4023, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4024, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4025, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4026, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4027, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4028, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4029, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4030, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4031, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4032, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4033, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4034, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4035, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4036, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4037, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4038, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4039, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4040, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4041, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4042, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4043, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4044, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4045, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4046, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4047, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4048, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4049, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4050, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4051, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4052, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4053, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4054, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4055, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4056, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4057, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4058, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4059, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4060, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4061, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4062, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4063, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4064, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4065, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4066, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4067, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4068, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4069, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4070, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4071, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4072, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4073, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4074, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4075, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4076, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4077, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4078, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4079, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4080, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4081, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4082, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4083, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4084, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4085, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4086, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4087, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4088, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4089, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4090, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4091, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4092, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4093, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4094, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4095, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4096, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4097, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4098, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4099, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4100, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4101, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4102, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4103, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4104, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4105, 4000, 'Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpachtung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4110, 4000, 'Sonstige steuerfreie Umsätze Inland'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4120, 4000, 'Steuerfreie Umsätze § 4 Nr. 1a UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4125, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen § 4 Nr. 1b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4130, 4000, 'Lieferungen des ersten Abnehmers bei innergemeinschaftlichen Dreiecksgeschäften § 25b Abs. 2 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4135, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer-Identifikationsnummer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4136, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4137, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4138, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4139, 4000, 'Umsatzerlöse aus Reiseleistungen § 25 Abs. 2 UStG, steuerfrei'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4140, 4000, 'Steuerfreie Umsätze Offshore etc.'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4150, 4000, 'Sonstige steuerfreie Umsätze (z. B. § 4 Nr. 2-7 UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4160, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend, § 4 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4165, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4180, 4000, 'Erlöse, die mit den Durchschnittssätzen des § 24 UStG verteuert werden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4182, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4183, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4185, 4000, 'Erlöse als Kleinunternehmer i. S. d. $ 19 Abs. 1 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4186, 4000, 'Erlöse aus Geldspielautomaten 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4187, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4188, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4200, 4000, 'Erlöse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4300, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4301, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4302, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4303, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4304, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4305, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4306, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4307, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4308, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4309, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4310, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4311, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4312, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4313, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4314, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4315, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4316, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4317, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4318, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4319, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4320, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4321, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4322, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4323, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4324, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4325, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4326, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4327, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4328, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4329, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4330, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4331, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4332, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4333, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4334, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4335, 4000, 'Erlöse aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4336, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4337, 4000, 'Erlöse aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4338, 4000, 'Erlöse aus im Drittland steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4339, 4000, 'Erlöse aus im anderen EU-Land steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4340, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4341, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4342, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4343, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4344, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4345, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4346, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4347, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4348, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4349, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4400, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4401, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4402, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4403, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4404, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4405, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4406, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4407, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4408, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4409, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4410, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4411, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4412, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4413, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4414, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4415, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4416, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4417, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4418, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4419, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4420, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4421, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4422, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4423, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4424, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4425, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4426, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4427, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4428, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4429, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4430, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4431, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4432, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4433, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4434, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4435, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4436, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4437, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4438, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4439, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4440, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4441, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4442, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4443, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4444, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4445, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4446, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4447, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4448, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4449, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4499, 4000, 'Nebenerlöse (Bezug zu Materialaufwand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4500, 4, 'Sonderbetriebseinnahmen, Tätigkeitsvergütung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4501, 4, 'Sonderbetriebseinnahmen, Miet-/Pachteinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4502, 4, 'Sonderbetriebseinnahmen, Zinseinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4503, 4, 'Sonderbetriebseinnahmen, Haftungsvergütung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4504, 4, 'Sonderbetriebseinnahmen, Pensionszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4505, 4, 'Sonderbetriebseinnahmen, sonstige Sonderbetriebseinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4510, 4000, 'Erlöse Abfallverwertung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4520, 4000, 'Erlöse Leergut'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4560, 4000, 'Provisionsumsätze'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4561, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4562, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4563, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4564, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 8 ff. UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4565, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 5 UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4566, 4000, 'Provisionsumsätze 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4567, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4568, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4569, 4000, 'Provisionsumsätze 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4570, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4571, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4572, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4573, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4574, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4575, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 5 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4576, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4577, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4578, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4579, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4580, 4000, 'Statistisches Konto Erlöse zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4581, 4000, 'Statistisches Konto Erlöse zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4582, 4000, 'Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4589, 4000, 'Gegenkonto 4580-4582 bei Aufteilung der Erlöse nach Steuersätzen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4600, 4000, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4605, 4000, 'Entnahme von Gegenständen ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4608, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4609, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4610, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4611, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4612, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4613, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4614, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4615, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4616, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4617, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4618, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4619, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4620, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4621, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4622, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4623, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4624, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4625, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4626, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4627, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4628, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4629, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4630, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4631, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4632, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4633, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4634, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4635, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4636, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4637, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4638, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4639, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4640, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4641, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4642, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4643, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4644, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4645, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Kfz-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4646, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Telefon-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4647, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4648, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4649, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4650, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4651, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4652, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4653, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4654, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4655, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4656, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4657, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4658, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4659, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4660, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4661, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4662, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4663, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4664, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4665, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4666, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4667, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4668, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4669, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4670, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4671, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4672, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4673, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4674, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4675, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4676, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4677, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4678, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4679, 4000, 'Unentgeltliche Zuwendung von Waren ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4680, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4681, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4682, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4683, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4684, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4685, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4686, 4000, 'Unentgeltliche Zuwendung von Gegenständen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4688, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4689, 4000, 'Unentgeltliche Zuwendung von Gegenständen ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4690, 4000, 'Nicht steuerbare Umsätze (Innenumsätze)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4695, 4000, 'Umsatzsteuervergütungen, z.B. nach § 24 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4699, 4000, 'Direkt mit dem Umsatz verbundene Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4700, 4000, 'Erlösschmälerungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4701, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4702, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 2-7 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4703, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze ohne Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4704, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze mit Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4705, 4700, 'Erlösschmälerungen aus steuerfreien Umsätzen § 4 Nr. 1a UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4706, 4700, 'Erlösschmälerungen für steuerfreie innergemeinschaftliche Dreiecksgeschäfte nach § 25b Abs. 2, 4 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4710, 4700, 'Erlösschmälerungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4711, 4700, 'Erlösschmälerungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4712, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4713, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4714, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4715, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4716, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4717, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4718, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4719, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4720, 4700, 'Erlösschmälerungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4721, 4700, 'Erlösschmälerungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4722, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4723, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4724, 4700, 'Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4725, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4726, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4727, 4700, 'Erlösschmälerungen aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4728, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4729, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4730, 4000, 'Gewährte Skonti'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4731, 4730, 'Gewährte Skonti 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4732, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4733, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4734, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4735, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4736, 4730, 'Gewährte Skonti 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4737, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4738, 4730, 'Gewährte Skonti aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4741, 4730, 'Gewährte Skonti aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4742, 4730, 'Gewährte Skonti aus Erlösen aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4743, 4730, 'Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4744, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4745, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4746, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4747, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4748, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4749, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4750, 4769, 'Gewährte Boni 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4751, 4769, 'Gewährte Boni 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4752, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4753, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4754, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4755, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4756, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4757, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4758, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4759, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4760, 4769, 'Gewährte Boni 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4761, 4769, 'Gewährte Boni 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4762, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4763, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4764, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4765, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4766, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4767, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4768, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4769, 4000, 'Gewährte Boni'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4770, 4000, 'Gewährte Rabatte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4780, 4770, 'Gewährte Rabatte 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4781, 4770, 'Gewährte Rabatte 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4782, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4783, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4784, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4785, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4786, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4787, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4788, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4789, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4790, 4770, 'Gewährte Rabatte 19 % Ust'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4791, 4770, 'Gewährte Rabatte 19 % Ust'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4792, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4793, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4794, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4795, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4796, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4797, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4798, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4799, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4800, 4, 'Bestandsveränderungen – fertige Erzeugnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4810, 4, 'Bestandsveränderungen – unfertige Erzeugnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4815, 4, 'Bestandsveränderungen – unfertige Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4816, 4, 'Bestandsveränderungen in Ausführung befindlicher Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4818, 4, 'Bestandsveränderungen in Arbeit befindlicher Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4820, 4, 'Andere aktivierte Eigenleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4824, 4820, 'Aktivierte Eigenleistungen (den Herstellungskosten zurechenbare Fremdkapitalzinsen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4825, 4820, 'Aktivierte Eigenleistungen zur Erstellung von selbst geschaffenen immateriellen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4830, 4, 'Sonstige betriebliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4832, 4830, 'Sonstige betriebliche Erträge von verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4833, 4830, 'Andere Nebenerlöse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4834, 4830, 'Sonstige Erträge betrieblich und regelmäßig 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4835, 4830, 'Sonstige Erträge betrieblich und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4836, 4830, 'Sonstige Erträge betrieblich und regelmäßig 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4837, 4830, 'Sonstige Erträge betriebsfremd und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4838, 4830, 'Erstattete Vorsteuer anderer Länder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4839, 4830, 'Sonstige Erträge unregelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4840, 4830, 'Erträge aus der Währungsumrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4841, 4830, 'Sonstige Erträge betrieblich und regelmäßig, steuerfrei § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4842, 4830, 'Sonstige betriebliche Erträge steuerfrei z. B. § 4 Nr. 2-7 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4843, 4830, 'Erträge aus Bewertung Finanzmittelfonds'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4844, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4845, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4846, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4847, 4830, 'Erträge aus der Währungsumrechnung (nicht § 256a HGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4848, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4849, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4850, 4830, 'Erlöse aus Verkäufen immaterieller Vermögensgengenstände (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4851, 4830, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4852, 4830, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4855, 4830, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4856, 4830, 'Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4857, 4830, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4858, 4830, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4860, 4830, 'Grundstückserträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4861, 4860, 'Erlöse aus Vermietung und Verpachtung, umsatzsteuerfrei § 4 Nr. 12 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4862, 4860, 'erlöse aus Vermietung und Verpachtung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4863, 4860, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4864, 4860, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4865, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19 % USt für § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4866, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4867, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG, § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4869, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4900, 4830, 'Erträge aus dem Abgang von Gegenständen des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4901, 4830, 'Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4905, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens außer Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4906, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4910, 4830, 'Erträge aus Zuschreibungen des Sachanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4911, 4830, 'Erträge aus Zuschreibungen des immateriellen Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4912, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4913, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4914, 4830, 'Erträge aus Zuschreibungen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4915, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens (außer Vorräte)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4916, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4920, 4830, 'Erträge aus der Herabsetzung der Pauschalwertberichtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4923, 4830, 'Erträge aus der Herabsetzung der Einzelwertberichtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4925, 4830, 'Erträge aus abgeschriebenen Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4927, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4828, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 10 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4829, 4830, 'Erträge aus der Auflösung der Rücklage für Ersatzbeschaffung R 6.6 EstR'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4930, 4830, 'Erträge aus der Auflösung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4932, 4830, 'Erträge aus der Herabsetzung von Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4935, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4936, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen (Ansparabschreibung nach § 7 g Abs. 2 EStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4937, 4830, 'Erträge aus der Auflösung steuerrechtlicher Sonderabschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4938, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 4g EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4939, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen nach 3 53 Abs, 16 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4940, 4830, 'Verrechnete sonstige Sachbezüge (keine Waren)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4941, 4830, 'Sachbezüge 7 % USt (Waren)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4942, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4943, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4944, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4945, 4830, 'Sachbezüge 19 % USt (Waren)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4946, 4830, 'Verrechnete sonstige Sachbezüge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4947, 4830, 'Verrechnete sonstige Sachbezüge aus Kfz-Gestellung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4948, 4830, 'Verrechnete sonstige Sachbezüge 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4949, 4830, 'Verrechnete sonstige Sachbezüge ohne Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4960, 4830, 'Periodenfremde Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4970, 4830, 'Versicherungsentschädigungen und Schadenersatzleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4972, 4830, 'Erstattungen Aufwendungsausgleichsgesetz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4975, 4830, 'Investitionszuschüsse (steuerpflichtig)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4980, 4830, 'Investitionszulagen (steuerfrei)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4981, 4830, 'Steuerfreie Erträge aus der Auflösung von steuerlichen Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4982, 4830, 'Sonstige steuerfreie Betriebseinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4987, 4830, 'Erträge aus der Aktivierung unentgeltlich erworbener Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4989, 4830, 'Kostenerstattungen, Rückvergütungen und Gutschriften für frühere Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4992, 4830, 'Erträge aus Verwaltungskostenumlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 5, 5, 'Betriebliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5000, 5, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5001, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5002, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5003, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5004, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5005, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5006, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5007, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5008, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5009, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5010, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5011, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5012, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5013, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5014, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5015, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5016, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5017, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5018, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5019, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5020, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5021, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5022, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5023, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5024, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5025, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5026, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5027, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5028, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5029, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5030, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5031, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5032, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5033, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5034, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5035, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5036, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5037, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5038, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5039, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5040, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5041, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5042, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5043, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5044, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5045, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5046, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5047, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5048, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5049, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5050, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5051, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5052, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5053, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5054, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5055, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5056, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5057, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5058, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5059, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5060, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5061, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5062, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5063, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5064, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5065, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5066, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5067, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5068, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5069, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5070, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5071, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5072, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5073, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5074, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5075, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5076, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5077, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5078, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5079, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5080, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5081, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5082, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5083, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5084, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5085, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5086, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5087, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5088, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5089, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5090, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5091, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5092, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5093, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5094, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5095, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5096, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5097, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5098, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5099, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5100, 5, 'Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5110, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5111, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5112, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5113, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5114, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5115, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5116, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5117, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5118, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5119, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5120, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5121, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5122, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5123, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5124, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5125, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5126, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5127, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5128, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5129, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5130, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5131, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5132, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5133, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5134, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5135, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5136, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5137, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5138, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5139, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5140, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5141, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5142, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5143, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5144, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5145, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5146, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5147, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5148, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5149, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5150, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5151, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5152, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5153, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5154, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5155, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5156, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5157, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5158, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5159, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5160, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5161, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5162, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5163, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5164, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5165, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5166, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5167, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5168, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5169, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5170, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5171, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5172, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5173, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5174, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5175, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5176, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5177, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5178, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5179, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5180, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5181, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5182, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5183, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5184, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5185, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5186, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5187, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5188, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5189, 5100, 'Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5190, 5, 'Energiestoffe (Fertigung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5191, 5190, 'Energiestoffe (Fertigung) 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5192, 5190, 'Energiestoffe (Fertigung) 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5193, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5194, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5195, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5196, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5197, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5198, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5200, 5, 'Wareneingang'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5300, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5301, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5302, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5303, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5304, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5305, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5306, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5307, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5308, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5309, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5310, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5311, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5312, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5313, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5314, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5315, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5316, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5317, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5318, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5319, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5320, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5321, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5322, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5323, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5324, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5325, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5326, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5327, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5328, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5329, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5330, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5331, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5332, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5333, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5334, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5335, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5336, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5337, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5338, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5339, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5340, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5341, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5342, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5343, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5344, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5345, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5346, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5347, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5348, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5349, 5200, 'Wareneingang ohne Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5400, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5401, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5402, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5403, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5404, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5405, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5406, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5407, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5408, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5409, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5410, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5411, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5412, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5413, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5414, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5415, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5416, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5417, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5418, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5419, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5420, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5421, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5422, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5423, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5424, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5425, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5426, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5427, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5428, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5429, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5430, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5431, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5432, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5433, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5434, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5435, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5436, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5437, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5438, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5439, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5440, 5200, 'Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatz-Identifikationsnummer 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5441, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5442, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5443, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5444, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5445, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5446, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5447, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5448, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5449, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5500, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5501, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5502, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5503, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5504, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5505, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5506, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5507, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5508, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5509, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5510, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5511, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5512, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5513, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5514, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5515, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5516, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5517, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5518, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5519, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5520, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5521, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5522, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5523, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5524, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5525, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5526, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5527, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5528, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5529, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5530, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5531, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5532, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5533, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5534, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5535, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5536, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5537, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5538, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5539, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5540, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5541, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5542, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5543, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5544, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5545, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5546, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5547, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5548, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5549, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5550, 5200, 'Steuerfreier innergemeinschaftlicher Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5551, 5200, 'Wareneingang im Drittland steuerbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5552, 5200, 'Erwerb 1. Abnehmer innerhalb eines Dreiecksgeschäftes'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5553, 5200, 'Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5554, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5555, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5556, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5557, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5558, 5200, 'Wareneingang im anderen EU-Land steuerbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5559, 5200, 'Steuerfreie Einfuhren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5560, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5561, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5562, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5563, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5564, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5565, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5566, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5567, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5568, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5569, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5600, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5601, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5602, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5603, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5604, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5605, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5606, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5607, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5608, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5609, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5610, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5611, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5612, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5613, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5614, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5615, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5616, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5617, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5618, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5619, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5650, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5651, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5652, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5653, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5654, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5655, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5656, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5657, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5658, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5659, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5660, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5661, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5662, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5663, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5664, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5665, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5666, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5667, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5668, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5669, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5700, 5200, 'Nachlässe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5701, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5710, 5700, 'Nachlässe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5711, 5700, 'Nachlässe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5712, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5713, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5714, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5715, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5716, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5717, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5718, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5719, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5720, 5700, 'Nachlässe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5722, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5723, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5724, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5725, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5726, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5727, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5728, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5729, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5730, 5200, 'Erhaltene Skonti'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5731, 5730, 'Erhaltene Skonti 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5732, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5733, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5734, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5735, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5736, 5730, 'Erhaltene Skonti 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5737, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5738, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5739, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5740, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5741, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5742, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5743, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5744, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5745, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5746, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5747, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5748, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5749, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5750, 5769, 'Erhaltene Boni 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5751, 5769, 'Erhaltene Boni 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5752, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5753, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5754, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5755, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5756, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5757, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5758, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5759, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5760, 5769, 'Erhaltene Boni 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5761, 5769, 'Erhaltene Boni 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5762, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5763, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5764, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5765, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5766, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5767, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5768, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5769, 5200, 'Erhaltene Boni'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5770, 5200, 'Erhaltene Rabatte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5780, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5781, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5782, 5770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5783, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5784, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5785, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5786, 5770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5787, 5770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5788, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5789, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5790, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5791, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5792, 5730, 'Erhaltene Skonti aus Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5793, 5730, 'Erhaltene Skonti aus Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäfte 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5794, 5730, 'Erhaltene Skonti 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5795, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5796, 5730, 'Erhaltene Skonti 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5797, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5798, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5799, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5800, 5, 'Bezugsnebenkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5820, 5, 'Leergut'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5840, 5, 'Zölle und Einfuhrabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5860, 5, 'Verrechnete Stoffkosten (Gegenkonto 5000-99)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5880, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe sowie bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5881, 5, 'Bestandsveränderungen Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5885, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5900, 5, 'Fremdleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5906, 5900, 'Fremdleistungen 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5907, 5900, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5908, 5900, 'Fremdleistungen 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5909, 5900, 'Fremdleistungen ohne Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5910, 5, 'Bauleistungen eine im Inland ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5911, 5910, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5912, 5910, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5913, 5, 'Sonstige Leistungen eines im andere EU-Land ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5914, 5913, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5915, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5916, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5917, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5918, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5919, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5920, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5921, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5922, 5921, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5923, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5924, 5923, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5925, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5926, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5927, 5926, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5928, 5926, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5829, 5926, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5930, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5931, 5930, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5932, 5930, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5933, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5934, 5933, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5935, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5936, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5937, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5938, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5939, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5940, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5941, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5942, 5941, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5943, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5944, 5943, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5945, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5946, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5947, 5946, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5948, 5946, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5949, 5946, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5950, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5951, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5952, 5951, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5953, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5954, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer, mit 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5955, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5956, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5957, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5958, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5959, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5960, 5, 'Leistungen nach § 13b UStG mit Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5965, 5, 'Leistungen nach § 13b UStG ohne Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5970, 5, 'Fremdleistungen (Miet- und Pachtzinsen bewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5975, 5, 'Fremdleistungen (Miet- und Pachtzinsen unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5980, 5, 'Fremdleistungen (Entgelte für Rechte und Lizenzen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5985, 5, 'Fremdleistungen (Vergütungen für die Überlassung von Wirtschaftsgütern – mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 6, 6, 'Betriebliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6000, 6, 'Löhne und Gehälter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6010, 6000, 'Löhne'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6020, 6000, 'Gehälter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6024, 6000, 'Geschäftsführergehälter der GmbH-Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6026, 6000, 'Tantiemen Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6027, 6000, 'Geschäftsführergehälter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6028, 6000, 'Vergütung an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6029, 6000, 'Tantiemen Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6030, 6000, 'Aushilfslöhne'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6035, 6000, 'Löhne für Minijobs'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6036, 6000, 'Pauschale Steuern für Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6037, 6000, 'Pauschale Steuern für Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6038, 6000, 'Pauschale Steuern für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6039, 6000, 'Pauschale Steuern für Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6040, 6000, 'Pauschale Steuer für Aushilfen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6045, 6000, 'Bedienungsgelder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6050, 6000, 'Ehegattengehalt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6060, 6000, 'Freiwillige soziale Aufwendungen, lohnsteuerpflichtig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6066, 6000, 'Freiwillige Zuwendungen an Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6067, 6000, 'Freiwillige Zuwendungen an Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6068, 6000, 'Freiwillige Zuwendungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6069, 6000, 'Pauschale Steuer auf sonstige Bezüge (z. B. Fahrtkostenzuschüsse)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6070, 6000, 'Krankengeldzuschüsse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6071, 6000, 'Sachzuwendungen und Dienstleistungen an Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6072, 6000, 'Sachzuwendungen und Dienstleistungen an Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6073, 6000, 'Sachzuwendungen und Dienstleistungen an Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6074, 6000, 'Sachzuwendungen und Dienstleistungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6075, 6000, 'Zuschüsse der Agenturen für Arbeit (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6076, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6077, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6078, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6079, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6080, 6000, 'Vermögenswirksame Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6090, 6000, 'Fahrtkostenerstattung Wohnung/Arbeitsstätte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6100, 6, 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6110, 6100, 'Gesetzliche soziale Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6118, 6100, 'Gesetzliche soziale Aufwendungen für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6120, 6100, 'Beiträge zur Berufsgenossenschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6130, 6100, 'Freiwillige soziale Aufwendungen, lohnsteuerfrei'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6140, 6100, 'Aufwendungen für Altersversorgung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6147, 6100, 'Pauschale Steuer auf sonstige Bezüge (z. B. Direktversicherungen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6148, 6100, 'Aufwendungen für Altersversorgung für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6149, 6100, 'Aufwendungen für Altersversorgung für Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6150, 6100, 'Versorgungskasse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6160, 6100, 'Aufwendungen für Unterstützung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6170, 6100, 'Sonstige soziale Abgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6171, 6100, 'Soziale Abgaben für Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6200, 6, 'Abschreibungen auf immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6201, 6, 'Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6205, 6, 'Abschreibungen auf den Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6209, 6, 'Außerplanmäßige Abschreibungen auf den Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6210, 6, 'Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6211, 6, 'Außerplanmäßige Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6220, 6, 'Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6221, 6, 'Abschreibungen auf Gebäude'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6222, 6, 'Abschreibungen auf Kfz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6223, 6, 'Abschreibungen auf Gebäudeteil des häuslichen Arbeitszimmers'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6230, 6, 'Außerplanmäßige Abschreibungen auf Sachanlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6231, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6232, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6233, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6240, 6, 'Abschreibungen auf Sachanlagen auf Grund steuerlicher Sondervorschriften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6241, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (ohne Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6242, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (für Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6243, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (ohne Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6244, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (für Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6250, 6, 'Kaufleasing'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6260, 6, 'Sofortabschreibungen geringwertiger Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6262, 6, 'Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6264, 6, 'Abschreibungen auf den Sammelposten Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6266, 6, 'Außerplanmäßige Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6268, 6266, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6270, 6, 'Abschreibungen auf sonstige Vermögensgegenstände des Umlaufvermögens (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6272, 6, 'Abschreibungen auf Umlaufvermögen, steuerrechtlich bedingt (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6278, 6, 'Abschreibungen auf Roh-, Hilfs- und Betriebsstoffe/Waren (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6279, 6, 'Abschreibungen auf fertige und unfertige Erzeugnisse (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6280, 6, 'Forderungsverluste (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6281, 6, 'Forderungsverluste 7 % USt (sowie unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6282, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6283, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6284, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6285, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6286, 6, 'Forderungsverluste 19 % USt (sowie unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6287, 6286, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6288, 6286, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6290, 6, 'Abschreibungen auf Forderungen gegenüber Kapitalgesellschaften, an denen eine Beteiligung besteht (soweit unüblich hoch), § 3c EstG/ § 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6291, 6, 'Abschreibungen auf Forderungen gegenüber Gesellschaftern und nahe stehenden Personen (soweit unüblich hoch), § 8b Abs. 3 StG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6300, 6, 'Sonstige betriebliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6302, 6, 'Interimskonto für Aufwendungen in einem anderen Land, bei denen eine Vorsteuervergütung möglich ist'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6303, 6, 'Fremdleistungen/Fremdarbeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6304, 6, 'Sonstige Aufwendungen betrieblich und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6305, 6, 'Raumkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6310, 6, 'Miete (unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6312, 6, 'Miete/Aufwendungen für doppelte Haushaltsführung Unternehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6313, 6, 'Vergütung an Gesellschafter für die miet- oder pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6314, 6, 'Vergütung an Mitunternehmer für die mietweise Überassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6315, 6, 'Pacht (unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6316, 6, 'Leasing (unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6317, 6, 'Aufwendungen für gemietete oder gepachtete unbewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6318, 6, 'Miet- und Pachtnebenkosten, die gewerbesteuerlich nicht hinzuzurechnen sind'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6319, 6, 'Vergütung an Mitunternehmer für die pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6320, 6, 'Heizung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6325, 6, 'Gas, Strom, Wasser'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6330, 6, 'Reinigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6335, 6, 'Instandhaltung betrieblicher Räume'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6340, 6, 'Abgaben für betrieblich genutzten Grundbesitz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6345, 6, 'Sonstige Raumkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6348, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6349, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6350, 6, 'Grundstücksaufwendungen, betrieblich'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6352, 6, 'Sonstige Grundstücksaufwendungen (neutral)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6390, 6, 'Zuwendungen, Spenden, steuerlich nicht abziehbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6391, 6, 'Zuwendungen, Spenden für wissenschaftliche und kulturelle Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6392, 6, 'Zuwendungen, Spenden für mildtätige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6393, 6, 'Zuwendungen, Spenden für kirchliche, religiöse und gemeinnützige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6394, 6, 'Zuwendungen, Spenden an politische Parteien'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6395, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für gemeinnützige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6396, 6395, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6397, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für kirchliche, religiöse und gemeinnützige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6398, 6, 'Zuwendungen, Spenden an Stiftungen in das zu erhaltene Vermögen (Vermögensstock) einer Stiftung für wissenschaftliche, mildtätige, kulturelle Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6400, 6, 'Versicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6405, 6, 'Versicherungen für Gebäude'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6410, 6, 'Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6420, 6, 'Beiträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6430, 6, 'Sonstige Abgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6436, 6, 'Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6437, 6, 'Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6440, 6, 'Ausgleichsabgabe i. S d. Schwerbehindertengesetzes'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6450, 6, 'Reparaturen und Instandhaltung von Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6460, 6, 'Reparaturen und Instandhaltung von technischen Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6470, 6, 'Reparaturen und Instandhaltung von anderen Anlagen und Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6475, 6, 'Zuführung zu Aufwandsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6485, 6, 'Reparaturen und Instandhaltung von anderen Anlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6490, 6, 'Sonstige Reparaturen und Instandhaltung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6495, 6, 'Wartungskosten für Hard- und Software'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6498, 6, 'Mietleasing beweglicher Wirtschaftsgüter für technische Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6500, 6, 'Fahrzeugkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6520, 6, 'Kfz-Versicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6530, 6, 'Laufende Kfz-Betriebskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6540, 6, 'Kfz-Reparaturen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6550, 6, 'Garagenmiete'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6560, 6, 'Mietleasing Kfz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6570, 6, 'Sonstige Kfz-Kosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6580, 6, 'Mautgebühren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6590, 6, 'Kfz-Kosten für betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6595, 6, 'Fremdfahrzeugkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6600, 6, 'Werbekosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6605, 6, 'Streuartikel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6610, 6, 'Geschenke abzugsfähig ohne § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6611, 6, 'Geschenke abzugsfähig mit § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6612, 6, 'Pauschale Steuern für Geschenke und Zugaben abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6620, 6, 'Geschenke nicht abzugsfähig ohne § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6621, 6, 'Geschenke nicht abzugsfähig mit § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6622, 6, 'Pauschale Steuern für Geschenke und Zuwendungen nicht abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6625, 6, 'Geschenke ausschließlich betrieblich genutzt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6629, 6, 'Zugaben mit § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6630, 6, 'Repräsentationskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6640, 6, 'Bewirtungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6641, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6642, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6643, 6, 'Aufmerksamkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6644, 6, 'Nicht abzugsfähige Bewirtungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6645, 6, 'Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6650, 6, 'Reisekosten Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6660, 6, 'Reisekosten Arbeitnehmer Übernachtungsaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6663, 6, 'Reisekosten Arbeitnehmer Fahrtkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6664, 6, 'Reisekosten Arbeitnehmer Verpflegungsmehraufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6665, 6664, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6668, 6, 'Kilometergelderstattung Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6670, 6, 'Reisekosten Unternehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6672, 6, 'Reisekosten Unternehmer (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6673, 6, 'Reisekosten Unternehmer Fahrtkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6674, 6, 'Reisekosten Unternehmer Verpflegungsmehraufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6680, 6, 'Reisekosten Unternehmer Übernachtungsaufwand und Reisenebenkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6685, 6680, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6686, 6680, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6688, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6689, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6690, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6691, 6, 'Verpflegungsmehraufwenungen im Rahmen der doppelten Haushaltsführung Unternehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6700, 6, 'Kosten der Warenabgabe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6710, 6, 'Verpackungsmaterial'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6740, 6, 'Ausgangsfrachten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6760, 6, 'Transportversicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6770, 6, 'Verkaufsprovision'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6780, 6, 'Fremdarbeiten (Vertrieb)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6790, 6, 'Aufwand für Gewährleistung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6800, 6, 'Porto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6805, 6, 'Telefon'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6810, 6, 'Telefax und Internetkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6815, 6, 'Bürobedarf'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6820, 6, 'Zeitschriften, Bücher (Fachliteratur)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6821, 6, 'Fortbildungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6822, 6, 'Freiwillige Sozialleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6823, 6, 'Vergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6824, 6, 'Haftungsvergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6825, 6, 'Rechts- und Beratungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6827, 6, 'Abschluss- und Prüfungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6830, 6, 'Buchführungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6833, 6, 'Vergütungen an Gesellschafter für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6834, 6, 'Vergütungen an Mitunternehmer für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6835, 6, 'Mieten für Einrichtungen (bewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6836, 6, 'Pacht (bewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6837, 6, 'Aufwendungen für die zeitlich befristete Überlassung von Rechten (Lizenzen, Konzessionen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6838, 6, 'Aufwendungen für gemietete oder gepachtete bewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6840, 6, 'Mietleasing beweglicher Wirtschaftsgüter für Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6845, 6, 'Werkzeuge und Kleingeräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6850, 6, 'Sonstiger Betriebsbedarf'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6854, 6, 'Genossenschaftliche Rückvergütung an Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6855, 6, 'Nebenkosten des Geldverkehrs'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6856, 6, 'Aufwendungen aus Anteilen an Kapitalgesellschaften §§ 3Nr. 40, 3c EStG/§ 8b Abs. 1 und 4 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6857, 6, 'Veräußerungskosten § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6859, 6, 'Aufwendungen für Abraum- und Abfallbeseitigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6860, 6, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6865, 6, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6871, 6, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6875, 6, 'Nicht abziehbare Vorsteuer der Aufsichtsratsvergütungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6876, 6, 'Abziehbare Aufsichtsratsvergütungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6880, 6, 'Aufwendungen aus der Währungsumrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6881, 6, 'Aufwendungen aus der Währungsumrechnung (nicht § 256a HGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6883, 6, 'Aufwendungen aus Bewertung Finanzmittelfonds'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6884, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6885, 6, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6886, 6885, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6887, 6885, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6888, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6889, 6, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6890, 6, 'Erlöse aus Verkäufen immaterieller Vermögensgegenstände (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6891, 6, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6892, 6, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6895, 6, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6896, 6, 'Anlagenabgänge immaterielle Vermögensgengenstände (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6897, 6, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6898, 6, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6900, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6903, 6, 'Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6905, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens außer Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6906, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6907, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6908, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG nach § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6910, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6912, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens, steuerrechtlich bedingt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6918, 6, 'Aufwendungen aus dem Erwerb eigener Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6920, 6, 'Einstellung in die Pauschalwertberechtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6922, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6923, 6, 'Einstellung in die Einzelwertberichtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6924, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 10 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6927, 6, 'Einstellung in steuerliche Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6928, 6, 'Einstellung in die Rücklage für Ersatzbeschaffung nach R 6.6 EstR'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6929, 6, 'Einstellungen in die steuerliche Rücklage nach § 4g EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6930, 6, 'Forderungsverluste (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6931, 6, 'Forderungsverluste 7 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6932, 6, 'Forderungsverluste aus steuerfreien EU-Lieferungen (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6933, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6934, 6933, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6935, 6933, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6936, 6, 'Forderungsverluste 19 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6937, 6936, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6938, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6939, 6938, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6960, 6, 'Periodenfremde Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6967, 6, 'Sonstige Aufwendungen betriebsfremd und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6968, 6, 'Sonstige nicht abziehbare Ausfwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6969, 6, 'Sonstige Aufwendungen unregelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6970, 6, 'Kalkulatorischer Unternehmerlohn'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6972, 6, 'Kalkulatorische Miete/Pacht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6974, 6, 'Kalkulatorische Zinsen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6976, 6, 'Kalkulatorische Abschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6978, 6, 'Kalkulatorische Wagnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6979, 6, 'Kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6980, 6, 'Verrechneter kalkulatorischer Unternehmerlohn'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6982, 6, 'Verrechnete kalkulatorische Miete/Pacht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6984, 6, 'Verrechnete kalkulatorische Zinsen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6986, 6, 'Verrechnete kalkulatorische Abschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6988, 6, 'Verrechnete kalkulatorische Wagnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6989, 6, 'Verrechneter kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6990, 6, 'Herstellungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6992, 6, 'Verwaltungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6994, 6, 'Vertriebskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6999, 6, 'Gegenkonto 6990-6998'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Weitere Erträge und Aufwendungen', 7, 7, 'Weitere Erträge und Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7000, 7, 'Erträge aus Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7004, 7000, 'Erträge aus Beteiligungen an Personengesellschaften (verbundene Unternehmen), § 9 GewStG bzw. § 18 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7005, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung) § 3 Nr. 40 EStG/§ 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7006, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7008, 7000, 'Gewinnanteile aus gewerblichen und selbstständigen Mitunternehmerschaften, § 9 GewStG bzw. § 18 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7009, 7000, 'Erträge aus Beteiligungen an verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7010, 7, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7011, 7010, 'Erträge aus Ausleihungen des Finanzanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7012, 7100, 'Erträge aus Ausleihungen des Finanzanlagevermögens an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7013, 7100, 'Erträge aus Anteilen an Personengesellschaften (Finanzanlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7014, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7015, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7016, 7100, 'Erträge aus Anteilen an Personengesellschaften (verbundene Unternehmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7017, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Kapitalgesellschaften (verbunden Unternehmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7018, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Personengesellschaften (verbundene Unternehmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7019, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7020, 7100, 'Zins- und Dividendenerträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7030, 7100, 'Erhaltene Ausgleichszahlungen (als außenstehender Aktionär)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7100, 7, 'Sonstige Zinsen und ähnliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7102, 7100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7103, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7104, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7105, 7100, 'ZINSERTräge § 233a AO, steuerpflichtig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7106, 7100, 'ZINSERTräge § 233a AO, steuerfrei (Anlage A KSt)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7107, 7100, 'ZINSERTräge § 233a AO, § 4 Abs. 5b EStG, steuerfrei'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7109, 7100, 'Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7110, 7100, 'Sonstige ZINSERTräge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7115, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Umlaufvermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7119, 7100, 'Sonstige ZINSERTräge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7120, 7100, 'Zinsähnliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7128, 7100, 'ZINSERTrag aus vorzeitiger Rückzahlung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7129, 7100, 'Zinsähnliche Erträge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7130, 7100, 'Diskonterträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7139, 7100, 'Diskonterträge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7140, 7100, 'Steuerfreie ZINSERTräge aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7141, 7100, 'ZINSERTräge aus der Abzinsung von Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7142, 7100, 'ZINSERTräge aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7143, 7100, 'ZINSERTräge aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7144, 7100, 'ZINSERTräge aus Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7145, 7100, 'Erträge aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7190, 7, 'Erträge aus Verlustübernahme'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7192, 7, 'Erhaltene Gewinne auf Grund einer Gewinngemeinschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7194, 7, 'Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7200, 7, 'Abschreibungen auf Finanzanlagen (dauerhaft)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7201, 7, 'Abschreibungen auf Finanzanlagen (nicht dauerhaft)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7204, 7, 'Abschreibungen auf Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (dauerhaft)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7207, 7, 'Abschreibungen auf Finanzanlagen – verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7208, 7, 'Aufwendungen auf Grund von Verlustanteilen an gewerbliche und selbständigen Mitunternehmerschaften, § 8 GewStG bzw. § 18 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7210, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7214, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7217, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens – verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7250, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7255, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage, § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7300, 7, 'Zinsen und ähnliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7302, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7303, 7300, 'Steuerlich abzugsfähige andere Nebenleistungen zu Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7304, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7305, 7300, 'Zinsaufwendungen § 233a AO abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7306, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO nicht abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7307, 7300, 'Zinsen aus Abzinsung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7308, 7300, 'Zinsaufwendungen § 233a AO nicht abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7309, 7300, 'Zinsaufwendungen an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7310, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7311, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7313, 7300, 'Nicht abzugsfähige Schuldzinsen gemäß § 4Abs. 4A EStG (Hinzurechnungsbetrag)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7316, 7300, 'Zinsen für Gesellschafterdarlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7317, 7300, 'Zinsen an Gesellschafter mit einer Beteiligung von mehr als 25 % bzw. diesen nahe stehende Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7318, 7300, 'Zinsen auf Kontokorrentkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7319, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7320, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7323, 7300, 'Abschreibungen auf Disagio zur Finanzierung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7324, 7300, 'Abschreibungen auf Disagio zur Finanzierung des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7325, 7300, 'Zinsaufwendungen für Gebäude, die zum Betriebsvermögen gehören'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7326, 7300, 'Zinsen zur Finanzierung des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7327, 7300, 'Renten und dauernde Lasten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7328, 7300, 'Zinsaufwendungen für Kapitalüberlassung durch Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7329, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7330, 7300, 'Zinsähnliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7339, 7300, 'Zinsähnliche Aufwendungen an verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7340, 7300, 'Diskontaufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7349, 7300, 'Diskontaufwendungen an verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7350, 7300, 'Zinsen und ähnliche Aufwendungen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7351, 7300, 'Zinsen und ähnliche Aufwendungen an verbundene Unternehmen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7355, 7300, 'Kreditprovisionen und Verwaltungskostenbeiträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7360, 7300, 'Zinsanteil der Zuführung zu Pensionsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7361, 7300, 'Zinsaufwendungen aus der Abzinsung von Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7362, 7300, 'Zinsaufwendungen aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7363, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7364, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7365, 7300, 'Aufwendungen aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7366, 7300, 'Steuerlich nicht abzugsfähige Zinsaufwendungen aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7390, 7, 'Aufwendungen aus Verlustübernahme'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7392, 7, 'Abgeführte Gewinne auf Grund einer Gewinngemeinschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7394, 7, 'Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7399, 7, 'Abgeführte Gewinnanteile (Soll)/ausgeglichene Verlustanteile (Haben) bei stiller Gesellschaft § 8 GesStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7400, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7401, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7450, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7451, 7, 'Erträge durch Verschmelzung und Umwandlung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7454, 7, 'Gewinn aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7460, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7461, 7460, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7462, 7460, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7463, 7460, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7464, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften (latente Steuern)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7500, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7501, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7550, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7551, 7, 'Verluste durch Verschmelzung und Umwandlung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7552, 7, 'Verluste durch außergewöhnliche Schadensfälle'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7553, 7, 'Aufwendungen für Restrukturierungs- und Sanierungsmaßnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7554, 7, 'Verluste aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten nach Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7560, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7561, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Pensionsrückstellungen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7562, 7561, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7563, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Latente Steuern)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7600, 7, 'Körperschaftsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7603, 7, 'Körperschaftsteuer für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7604, 7, 'Körperschaftsteuererstattungen für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7607, 7, 'Solidaritätszuschlagerstattungen für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7610, 7, 'Gewerbesteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7630, 7, 'Kapitalertragsteuer 25 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7633, 7, 'Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7638, 7, 'Ausländische Steuer auf im Inland steuerfrei DBA-Einkünfte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7639, 7, 'Anrechnung / Abzug ausländischer Quellensteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7640, 7639, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7641, 7, 'Gewerbesteuernachtzahlungen und Gewerbesteuererstattungen für Vorjahre, § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7642, 7641, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7643, 7, 'Erträge aus der Auflösung von Gewerbesteuerrückstellungen, § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7644, 7643, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7645, 7, 'Aufwendungen aus der Zuführung und Auflösung von latenten Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7646, 7, 'Aufwendungen aus der Zuführung zu Steuerrückstellungen für Steuerstundung (BstBK)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7648, 7, 'Erträge aus der Auflösung von Steuerrückstellungen für Steuerstundung (BstBK)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7649, 7, 'Erträge aus der Zuführung und Auflösung von latenten Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7650, 7, 'Sonstige Betriebssteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7675, 7, 'Verbrauchssteuer (sonstige Steuern)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7678, 7, 'Ökosteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7680, 7, 'Grundsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7685, 7, 'Kfz-Steuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7690, 7, 'Steuernachzahlungen Vorjahre für sonstige Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7692, 7, 'Steuererstattungen Vorjahre für sonstige Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7694, 7, 'Erträge aus der Auflösung von Rückstellungen für sonstige Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7700, 7, 'Gewinnvortrag nach Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7705, 7700, 'Gewinnvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7720, 7, 'Verlustvortrag nach Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7725, 7720, 'Verlustvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7730, 7, 'Entnahmen aus der Kapitalrücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7735, 7, 'Entnahmen aus der gesetzlichen Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7740, 7, 'Entnahmen aus dem Ausgleichsposten für aktivierte eigene Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7743, 7, 'Entnahmen aus der Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7744, 7, 'Entnahmen aus anderen Ergebnisrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7745, 7, 'Entnahmen aus satzungsmäßigen Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7750, 7, 'Entnahmen aus anderen Gewinnrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7751, 7750, 'Entnahmen aus gesamthänderisch gebundenen Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7755, 7, 'Erträge aus Kapitalherabsetzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7760, 7, 'Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7765, 7, 'Einstellungen in die gesetzliche Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7770, 7, 'Einstellungen in den Ausgleichsposten für aktivierte eigen Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7773, 7, 'Einstellungen in die Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7775, 7, 'Einstellungen in satzungsmäßige Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7780, 7, 'Einstellungen in andere Gewinnrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7781, 7780, 'Einstellungen in gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7785, 7, 'Einstellungen in andere Ergebnisrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7790, 7, 'Vorabausschüttungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7795, 7, 'Vortrag auf neue Rechnung (GuV)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7800, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7801, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7802, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7803, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7804, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7805, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7806, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7807, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7808, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7809, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7810, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7811, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7812, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7813, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7814, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7815, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7816, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7817, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7818, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7819, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7820, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7821, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7822, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7823, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7824, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7825, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7826, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7827, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7828, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7829, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7830, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7831, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7832, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7833, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7834, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7835, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7836, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7837, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7838, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7839, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7840, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7841, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7842, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7843, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7844, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7845, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7846, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7847, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7848, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7849, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7850, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7851, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7852, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7853, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7854, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7855, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7856, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7857, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7858, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7859, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7860, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7861, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7862, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7863, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7864, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7865, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7866, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7867, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7868, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7869, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7870, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7871, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7872, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7873, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7874, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7875, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7876, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7877, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7878, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7879, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7880, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7881, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7882, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7883, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7884, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7885, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7886, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7887, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7888, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7889, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7890, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7891, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7892, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7893, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7894, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7895, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7896, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7897, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7898, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7899, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7900, 7, '(reserviertes Konto)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8000, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8001, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8002, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8003, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8004, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8005, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8006, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8007, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8008, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8009, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8010, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8011, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8012, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8013, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8014, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8015, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8016, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8017, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8018, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8019, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8020, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8021, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8022, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8023, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8024, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8025, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8026, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8027, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8028, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8029, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8030, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8031, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8032, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8033, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8034, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8035, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8036, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8037, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8038, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8039, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8040, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8041, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8042, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8043, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8044, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8045, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8046, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8047, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8048, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8049, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8050, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8051, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8052, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8053, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8054, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8055, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8056, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8057, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8058, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8059, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8060, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8061, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8062, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8063, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8064, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8065, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8066, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8067, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8068, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8069, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8070, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8071, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8072, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8073, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8074, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8075, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8076, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8077, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8078, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8079, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8080, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8081, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8082, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8083, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8084, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8085, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8086, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8087, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8088, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8089, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8090, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8091, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8092, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8093, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8094, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8095, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8096, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8097, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8098, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8099, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8100, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8101, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8102, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8103, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8104, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8105, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8106, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8107, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8108, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8109, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8110, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8111, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8112, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8113, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8114, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8115, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8116, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8117, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8118, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8119, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8120, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8121, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8122, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8123, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8124, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8125, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8126, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8127, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8128, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8129, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8130, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8131, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8132, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8133, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8134, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8135, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8136, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8137, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8138, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8139, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8140, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8141, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8142, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8143, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8144, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8145, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8146, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8147, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8148, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8149, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8150, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8151, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8152, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8153, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8154, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8155, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8156, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8157, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8158, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8159, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8160, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8161, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8162, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8163, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8164, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8165, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8166, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8167, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8168, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8169, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8170, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8171, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8172, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8173, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8174, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8175, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8176, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8177, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8178, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8179, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8180, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8181, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8182, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8183, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8184, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8185, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8186, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8187, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8188, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8189, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8190, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8191, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8192, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8193, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8194, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8195, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8196, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8197, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8198, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8199, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8200, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8201, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8202, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8203, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8204, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8205, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8206, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8207, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8208, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8209, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8210, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8211, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8212, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8213, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8214, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8215, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8216, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8217, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8218, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8219, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8220, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8221, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8222, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8223, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8224, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8225, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8226, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8227, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8228, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8229, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8230, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8231, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8232, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8233, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8234, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8235, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8236, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8237, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8238, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8239, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8240, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8241, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8242, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8243, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8244, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8245, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8246, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8247, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8248, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8249, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8250, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8251, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8252, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8253, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8254, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8255, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8256, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8257, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8258, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8259, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8260, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8261, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8262, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8263, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8264, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8265, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8266, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8267, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8268, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8269, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8270, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8271, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8272, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8273, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8274, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8275, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8276, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8277, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8278, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8279, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8280, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8281, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8282, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8283, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8284, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8285, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8286, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8287, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8288, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8289, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8290, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8291, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8292, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8293, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8294, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8295, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8296, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8297, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8298, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8299, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8300, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8301, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8302, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8303, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8304, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8305, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8306, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8307, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8308, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8309, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8310, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8311, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8312, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8313, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8314, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8315, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8316, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8317, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8318, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8319, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8320, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8321, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8322, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8323, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8324, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8325, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8326, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8327, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8328, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8329, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8330, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8331, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8332, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8333, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8334, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8335, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8336, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8337, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8338, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8339, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8340, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8341, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8342, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8343, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8344, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8345, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8346, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8347, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8348, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8349, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8350, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8351, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8352, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8353, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8354, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8355, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8356, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8357, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8358, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8359, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8360, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8361, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8362, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8363, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8364, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8365, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8366, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8367, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8368, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8369, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8370, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8371, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8372, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8373, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8374, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8375, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8376, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8377, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8378, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8379, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8380, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8381, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8382, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8383, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8384, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8385, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8386, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8387, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8388, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8389, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8390, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8391, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8392, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8393, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8394, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8395, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8396, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8397, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8398, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8399, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8400, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8401, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8402, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8403, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8404, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8405, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8406, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8407, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8408, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8409, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8410, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8411, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8412, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8413, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8414, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8415, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8416, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8417, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8418, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8419, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8420, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8421, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8422, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8423, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8424, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8425, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8426, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8427, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8428, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8429, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8430, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8431, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8432, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8433, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8434, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8435, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8436, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8437, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8438, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8439, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8440, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8441, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8442, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8443, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8444, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8445, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8446, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8447, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8448, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8449, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8450, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8451, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8452, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8453, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8454, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8455, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8456, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8457, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8458, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8459, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8460, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8461, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8462, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8463, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8464, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8465, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8466, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8467, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8468, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8469, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8470, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8471, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8472, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8473, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8474, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8475, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8476, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8477, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8478, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8479, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8480, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8481, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8482, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8483, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8484, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8485, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8486, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8487, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8488, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8489, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8490, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8491, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8492, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8493, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8494, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8495, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8496, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8497, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8498, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8499, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8500, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8501, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8502, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8503, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8504, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8505, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8506, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8507, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8508, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8509, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8510, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8511, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8512, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8513, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8514, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8515, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8516, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8517, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8518, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8519, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8520, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8521, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8522, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8523, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8524, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8525, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8526, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8527, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8528, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8529, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8530, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8531, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8532, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8533, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8534, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8535, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8536, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8537, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8538, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8539, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8540, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8541, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8542, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8543, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8544, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8545, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8546, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8547, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8548, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8549, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8550, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8551, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8552, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8553, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8554, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8555, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8556, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8557, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8558, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8559, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8560, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8561, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8562, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8563, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8564, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8565, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8566, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8567, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8568, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8569, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8570, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8571, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8572, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8573, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8574, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8575, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8576, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8577, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8578, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8579, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8580, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8581, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8582, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8583, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8584, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8585, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8586, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8587, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8588, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8589, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8590, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8591, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8592, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8593, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8594, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8595, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8596, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8597, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8598, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8599, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8600, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8601, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8602, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8603, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8604, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8605, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8606, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8607, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8608, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8609, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8610, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8611, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8612, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8613, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8614, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8615, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8616, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8617, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8618, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8619, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8620, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8621, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8622, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8623, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8624, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8625, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8626, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8627, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8628, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8629, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8630, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8631, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8632, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8633, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8634, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8635, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8636, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8637, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8638, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8639, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8640, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8641, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8642, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8643, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8644, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8645, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8646, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8647, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8648, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8649, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8650, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8651, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8652, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8653, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8654, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8655, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8656, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8657, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8658, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8659, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8660, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8661, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8662, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8663, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8664, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8665, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8666, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8667, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8668, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8669, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8670, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8671, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8672, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8673, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8674, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8675, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8676, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8677, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8678, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8679, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8680, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8681, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8682, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8683, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8684, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8685, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8686, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8687, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8688, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8689, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8690, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8691, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8692, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8693, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8694, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8695, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8696, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8697, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8698, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8699, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8700, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8701, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8702, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8703, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8704, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8705, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8706, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8707, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8708, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8709, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8710, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8711, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8712, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8713, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8714, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8715, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8716, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8717, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8718, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8719, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8720, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8721, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8722, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8723, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8724, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8725, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8726, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8727, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8728, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8729, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8730, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8731, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8732, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8733, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8734, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8735, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8736, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8737, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8738, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8739, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8740, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8741, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8742, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8743, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8744, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8745, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8746, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8747, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8748, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8749, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8750, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8751, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8752, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8753, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8754, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8755, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8756, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8757, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8758, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8759, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8760, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8761, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8762, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8763, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8764, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8765, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8766, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8767, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8768, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8769, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8770, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8771, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8772, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8773, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8774, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8775, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8776, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8777, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8778, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8779, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8780, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8781, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8782, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8783, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8784, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8785, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8786, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8787, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8788, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8789, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8790, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8791, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8792, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8793, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8794, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8795, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8796, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8797, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8798, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8799, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8800, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8801, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8802, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8803, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8804, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8805, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8806, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8807, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8808, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8809, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8810, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8811, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8812, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8813, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8814, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8815, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8816, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8817, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8818, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8819, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8820, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8821, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8822, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8823, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8824, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8825, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8826, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8827, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8828, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8829, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8830, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8831, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8832, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8833, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8834, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8835, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8836, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8837, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8838, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8839, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8840, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8841, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8842, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8843, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8844, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8845, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8846, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8847, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8848, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8849, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8850, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8851, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8852, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8853, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8854, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8855, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8856, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8857, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8858, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8859, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8860, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8861, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8862, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8863, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8864, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8865, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8866, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8867, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8868, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8869, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8870, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8871, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8872, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8873, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8874, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8875, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8876, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8877, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8878, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8879, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8880, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8881, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8882, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8883, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8884, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8885, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8886, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8887, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8888, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8889, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8890, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8891, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8892, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8893, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8894, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8895, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8896, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8897, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8898, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8899, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8900, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8901, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8902, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8903, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8904, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8905, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8906, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8907, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8908, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8909, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8910, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8911, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8912, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8913, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8914, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8915, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8916, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8917, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8918, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8919, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8920, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8921, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8922, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8923, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8924, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8925, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8926, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8927, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8928, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8929, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8930, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8931, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8932, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8933, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8934, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8935, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8936, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8937, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8938, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8939, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8940, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8941, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8942, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8943, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8944, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8945, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8946, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8947, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8948, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8949, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8950, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8951, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8952, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8953, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8954, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8955, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8956, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8957, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8958, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8959, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8960, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8961, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8962, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8963, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8964, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8965, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8966, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8967, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8968, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8969, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8970, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8971, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8972, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8973, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8974, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8975, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8976, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8977, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8978, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8979, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8980, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8981, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8982, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8983, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8984, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8985, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8986, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8987, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8988, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8989, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8990, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8991, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8992, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8993, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8994, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8995, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8996, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8997, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8998, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8999, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 9, 9, 'Vortrags-, Kapital-, Korrektur- und statistische Konten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9000, 9, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9001, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9002, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9003, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9004, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9005, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9006, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9007, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9008, 9, 'Saldenvorträge, Debitoren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9009, 9, 'Saldenvorträge, Kreditoren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9060, 9009, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9069, 9009, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9070, 9, 'Offene Posten aus 2000'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9071, 9, 'Offene Posten aus 2001'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9072, 9, 'Offene Posten aus 2002'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9073, 9, 'Offene Posten aus 2003'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9074, 9, 'Offene Posten aus 2004'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9075, 9, 'Offene Posten aus 2005'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9076, 9, 'Offene Posten aus 2006'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9077, 9, 'Offene Posten aus 2007'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9078, 9, 'Offene Posten aus 2008'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9079, 9, 'Offene Posten aus 2009'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9080, 9, 'Offene Posten aus 2010'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9081, 9, 'Offene Posten aus 2011'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9082, 9, 'Offene Posten aus 2012'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9083, 9, 'Offene Posten aus 2013'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9084, 9, 'Offene Posten aus 2014'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9085, 9, 'Offene Posten aus 2015'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9086, 9, 'Offene Posten aus 2016'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9087, 9, 'Offene Posten aus 2017'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9088, 9, 'Offene Posten aus 2018'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9089, 9088, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9090, 9, 'Summenvortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9091, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9092, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9093, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9094, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9095, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9096, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9097, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9098, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9101, 9, 'Verkaufstage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9102, 9, 'Anzahl der Barkunden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9103, 9, 'Beschäftigte Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9104, 9, 'Unbezahlte Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9105, 9, 'Verkaufskräfte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9106, 9, 'Geschäftsraum qm'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9107, 9, 'Verkaufsraum qm'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9116, 9, 'Anzahl Rechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9117, 9, 'Anzahl Kreditkunden monatlich'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9118, 9, 'Anzahl Kreditkunden aufgelaufen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9120, 9, 'Erweiterungsinvestitionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9130, 9120, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9131, 9120, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9135, 9, 'Auftragseingang im Geschäftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9140, 9, 'Auftragsbestand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9141, 9, 'Variables Kapital TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9142, 9, 'Variables Kapital – Anteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9143, 9142, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9144, 9142, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9145, 9142, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9146, 9, 'Variables Kapital Vollhafter – Übertragung einer § 6b EstG-Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9147, 9, 'Variables Kapital Teilhafter – Übertragung einer § 6b EstG-Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9148, 9147, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9149, 9147, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9150, 9, 'Festkapital – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9151, 9, 'Variables Kapital – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9152, 9, 'Verlust-/Vortragskonto – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9153, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9154, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9155, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9156, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9157, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9158, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9159, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9160, 9, 'Kommandit-Kapital – andere Kapitalkontenanpassungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9161, 9, 'Variables Kapital – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9162, 9, 'Verlustausgleichskonto – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9163, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9164, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9165, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9166, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9167, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9168, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9169, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9170, 9, 'Festkapital – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9171, 9, 'Variables Kapital – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9172, 9, 'Verlust-/Vortragskonto – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9173, 9, 'Kapitalkonto III – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9174, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9175, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9176, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9177, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9178, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9179, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9180, 9, 'Kommandit-Kapital – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9181, 9, 'Variables Kapital – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9182, 9, 'Verlustausgleichskonto – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9183, 9, 'Kapitalkonto III – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9184, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9185, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9186, 9185, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9187, 9185, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9188, 9185, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9189, 9, 'Verrechnungskonto für Umbuchungen zwischen Gesellschafter-Eigenkapitalkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9190, 9, 'Gegenkonto für Mengeneinheiten Konten 9101-9107 und Konten 9116-9118'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9199, 9, 'Gegenkonto zu Konten 9120, 9135-9140'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9200, 9, 'Beschäftigte Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9201, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9202, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9203, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9204, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9205, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9206, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9207, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9208, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9209, 9, 'Gegenkonto zu 9200'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9210, 9, 'Produktive Löhne'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9219, 9, 'Gegenkonto zu 9120'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9220, 9, 'Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9221, 9, 'Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9229, 9, 'Gegenkonto zu 9220-9221'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9230, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9232, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9234, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9239, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9240, 9, 'Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9241, 9, 'Investitionsverbindlichkeiten aus Sachanlagekäufen bei Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9242, 9, 'Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9243, 9, 'Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9244, 9, 'Gegenkonto zu Konto 9240-9243'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9245, 9, 'Forderungen aus Sachnanlageverkäufen bei sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9246, 9, 'Forderungen aus Verkäufen immaterieller Vermögensgegenstände bei sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9247, 9, 'Forderungen aus Verkäufen von Finanzanlagen bei sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9249, 9, 'Gegenkonto zu Konto 9245-47'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9250, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9255, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9259, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9260, 9, 'Kurzfristige Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9262, 9, 'Mittelfristige Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9264, 9, 'Langfristige Rückstellungen, außer Pensionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9269, 9, 'Gegenkonto zu Konten 9260-9268'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9270, 9, 'Gegenkonto zu 9271-9279 (Soll-Buchung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9271, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9272, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln gegenüber verbundenen/assoziierten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9273, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9274, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften gegenüber verbundenen/assoziierten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9275, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9276, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen/assoziierten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9277, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9278, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen/assoziierten Unternehemn'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9279, 9, 'Verpflichtungen aus Treuhandvermögen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9280, 9, 'Gegenkonto zu 9281-9284'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9281, 9, 'Verpflichtungen aus Miet- und Leasingverträgen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9282, 9, 'Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9283, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9284, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehemen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9285, 9, 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach „ 253 Abs. 6 HGB (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9286, 9, 'Gegenkonto zu 9285'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9287, 9, 'Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9288, 9, 'Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9289, 9, 'Gegenkonto zu 9287 und 9288'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9290, 9, 'Statistisches Konto steuerfreie Auslagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9291, 9, 'Gegenkonto zu 9290'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9292, 9, 'Statistisches Konto Fremdgeld'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9293, 9, 'Gegenkonto zu 9292'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9295, 9, 'Einlagen stiller Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9297, 9, 'Steuerrechtlicher Ausgleichsposten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9300, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9301, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9302, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9303, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9304, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9305, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9306, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9307, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9308, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9309, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9310, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9311, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9312, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9313, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9314, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9315, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9316, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9317, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9318, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9319, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9320, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9326, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9327, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9328, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9329, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9330, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9331, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9332, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9333, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9334, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9335, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9336, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9337, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9338, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9339, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9340, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9341, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9342, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9343, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9346, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9347, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9348, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9349, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9357, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9358, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9359, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9360, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9365, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9366, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9367, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9371, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9372, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9390, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9391, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9392, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9393, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9394, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9395, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9396, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9397, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9398, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9399, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9849', 9400, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9848', 9401, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9847', 9402, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9846', 9403, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9845', 9404, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9844', 9405, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9843', 9406, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9842', 9407, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9841', 9408, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9840', 9409, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9839', 9410, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9838', 9411, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9837', 9412, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9836', 9413, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9835', 9414, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9834', 9415, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9833', 9416, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9832', 9417, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9831', 9418, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9830', 9419, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9829', 9420, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9828', 9421, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9827', 9422, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9826', 9423, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9825', 9424, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9824', 9425, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9823', 9426, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9822', 9427, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9821', 9428, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9820', 9429, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9819', 9430, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9818', 9431, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9817', 9432, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9816', 9433, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9815', 9434, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9814', 9435, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9813', 9436, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9812', 9437, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9811', 9438, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9810', 9439, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9809', 9440, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9808', 9441, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9807', 9442, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9806', 9443, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9805', 9444, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9804', 9445, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9803', 9446, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9802', 9447, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9801', 9448, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9800', 9449, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9799', 9450, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9798', 9451, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9797', 9452, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9796', 9453, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9795', 9454, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9794', 9455, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9793', 9456, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9792', 9457, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9791', 9458, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9790', 9459, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9789', 9460, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9788', 9461, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9787', 9462, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9786', 9463, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9785', 9464, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9784', 9465, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9783', 9466, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9782', 9467, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9781', 9468, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9780', 9469, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9779', 9470, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9778', 9471, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9777', 9472, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9776', 9473, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9775', 9474, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9774', 9475, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9773', 9476, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9772', 9477, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9771', 9478, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9770', 9479, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9769', 9480, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9768', 9481, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9767', 9482, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9766', 9483, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9765', 9484, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9764', 9485, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9763', 9486, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9762', 9487, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9761', 9488, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9760', 9489, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9759', 9490, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9758', 9491, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9757', 9492, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9756', 9493, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9755', 9494, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9754', 9495, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9753', 9496, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9752', 9497, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9751', 9498, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9750', 9499, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9500, 9, 'Anteil für Konto 2000 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9501, 9, 'Anteil für Konto 2001 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9502, 9, 'Anteil für Konto 2002 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9503, 9, 'Anteil für Konto 2003 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9504, 9, 'Anteil für Konto 2004 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9505, 9, 'Anteil für Konto 2005 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9506, 9, 'Anteil für Konto 2006 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9507, 9, 'Anteil für Konto 2007 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9508, 9, 'Anteil für Konto 2008 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9509, 9, 'Anteil für Konto 2009 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9510, 9, 'Anteil für Konto 2010 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9511, 9, 'Anteil für Konto 2011 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9512, 9, 'Anteil für Konto 2012 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9513, 9, 'Anteil für Konto 2013 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9514, 9, 'Anteil für Konto 2014 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9515, 9, 'Anteil für Konto 2015 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9516, 9, 'Anteil für Konto 2016 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9517, 9, 'Anteil für Konto 2017 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9518, 9, 'Anteil für Konto 2018 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9519, 9, 'Anteil für Konto 2019 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9520, 9, 'Anteil für Konto 2020 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9521, 9, 'Anteil für Konto 2021 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9522, 9, 'Anteil für Konto 2022 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9523, 9, 'Anteil für Konto 2023 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9524, 9, 'Anteil für Konto 2024 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9525, 9, 'Anteil für Konto 2025 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9526, 9, 'Anteil für Konto 2026 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9527, 9, 'Anteil für Konto 2027 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9528, 9, 'Anteil für Konto 2028 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9529, 9, 'Anteil für Konto 2029 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9530, 9, 'Anteil für Konto 9910 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9531, 9, 'Anteil für Konto 9911 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9532, 9, 'Anteil für Konto 9912 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9533, 9, 'Anteil für Konto 9913 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9534, 9, 'Anteil für Konto 9914 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9535, 9, 'Anteil für Konto 9915 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9536, 9, 'Anteil für Konto 9916 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9537, 9, 'Anteil für Konto 9917 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9538, 9, 'Anteil für Konto 9918 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9539, 9, 'Anteil für Konto 9919 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9540, 9, 'Anteil für Konto 0060 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9541, 9, 'Anteil für Konto 0061 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9542, 9, 'Anteil für Konto 0062 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9543, 9, 'Anteil für Konto 0063 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9544, 9, 'Anteil für Konto 0064 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9545, 9, 'Anteil für Konto 0065 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9546, 9, 'Anteil für Konto 0066 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9547, 9, 'Anteil für Konto 0067 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9548, 9, 'Anteil für Konto 0068 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9549, 9, 'Anteil für Konto 0069 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9550, 9, 'Anteil für Konto 2050 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9551, 9, 'Anteil für Konto 2051 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9552, 9, 'Anteil für Konto 2052 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9553, 9, 'Anteil für Konto 2053 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9554, 9, 'Anteil für Konto 2054 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9555, 9, 'Anteil für Konto 2055 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9556, 9, 'Anteil für Konto 2056 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9557, 9, 'Anteil für Konto 2057 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9558, 9, 'Anteil für Konto 2058 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9559, 9, 'Anteil für Konto 2059 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9560, 9, 'Anteil für Konto 2060 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9561, 9, 'Anteil für Konto 2061 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9562, 9, 'Anteil für Konto 2062 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9563, 9, 'Anteil für Konto 2063 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9564, 9, 'Anteil für Konto 2064 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9565, 9, 'Anteil für Konto 2065 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9566, 9, 'Anteil für Konto 2066 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9567, 9, 'Anteil für Konto 2067 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9568, 9, 'Anteil für Konto 2068 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9569, 9, 'Anteil für Konto 2069 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9570, 9, 'Anteil für Konto 2070 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9571, 9, 'Anteil für Konto 2071 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9572, 9, 'Anteil für Konto 2072 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9573, 9, 'Anteil für Konto 2073 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9574, 9, 'Anteil für Konto 2074 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9575, 9, 'Anteil für Konto 2075 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9576, 9, 'Anteil für Konto 2076 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9577, 9, 'Anteil für Konto 2077 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9578, 9, 'Anteil für Konto 2078 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9579, 9, 'Anteil für Konto 2079 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9580, 9, 'Anteil für Konto 9820 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9581, 9, 'Anteil für Konto 9821 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9582, 9, 'Anteil für Konto 9822 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9583, 9, 'Anteil für Konto 9823 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9584, 9, 'Anteil für Konto 9824 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9585, 9, 'Anteil für Konto 9825 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9586, 9, 'Anteil für Konto 9826 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9587, 9, 'Anteil für Konto 9827 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9588, 9, 'Anteil für Konto 9828 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9589, 9, 'Anteil für Konto 9829 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9590, 9, 'Anteil für Konto 0080 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9591, 9, 'Anteil für Konto 0081 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9592, 9, 'Anteil für Konto 0082 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9593, 9, 'Anteil für Konto 0083 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9594, 9, 'Anteil für Konto 0084 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9595, 9, 'Anteil für Konto 0085 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9596, 9, 'Anteil für Konto 0086 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9597, 9, 'Anteil für Konto 0087 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9598, 9, 'Anteil für Konto 0088 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9599, 9, 'Anteil für Konto 0089 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9600, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9601, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9602, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9603, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9604, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9605, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9606, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9607, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9608, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9609, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9610, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9611, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9612, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9613, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9614, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9615, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9616, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9617, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9618, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9619, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9620, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9621, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9622, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9623, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9624, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9625, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9626, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9627, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9628, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9629, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9630, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9631, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9632, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9633, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9634, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9635, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9636, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9637, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9638, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9639, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9640, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9641, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9642, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9643, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9644, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9645, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9646, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9647, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9648, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9649, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9650, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9651, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9652, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9653, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9654, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9655, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9656, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9658, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9659, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9660, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9661, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9662, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9663, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9664, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9665, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9666, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9667, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9668, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9669, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9670, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9671, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9672, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9673, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9674, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9675, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9676, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9677, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9678, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9679, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9680, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9681, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9682, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9683, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9684, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9685, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9686, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9687, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9688, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9689, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9690, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9691, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9692, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9693, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9694, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9695, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9696, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9697, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9698, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9699, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9700, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9701, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9702, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9703, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9704, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9705, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9706, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9707, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9708, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9709, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9710, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9711, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9712, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9713, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9714, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9715, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9716, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9717, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9718, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9719, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9720, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9721, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9722, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9723, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9724, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9725, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9726, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9727, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9728, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9729, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9730, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9731, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9732, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9733, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9734, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9735, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9736, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9737, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9738, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9739, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9740, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9741, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9742, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9743, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9744, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9745, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9746, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9747, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9748, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9749, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9750, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9751, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9752, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9753, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9754, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9755, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9756, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9757, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9758, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9759, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9760, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9761, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9762, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9763, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9764, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9765, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9766, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9767, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9768, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9769, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9770, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9771, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9772, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9773, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9774, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9775, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9776, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9777, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9778, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9779, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9780, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9781, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9782, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9783, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9784, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9785, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9786, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9787, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9788, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9789, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9790, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9791, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9792, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9793, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9794, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9795, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9796, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9797, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9798, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9799, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9800, 9, 'Abstimmsummenkonto für den Import von Buchungssätzen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9802, 9, 'Gesamthänderisch gebundene Rücklagen – andere Kapitalkontenanpassungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9803, 9, 'Gewinnvortrag/Verlustvortrag – andere Kapitalkontenanpassungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9804, 9, 'Gesamthänderisch gebundene Rücklagen – Umbuchungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9805, 9, 'Gewinnvortrag/Verlustvortrag – Umbuchungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9806, 9, 'Zuzurechnender Anteil am Jahresüberschuss/Jahresfehlbetrag – je Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9807, 9, 'Zuzurechnender Anteil am Bilanzgewinn/Bilanzverlust – je Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9808, 9, 'Gegenkonto für zuzurechnenden Anteil am Jahresüberschuss/Jahresfehlbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9809, 9, 'Gegenkonto für zuzurechnenden Anteil am Bilanzgewinn/Bilanzverlust'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9810, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9811, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9812, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9813, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9814, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9815, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9816, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9817, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9818, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9819, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9820, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9821, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9822, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9823, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9824, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9825, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9826, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9827, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9828, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9829, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9830, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9831, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9832, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9833, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9834, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9835, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9836, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9837, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9838, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9839, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9840, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9841, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9842, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9843, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9844, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9845, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9846, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9847, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9848, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9849, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9850, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9851, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9852, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9853, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9854, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9855, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9856, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9857, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9858, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9859, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9860, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9861, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9862, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9863, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9864, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9865, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9866, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9867, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9868, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9869, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9870, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9871, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9872, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9873, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9874, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9875, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9876, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9877, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9878, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9879, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9880, 9, 'Ausgleichsposten für aktivierte eigen Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9882, 9880, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9883, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9884, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9885, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9886, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommandisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9887, 9, 'Steueraufwand der Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9889, 9, 'Gegenkonto zu 9887'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9890, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9891, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Soll) – Gegenkonto zu 9890'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)', 9892, 9, 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9893, 9, 'Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9894, 9, 'Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9895, 9, 'Gegenkonto 9893-9894 für die Aufteilung der Umsatzsteuer (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9696, 9, 'Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9897, 9, 'Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9899, 9, 'Gegenkonto 9896-9897 für die Aufteilung der Vorsteuer (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9910, 9, 'Gegenkonto zur Minderung der Entnahmen $ 4 (4a) EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9911, 9, 'Minderung der Entnahmen § 4 (4a) EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9912, 9, 'Erhöhung der Entnahmen § 4 (4a) EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9913, 9, 'Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9916, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9917, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 3. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9918, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9919, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 3. vorangegangenen Wirtschaftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9960, 9, 'Bewertungskorrektur zu Forderungen aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9961, 9, 'Bewertungskorrektur zu sonstigen Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9962, 9, 'Bewertungskorrektur zu Guthaben bei Kreditinstituten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9963, 9, 'Bewertungskorrektur zu Verbindlichkeiten gegenüber Kreditinstituten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9964, 9, 'Bewertungskorrektur zu Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9965, 9, 'Bewertungskorrektur zu sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9970, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9971, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben) – Gegenkonto 9970'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9972, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9973, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahren, außerbilanziell (Soll) – Gegenkonto zu 9972, 9916, 9917'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9974, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im vorangegangenen Wirtschaftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9975, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahren – Gegenkonto 9974, 9918, 9919'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9976, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9977, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Soll) – Gegenkonto zu 9976'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9978, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Soll)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9979, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Haben) – Gegenkonto zu 9978'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9980, 9, 'Anteil Belastung au Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9981, 9, 'Verrechnungskonto für Anteil Belastung auf Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9982, 9, 'Anteil Gutschrift auf Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9983, 9, 'Verrechnungskonto für Anteil Gutschrift auf Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9984, 9, 'Gewinnkorrektur nach § 60 Abs. 2 EstDV – Erhöhung handelsrechtliches Ergebnis durch Habenbuchung – Minderung handelrechtliches Ergebnis durch Sollbuchung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9985, 9, 'Gegenkonto zu 9984'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9986, 9, 'Ergebnisverteilung auf Fremdkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9987, 9, 'Bilanzberichtigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9989, 9, 'Gegenkonto 9986-9988'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9990, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9991, 9, 'Erträge (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9992, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9993, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9994, 9, 'Aufwendungen (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9995, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9998, 9, 'Gegenkonto 9990-9997'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3837, 'SKR04', 'Anlagevermögen', 'Anlagevermögen', 0, 0, 'Anlagevermögen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3838, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 100, 0, 'Entgeltlich erworbene Konzessionen, gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3839, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 110, 100, 'Konzessionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3840, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 120, 100, 'Gewerbliche Schutzrechte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3841, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 130, 100, 'Ähnliche Rechte und Werte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3842, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 135, 100, 'EDV-Software'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3843, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 140, 100, 'Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten und Werte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3844, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 143, 0, 'Selbst geschaffene immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3845, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 144, 143, 'EDV-Software'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3846, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 145, 143, 'Lizenzen und Franchiseverträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3847, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 146, 143, 'Konzessionen und gewerbliche Schutzrechte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3848, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 147, 143, 'Rezepte, Verfahren, Prototypen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3849, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 148, 143, 'Immaterielle Vermögensgegenstände in Entwicklung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3850, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 150, 0, 'Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3851, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 160, 0, 'Verschmelzungsmehrwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3852, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 170, 0, 'Geleistete Anzahlungen auf immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3853, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 179, 0, 'Anzahlungen auf Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3854, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 200, 0, 'Grundstücke, grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstück'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3855, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 210, 200, 'Grundstücksgleiche Rechte ohne Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3856, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 215, 200, 'Unbebaute Grundstücke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3857, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 220, 200, 'Grundstücksgleiche Rechte (Erbbaurecht, Dauerwohnrecht, unbebaute Grundstücke)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3858, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 225, 200, 'Grundstücke mit Substanzverkehr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3859, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 229, 200, 'Grundstücksanteil des häuslichen Arbeitszimmers'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3860, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 230, 200, 'Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3861, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 235, 200, 'Grundstückswerte eigener bebauter Grundstücke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3862, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 240, 200, 'Geschäftsbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3863, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 250, 200, 'Fabrikbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3864, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 260, 200, 'Andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3865, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 270, 200, 'Garagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3866, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 280, 200, 'Außenanlagen für Geschäfts-, Fabrik- und andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3867, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 285, 200, 'Hof- und Wegbefestigungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3868, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 290, 200, 'Einrichtungen für Geschäfts-. Fabrik- und andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3869, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 300, 200, 'Wohnbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3870, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 305, 200, 'Garagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3871, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 310, 200, 'Außenanlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3872, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 315, 200, 'Hof- und Wegbefestigungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3873, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 320, 200, 'Einrichtungen für Wohnbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3874, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 329, 200, 'Gebäudeteil des häuslichen Arbeitszimmers'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3875, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 330, 200, 'Bauten auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3876, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 340, 200, 'Geschäftsbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3877, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 350, 200, 'Fabrikbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3878, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 360, 200, 'Wohnbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3879, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 370, 200, 'Andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3880, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 380, 200, 'Garagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3881, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 390, 200, 'Außenanlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3882, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 395, 200, 'Hof- und Wegbefestigungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3883, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 398, 200, 'Einrichtungen für Geschäfts-. Fabrik-, Wohn- und andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3884, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 400, 0, 'Technische Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3885, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 420, 400, 'Technische Anlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3886, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 440, 400, 'Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3887, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 450, 400, 'Transportanlagen und Ähnlichen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3888, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 460, 400, 'Maschinengebundene Werkzeuge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3889, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 470, 400, 'Betriebsvorrichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3890, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 500, 0, 'Andere Anlagen, Betriebs- und Geschäftsausstattungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3891, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 510, 500, 'Andere Anlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3892, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 520, 500, 'PKW'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3893, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 540, 500, 'LKW'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3894, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 560, 500, 'Sonstige Transportmittel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3895, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 620, 500, 'Werkzeuge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3896, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 630, 500, 'Betriebsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3897, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 635, 500, 'Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3898, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 640, 500, 'Ladeneinrichtung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3899, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 650, 500, 'Büroeinrichtung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3900, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 660, 500, 'Gerüst- und Schalungsmaterial'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3901, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 670, 500, 'Geringwertige Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3902, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 675, 500, 'Wirtschaftsgüter (Sammelposten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3903, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 680, 500, 'Einbauten in fremde Grundstücke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3904, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 690, 500, 'Sonstige Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3905, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 700, 0, 'Geleistete Anzahlungen und Anlagen im Bau'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3906, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 705, 700, 'Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3907, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 710, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf eigenen Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3908, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 720, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3909, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 725, 700, 'Wohnbauten im Bau auf eigenen Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3910, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 735, 700, 'Anzahlungen auf Wohnbauten auf eigene Grundstücken und grundstücksgleichen Rechten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3911, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 740, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3912, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 750, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3913, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 755, 700, 'Wohnbauten im Bau auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3914, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 765, 700, 'Anzahlungen auf Wohnbauten auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3915, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 770, 700, 'Technische Anlagen und Maschinen im Bau'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3916, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 780, 700, 'Anzahlungen auf technische Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3917, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 785, 700, 'Andere Anlagen, Betriebs- und Geschäftsausstattung im Bau'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3918, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 795, 700, 'Anzahlungen auf andere Anlagen, Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3919, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 800, 700, 'Anteile an verbundenen Unternehmen (Anlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3920, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 803, 800, 'Anteile an verbundenen Unternehmen, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3921, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 804, 800, 'Anteile an verbundenen Unternehmen, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3922, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 805, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3923, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 808, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3924, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 809, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3925, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 810, 700, 'Ausleihungen an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3926, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 813, 810, 'Ausleihungen an verbundene Unternehmen, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3927, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 814, 810, 'Ausleihungen an verbundene Unternehmen, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3928, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 815, 810, 'Ausleihungen an verbundene Unternehmen, Einzelunternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3929, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 820, 700, 'Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3930, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 829, 820, 'Beteiligung einer GmbH & Co. KG an einer Komplementär GmbH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3931, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 830, 820, 'Typisch stille Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3932, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 840, 820, 'Atypische stille Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3933, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 850, 820, 'Beteiligungen an Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3934, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 860, 820, 'Beteiligungen an Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3935, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 880, 700, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3936, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 883, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3937, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 885, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3938, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 900, 0, 'Wertpapiere des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3939, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 910, 900, 'Wertpapiere mit Gewinnbeteiligungsansprüchen, die dem Teileinkünfteverfahren unterliegen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3940, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 920, 900, 'Festverzinsliche Wertpapiere'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3941, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 930, 0, 'Sonstige Ausleihungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3942, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 940, 930, 'Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3943, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 960, 930, 'Ausleihungen an Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3944, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an GmbH-Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3945, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 962, 930, 'Ausleihungen an persönlich haftende Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3946, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3947, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 964, 930, 'Ausleihungen an stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3948, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 970, 930, 'Ausleihungen an nahe stehende Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3949, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 980, 0, 'Genossenschaftsanteile zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3950, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 990, 0, 'Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3951, 'SKR04', 'Umlaufvermögen', 'Umlaufvermögen', 1, 1, 'Umlaufvermögen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3952, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1000, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3953, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1001, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3954, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1002, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3955, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1003, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3956, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1004, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3957, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1005, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3958, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1006, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3959, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1007, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3960, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1008, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3961, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1009, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3962, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1010, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3963, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1011, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3964, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1012, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3965, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1013, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3966, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1014, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3967, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1015, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3968, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1016, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3969, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1017, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3970, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1018, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3971, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1019, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3972, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1020, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3973, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1021, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3974, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1022, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3975, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1023, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3976, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1024, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3977, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1025, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3978, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1026, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3979, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1027, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3980, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1028, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3981, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1029, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3982, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1030, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3983, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1031, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3984, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1032, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3985, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1033, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3986, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1034, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3987, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1035, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3988, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1036, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3989, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1037, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3990, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1038, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3991, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1039, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3992, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1040, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3993, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1041, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3994, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1042, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3995, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1043, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3996, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1044, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3997, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1045, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3998, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1046, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3999, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1047, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4000, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1048, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4001, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1049, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4002, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1050, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4003, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1051, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4004, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1052, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4005, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1053, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4006, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1054, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4007, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1055, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4008, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1056, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4009, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1057, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4010, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1058, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4011, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1059, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4012, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1060, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4013, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1061, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4014, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1062, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4015, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1063, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4016, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1064, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4017, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1065, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4018, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1066, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4019, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1067, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4020, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1068, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4021, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1069, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4022, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1070, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4023, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1071, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4024, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1072, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4025, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1073, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4026, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1074, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4027, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1075, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4028, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1076, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4029, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1077, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4030, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1078, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4031, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1079, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4032, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1080, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4033, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1081, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4034, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1082, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4035, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1083, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4036, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1084, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4037, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1085, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4038, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1086, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4039, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1087, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4040, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1088, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4041, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1089, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4042, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1090, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4043, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1091, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4044, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1092, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4045, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1093, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4046, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1094, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4047, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1095, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4048, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1096, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4049, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1097, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4050, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1098, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4051, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1099, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4052, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1100, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4053, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1101, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4054, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1102, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4055, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1103, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4056, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1104, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4057, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1105, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4058, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1106, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4059, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1107, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4060, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1108, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4061, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1109, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4062, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1110, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4063, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1111, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4064, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1112, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4065, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1113, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4066, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1114, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4067, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1115, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4068, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1116, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4069, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1117, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4070, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1118, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4071, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1119, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4072, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1120, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4073, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1121, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4074, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1122, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4075, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1123, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4076, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1124, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4077, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1125, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4078, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1126, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4079, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1127, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4080, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1128, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4081, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1129, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4082, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1130, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4083, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1131, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4084, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1132, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4085, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1133, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4086, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1134, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4087, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1135, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4088, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1136, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4089, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1137, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4090, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1138, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4091, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1139, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4092, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1140, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4093, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1141, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4094, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1142, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4095, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1143, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4096, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1144, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4097, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1145, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4098, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1146, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4099, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1147, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4100, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1148, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4101, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1149, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4102, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1150, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4103, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1151, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4104, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1152, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4105, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1153, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4106, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1154, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4107, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1155, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4108, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1156, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4109, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1157, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4110, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1158, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4111, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1159, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4112, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1160, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4113, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1161, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4114, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1162, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4115, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1163, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4116, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1164, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4117, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1165, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4118, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1166, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4119, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1167, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4120, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1168, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4121, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1169, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4122, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1170, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4123, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1171, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4124, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1172, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4125, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1173, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4126, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1174, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4127, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1175, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4128, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1176, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4129, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1177, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4130, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1178, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4131, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1179, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4132, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1180, 1, 'Geleistete Anzahlungen auf Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4133, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1181, 1180, 'Geleistete Anzahlungen auf 7% Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4134, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1182, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4135, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1183, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4136, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1184, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4137, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1185, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4138, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1186, 1180, 'Geleistete Anzahlungen auf 19% Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4139, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1190, 1180, 'Erhaltene Anzahlungen auf Bestellungen (von Vorräten offen abgesetzt)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4140, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1200, 1, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4141, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1201, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4142, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1202, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4143, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1203, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4144, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1204, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4145, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1205, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4146, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1206, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4147, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1210, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4148, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1211, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4149, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1212, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4150, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1213, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4151, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1214, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4152, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1215, 1200, 'Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmers (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4153, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1216, 1200, 'Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4154, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1217, 1200, 'Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4155, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1218, 1200, 'Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4156, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1219, 1200, 'Gegenkonto 1215-1218 bei Aufteilung der Forderungen nach Steuersätzen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4157, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1220, 1200, 'Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4158, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1221, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4159, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1225, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4160, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1230, 1200, 'Wechsel aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4161, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1231, 1200, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4162, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1232, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4163, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1235, 1200, 'Wechsel aus Lieferungen und Leistungen, Bundesbankfertig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4164, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1240, 1200, 'Zweifelhafte Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4165, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1241, 1200, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4166, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1245, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4167, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1246, 1200, 'Einzelwertberichtigungen auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4168, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1247, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4169, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1248, 1200, 'Pauschalwertberichtigung auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4170, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1249, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4171, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1250, 1200, 'Forderungen aus Lieferungen und Leistungen gegen Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4172, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1251, 1200, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4173, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1255, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4174, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1258, 1200, 'Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4175, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1259, 1200, 'Gegenkonto 1221-1229, 1240-1245, 1250-1257, 1270-1279, 1290-1297 bei Aufteilung Debitorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4176, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1260, 1, 'Forderungen gegen verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4177, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1261, 1260, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4178, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1265, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4179, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1266, 1260, 'Besitzwechsel gegen verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4180, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1267, 1260, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4181, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1268, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4182, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1269, 1260, 'Besitzwechsel gegen verbundene Unternehmen, bundesbankfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4183, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1270, 1260, 'Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4184, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1271, 1260, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4185, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1275, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4186, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1276, 1260, 'Wertberichtigung auf Forderungen gegen verbundene Unternehmen – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4187, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1277, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4188, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1280, 1, 'Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4189, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1281, 1280, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4190, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1285, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4191, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1286, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4192, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1287, 1280, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4193, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1288, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4194, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1289, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht, bundesbankfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4195, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1290, 1280, 'Forderungen aus Lieferungen und Leistungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4196, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1291, 1280, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4197, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1295, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4198, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1296, 1280, 'Wertberichtigungen auf Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht – Restlaufzeit 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4199, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1297, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4200, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1298, 1, 'Ausstehende Einlagen auf das gezeichnete Kapital, eingefordert (Forderungen, nicht eingeforderte ausstehende Einlagen s. Konto 2910)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4201, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1299, 1, 'Nachschüsse (Forderungen, Gegenkonto 2929)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4202, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1300, 1, 'Sonstige Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4203, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1301, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4204, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1305, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4205, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1307, 1300, 'Forderungen gegen GmbH-Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4206, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1308, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4207, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1309, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4208, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1310, 1300, 'Forderungen gegen Vorstandsmitglieder und Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4209, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1311, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4210, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1315, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4211, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1317, 1300, 'Forderungen gegen persönlich haftende Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4212, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1318, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4213, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1319, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4214, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1320, 1300, 'Forderungen gegen Aufsichtsrats- und Beirats-Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4215, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1321, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4216, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1325, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4217, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1327, 1300, 'Forderungen gegen Kommanditisten und atypisch stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4218, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1328, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4219, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1329, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4220, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1330, 1300, 'Forderungen gegen sonstige Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4221, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1331, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4222, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1335, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4223, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1337, 1300, 'Forderungen gegen typisch stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4224, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1338, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4225, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1339, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4226, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1340, 1300, 'Forderungen gegen Personal aus Lohn- und Gehaltsabrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4227, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1341, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4228, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1345, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4229, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1349, 1300, 'Ansprüche aus betrieblicher Altersversorgung und Pensionsansprüche (Mitunternehmer)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4230, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1350, 1300, 'Kautionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4231, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1351, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4232, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1355, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4233, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1360, 1300, 'Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4234, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1361, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4235, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1365, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4236, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1369, 1300, 'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4237, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1370, 1300, 'Durchlaufende Posten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4238, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1374, 1300, 'Fremdgeld'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4239, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1375, 1300, 'Agenturwarenabrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4240, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1376, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 2 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4241, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1377, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 2 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4242, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1378, 1300, 'Ansprüche aus Rückdeckungsversicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4243, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1380, 1300, 'Vermögensgegenstände zur Erfüllung von Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4244, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1381, 1300, 'Vermögensgegenstände zur Saldierung mit Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4245, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1382, 1300, 'Vermögensgegenstände zur Erfüllung von mit der Altersvorsorge vergleichbaren langfristigen Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4246, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1383, 1300, 'Vermögensgegenstände zur Saldierung mit der Altersversorgung vergleichbaren langfristigen Verpflichtungen nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4247, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1390, 1300, 'GmbH-Anteile zum kurzfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4248, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1391, 1300, 'Forderungen gegen Arbeitsgemeinschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4249, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1393, 1300, 'Genussrechte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4250, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1394, 1300, 'Einzahlungsansprüche zu Nebenleistungen oder Zuzahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4251, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1395, 1300, 'Genossenschaftsanteile zum kurzfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4252, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1396, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4253, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1397, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4254, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1398, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4255, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1399, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4256, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1400, 1300, 'Abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4257, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1401, 1300, 'Abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4258, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1402, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4259, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1403, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4260, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1404, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4261, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1405, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4262, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1406, 1300, 'Abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4263, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1407, 1300, 'Abziehbare Vorsteuer nach § 13b UStG 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4264, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1408, 1300, 'Abziehbare Vorsteuer nach § 13b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4265, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1409, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4266, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1410, 1300, 'Aufzuteilende Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4267, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1411, 1300, 'Aufzuteilende Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4268, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1412, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4269, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1413, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4270, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1414, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4271, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1415, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4272, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1416, 1300, 'Aufzuteilende Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4273, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1417, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4274, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1418, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4275, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1419, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4276, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1420, 1300, 'Forderungen aus Umsatzsteuer-Vorauszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4277, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1421, 1300, 'Umsatzsteuerforderungen laufendes Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4278, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1422, 1300, 'Umsatzsteuerforderungen Vorjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4279, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1425, 1300, 'Umsatzsteuerforderungen frühere Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4280, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1427, 1300, 'Forderungen aus entrichteten Verbrauchsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4281, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1431, 1300, 'Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4282, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1432, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Ust-Identifikationsnummer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4283, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1433, 1300, 'Entstandene Einfuhrumsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4284, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1434, 1300, 'Vorsteuer in Folgeperiode/im Folgejahr abziehbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4285, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1435, 1300, 'Forderungen aus Gewerbesteuerüberzahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4286, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1436, 1300, 'Vorsteuer aus Erwerb als letzter Abnehmer innerhalb eine Dreiecksgeschäfts'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4287, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1440, 1300, 'Steuererstattungsansprüche gegenüber Ländern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4288, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1450, 1300, 'Körperschaftsteuerrückforderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4289, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1452, 1300, 'Körperschaftsteuerrückforderungen nach § 37 KStG – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4290, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1453, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4291, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1456, 1300, 'Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4292, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1457, 1300, 'Forderung gegenüber Bundesagentur für Arbeit'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4293, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1460, 1300, 'Geldtransit'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4294, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1480, 1300, 'Gegenkonto Vorsteuer § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4295, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1481, 1300, 'Auflösung Vorsteuer aus Vorjahr § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4296, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1482, 1300, 'Vorsteuer aus Investitionen § 4/3 EstG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4297, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1483, 1300, 'Gegenkonto für Vorsteuer nach Durchschnittsätzen für § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4298, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1484, 1300, 'Vorsteuer nach allgemeinen Durchschittssätzen UstVA Kz. 63'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4299, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1485, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, ergebniswirksam'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4300, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1486, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, nicht ergebniswirksam'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4301, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1487, 1300, 'Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4302, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1490, 1300, 'Verrechnungskonto Ist-Versteuerung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4303, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1495, 1300, 'Verrechnungskonto erhaltene Anzahlungen bei Buchungen über Debitorenkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4304, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1496, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4305, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1497, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4306, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1498, 1300, 'Überleitungskonto Kostenstellen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4307, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1500, 1, 'Anteile an verbundenen Unternehmen (Umlaufvermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4308, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1504, 1, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4309, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1510, 1, 'Sonstige Wertpapiere'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4310, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1520, 1510, 'Finanzwechsel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4311, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1525, 1510, 'Andere Wertpapiere mit unwesentlichen Wertschwankungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4312, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1530, 1510, 'Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4313, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1550, 1, 'Schecks'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4314, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1600, 1, 'Kasse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4315, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1610, 1600, 'Nebenkasse 1'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4316, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1620, 1600, 'Nebenkasse 2'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4317, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1700, 1, 'Bank (Postbank)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4318, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1720, 1700, 'Bank (Postbank2)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4319, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1730, 1700, 'Bank (Postbank 3)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4320, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1780, 1700, 'LZB-Guthaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4321, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1790, 1700, 'Bundesbankguthaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4322, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1800, 1, 'Bank'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4323, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1810, 1800, 'Bank 1'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4324, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1820, 1800, 'Bank 2'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4325, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1830, 1800, 'Bank 3'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4326, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1840, 1800, 'Bank 4'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4327, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1850, 1800, 'Bank 5'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4328, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1889, 1800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4329, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1890, 1800, 'Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition (nicht im Finanzmittelfonds enthalten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4330, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1895, 1800, 'Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4331, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1900, 1, 'Aktive Rechnungsabgrenzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4332, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1920, 1900, 'Als Aufwand berücksichtigte Zölle und Verbrauchsteuer auf Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4333, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1930, 1900, 'Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4334, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1940, 1900, 'Damnum/Disagio'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4335, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1950, 1, 'Aktive latente Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4336, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapitalkonten/Fremdkapitalkonten', 2, 2, 'Eigenkapitalkonten/Fremdkapitalkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4337, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2000, 2, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4338, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2001, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4339, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2002, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4340, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2003, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4341, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2004, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4342, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2005, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4343, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2006, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4344, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2007, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4345, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2008, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4346, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2009, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4347, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2010, 2, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4348, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2011, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4349, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2012, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4350, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2013, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4351, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2014, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4352, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2015, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4353, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2016, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4354, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2017, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4355, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2018, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4356, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2019, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4357, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2020, 2, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4358, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2021, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4359, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2022, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4360, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2023, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4361, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2024, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4362, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2025, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4363, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2026, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4364, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2027, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4365, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2028, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4366, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2029, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4367, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2030, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4368, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2031, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4369, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2032, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4370, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2033, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4371, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2034, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4372, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2035, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4373, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2036, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4374, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2037, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4375, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2038, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4376, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2039, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4377, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2040, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4378, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2041, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4379, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2042, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4380, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2043, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4381, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2044, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4382, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2045, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4383, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2046, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4384, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2047, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4385, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2048, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4386, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2049, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4387, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2050, 2, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4388, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2051, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4389, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2052, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4390, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2053, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4391, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2054, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4392, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2055, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4393, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2056, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4394, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2057, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4395, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2058, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4396, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2059, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4397, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2060, 2, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4398, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2061, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4399, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2062, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4400, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2063, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4401, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2064, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4402, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2065, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4403, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2066, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4404, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2067, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4405, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2068, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4406, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2069, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4407, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2070, 2, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4408, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2071, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4409, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2072, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4410, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2073, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4411, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2074, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4412, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2075, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4413, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2076, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4414, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2077, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4415, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2078, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4416, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2079, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4417, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2080, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4418, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2081, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4419, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2082, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4420, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2083, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4421, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2084, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4422, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2085, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4423, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2086, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4424, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2087, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4425, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2088, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4426, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2089, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4427, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2090, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4428, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2091, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4429, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2092, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4430, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2093, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4431, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2094, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4432, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2095, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4433, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2096, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4434, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2097, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4435, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2098, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4436, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2099, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4437, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2100, 2, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4438, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2101, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4439, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2102, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4440, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2103, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4441, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'prp', 2104, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4442, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2105, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4443, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2106, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4444, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2107, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4445, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2108, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4446, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2109, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4447, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2110, 2, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4448, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2111, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4449, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2112, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4450, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2113, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4451, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2114, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4452, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2115, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4453, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2116, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4454, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2117, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4455, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2118, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4456, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2119, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4457, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2120, 2, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4458, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2121, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4459, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2122, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4460, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2123, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4461, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2124, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4462, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2125, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4463, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2126, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4464, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2127, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4465, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2128, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4466, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2129, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4467, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2130, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4468, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2131, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4469, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2132, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4470, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2133, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4471, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2134, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4472, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2135, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4473, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2136, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4474, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2137, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4475, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2138, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4476, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2139, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4477, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2140, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4478, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2141, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4479, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2142, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4480, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2143, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4481, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2144, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4482, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2145, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4483, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2146, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4484, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2147, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4485, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2148, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4486, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2149, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4487, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2150, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4488, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2151, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4489, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2152, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4490, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2153, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4491, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2154, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4492, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2155, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4493, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2156, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4494, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2157, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4495, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2158, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4496, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2159, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4497, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2160, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4498, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2161, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4499, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2162, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4500, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2163, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4501, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2164, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4502, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2165, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4503, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2166, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4504, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2167, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4505, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2168, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4506, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2169, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4507, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2170, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4508, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2171, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4509, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2172, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4510, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2173, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4511, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2174, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4512, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2175, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4513, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2176, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4514, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2177, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4515, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2178, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4516, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2179, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4517, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2180, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4518, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2181, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4519, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2182, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4520, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2183, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4521, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2184, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4522, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2185, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4523, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2186, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4524, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2187, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4525, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2188, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4526, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2189, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4527, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2190, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4528, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2191, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4529, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2192, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4530, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2193, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4531, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2194, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4532, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2195, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4533, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2196, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4534, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2197, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4535, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2198, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4536, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2199, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4537, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2200, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4538, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2201, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4539, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2202, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4540, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2203, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4541, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2204, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4542, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2205, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4543, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2206, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4544, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2207, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4545, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2208, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4546, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2209, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4547, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2210, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4548, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2211, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4549, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2212, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4550, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2213, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4551, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2214, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4552, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2215, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4553, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2216, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4554, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2217, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4555, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2218, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4556, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2219, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4557, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2220, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4558, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2221, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4559, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2222, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4560, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2223, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4561, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2224, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4562, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2225, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4563, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2226, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4564, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2227, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4565, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2228, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4566, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2229, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4567, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2230, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4568, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2231, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4569, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2232, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4570, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2233, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4571, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2234, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4572, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2235, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4573, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2236, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4574, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2237, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4575, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2238, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4576, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2239, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4577, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2240, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4578, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2241, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4579, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2242, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4580, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2243, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4581, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2244, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4582, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2245, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4583, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2246, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4584, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2247, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4585, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2248, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4586, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2249, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4587, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2250, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4588, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2251, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4589, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2252, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4590, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2253, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4591, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2254, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4592, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2255, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4593, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2256, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4594, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2257, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4595, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2258, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4596, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2259, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4597, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2260, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4598, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2261, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4599, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2262, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4600, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2263, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4601, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2264, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4602, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2265, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4603, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2266, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4604, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2267, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4605, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2268, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4606, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2269, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4607, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2270, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4608, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2271, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4609, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2272, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4610, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2273, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4611, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2274, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4612, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2275, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4613, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2276, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4614, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2277, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4615, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2278, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4616, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2279, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4617, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2280, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4618, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2281, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4619, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2282, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4620, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2283, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4621, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2284, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4622, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2285, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4623, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2286, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4624, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2287, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4625, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2288, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4626, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2289, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4627, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2290, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4628, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2291, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4629, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2292, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4630, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2293, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4631, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2294, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4632, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2295, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4633, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2296, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4634, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2297, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4635, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2298, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4636, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2299, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4637, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2300, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4638, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2301, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4639, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2302, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4640, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2303, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4641, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2304, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4642, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2305, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4643, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2306, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4644, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2307, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4645, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2308, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4646, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2309, 2300, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4647, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2310, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4648, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2311, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4649, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2312, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4650, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2313, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4651, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2314, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4652, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2315, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4653, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2316, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4654, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2317, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4655, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2318, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4656, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2319, 2310, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4657, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2320, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4658, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2321, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4659, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2322, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4660, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2323, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4661, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2324, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4662, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2325, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4663, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2326, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4664, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2327, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4665, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2328, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4666, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2329, 2320, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4667, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2330, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4668, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2331, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4669, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2332, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4670, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2333, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4671, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2334, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4672, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2335, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4673, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2336, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4674, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2337, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4675, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2338, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4676, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2339, 2330, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4677, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2340, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4678, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2341, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4679, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2342, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4680, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2343, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4681, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2344, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4682, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2345, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4683, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2346, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4684, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2347, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4685, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2348, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4686, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2349, 2340, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4687, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2350, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4688, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2351, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4689, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2352, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4690, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2353, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4691, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2354, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4692, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2355, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4693, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2356, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4694, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2357, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4695, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2358, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4696, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2359, 2350, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4697, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2360, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4698, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2361, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4699, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2362, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4700, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2363, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4701, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2364, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4702, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2365, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4703, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2366, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4704, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2367, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4705, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2368, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4706, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2369, 2360, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4707, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2370, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4708, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2371, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4709, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2372, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4710, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2373, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4711, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2374, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4712, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2375, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4713, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2376, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4714, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2377, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4715, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2378, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4716, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2379, 2370, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4717, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2380, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4718, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2381, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4719, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2382, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4720, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2383, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4721, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2384, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4722, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2385, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4723, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2386, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4724, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2387, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4725, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2388, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4726, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2389, 2380, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4727, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2390, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4728, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2391, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4729, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2392, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4730, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2393, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4731, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2394, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4732, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2395, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4733, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2396, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4734, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2397, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4735, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2398, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4736, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2399, 2390, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4737, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2500, 2, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4738, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2501, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4739, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2502, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4740, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2503, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4741, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2504, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4742, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2505, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4743, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2506, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4744, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2507, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4745, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2508, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4746, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2509, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4747, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2510, 2, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4748, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2511, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4749, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2512, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4750, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2513, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4751, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2514, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4752, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2515, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4753, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2516, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4754, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2517, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4755, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2518, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4756, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2519, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4757, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2520, 2, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4758, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2521, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4759, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2522, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4760, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2523, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4761, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2524, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4762, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2525, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4763, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2526, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4764, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2527, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4765, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2528, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4766, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2529, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4767, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2530, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4768, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2531, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4769, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2532, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4770, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2533, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4771, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2534, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4772, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2535, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4773, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2536, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4774, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2537, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4775, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2538, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4776, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2539, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4777, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2540, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4778, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2541, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4779, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2542, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4780, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2543, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4781, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2544, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4782, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2545, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4783, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2546, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4784, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2547, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4785, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2548, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4786, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2549, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4787, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2550, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4788, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2551, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4789, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2552, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4790, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2553, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4791, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2554, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4792, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2555, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4793, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2556, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4794, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2557, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4795, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2558, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4796, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2559, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4797, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2560, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4798, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2561, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4799, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2562, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4800, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2563, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4801, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2564, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4802, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2565, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4803, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2566, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4804, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2567, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4805, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2568, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4806, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2569, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4807, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2570, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4808, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2571, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4809, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2572, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4810, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2573, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4811, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2574, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4812, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2575, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4813, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2576, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4814, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2577, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4815, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2578, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4816, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2579, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4817, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2580, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4818, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2581, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4819, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2582, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4820, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2583, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4821, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2584, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4822, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2585, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4823, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2586, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4824, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2587, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4825, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2588, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4826, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2589, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4827, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2590, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4828, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2591, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4829, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2592, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4830, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2593, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4831, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2594, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4832, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2595, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4833, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2596, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4834, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2597, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4835, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2598, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4836, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2599, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4837, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2600, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4838, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2601, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4839, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2602, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4840, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2603, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4841, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2604, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4842, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2605, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4843, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2606, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4844, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2607, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4845, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2608, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4846, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2609, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4847, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2610, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4848, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2611, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4849, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2612, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4850, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2613, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4851, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2614, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4852, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2615, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4853, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2616, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4854, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2617, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4855, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2618, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4856, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2619, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4857, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2620, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4858, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2621, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4859, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2622, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4860, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2623, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4861, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2624, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4862, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2625, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4863, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2626, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4864, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2627, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4865, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2628, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4866, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2629, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4867, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2630, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4868, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2631, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4869, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2632, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4870, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2633, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4871, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2634, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4872, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2635, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4873, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2636, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4874, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2637, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4875, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2638, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4876, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2639, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4877, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2640, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4878, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2641, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4879, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2642, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4880, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2643, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4881, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2644, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4882, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2645, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4883, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2646, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4884, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2647, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4885, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2648, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4886, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2649, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4887, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2650, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4888, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2651, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4889, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2652, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4890, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2653, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4891, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2654, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4892, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2655, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4893, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2656, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4894, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2657, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4895, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2658, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4896, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2659, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4897, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2660, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4898, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2661, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4899, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2662, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4900, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2663, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4901, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2664, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4902, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2665, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4903, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2666, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4904, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2667, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4905, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2668, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4906, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2669, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4907, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2670, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4908, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2671, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4909, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2672, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4910, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2673, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4911, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2674, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4912, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2675, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4913, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2676, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4914, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2677, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4915, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2678, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4916, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2679, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4917, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2680, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4918, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2681, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4919, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2682, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4920, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2683, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4921, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2684, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4922, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2685, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4923, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2686, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4924, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2687, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4925, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2688, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4926, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2689, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4927, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2690, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4928, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2691, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4929, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2692, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4930, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2693, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4931, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2694, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4932, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2695, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4933, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2696, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4934, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2697, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4935, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2698, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4936, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2699, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4937, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2700, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4938, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2701, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4939, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2702, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4940, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2703, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4941, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2704, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4942, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2705, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4943, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2706, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4944, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2707, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4945, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2708, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4946, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2709, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4947, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2710, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4948, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2711, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4949, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2712, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4950, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2713, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4951, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2714, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4952, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2715, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4953, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2716, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4954, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2717, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4955, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2718, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4956, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2719, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4957, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2720, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4958, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2721, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4959, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2722, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4960, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2723, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4961, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2724, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4962, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2725, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4963, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2726, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4964, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2727, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4965, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2728, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4966, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2729, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4967, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2730, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4968, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2731, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4969, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2732, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4970, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2733, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4971, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2734, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4972, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2735, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4973, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2736, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4974, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2737, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4975, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2738, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4976, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2739, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4977, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2740, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4978, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2741, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4979, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2742, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4980, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2743, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4981, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2744, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4982, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2745, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4983, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2746, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4984, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2747, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4985, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2748, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4986, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2749, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4987, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2750, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4988, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2751, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4989, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2752, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4990, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2753, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4991, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2754, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4992, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2755, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4993, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2756, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4994, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2757, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4995, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2758, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4996, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2759, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4997, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2760, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4998, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2761, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4999, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2762, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5000, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2763, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5001, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2764, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5002, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2765, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5003, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2766, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5004, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2767, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5005, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2768, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5006, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2769, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5007, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2770, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5008, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2771, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5009, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2772, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5010, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2773, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5011, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2774, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5012, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2775, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5013, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2776, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5014, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2777, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5015, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2778, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5016, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2779, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5017, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2780, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5018, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2781, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5019, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2782, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5020, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2783, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5021, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2784, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5022, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2785, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5023, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2786, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5024, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2787, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5025, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2788, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5026, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2789, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5027, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2790, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5028, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2791, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5029, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2792, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5030, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2793, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5031, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2794, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5032, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2795, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5033, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2796, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5034, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2797, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5035, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2798, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5036, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2799, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5037, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2900, 2, 'Gezeichnetes Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5038, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2901, 2900, 'Geschäftsguthaben der verbleibenden Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5039, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2902, 2900, 'Geschäftsguthaben der ausscheidenden Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5040, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2903, 2900, 'Geschäftsguthaben aus gekündigten Geschäftsanteilen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5041, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2906, 2900, 'Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5042, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2907, 2900, 'Gegenkonto Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5043, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2908, 2900, 'Kapitalerhöhung aus Gesellschaftsmitteln'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5044, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2909, 2900, 'Erworbene eigene Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5045, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2910, 2900, 'Ausstehende Einlagen auf das gezeichnete Kapital, nicht eingefordert (Passivausweis, vom gezeichneten Kapital offen abgesetzt; eingeforderte ausstehende Einlagen s. Konto 1289)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5046, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2920, 2, 'Kapitalrücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5047, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2925, 2920, 'Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5048, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2926, 2920, 'Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5049, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2927, 2920, 'Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5050, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2928, 2920, 'Kapitalrücklage durch Zuzahlungen in das Eigenkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5051, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2929, 2920, 'Nachschusskonto (Gegenkonto 1299)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5052, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2930, 2, 'Gesetzliche Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5053, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2935, 2930, 'Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5054, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2937, 3930, 'Andere Ergebnisrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5055, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2950, 2, 'Satzungsmäßige Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5056, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2959, 2950, 'Gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5057, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2960, 2, 'Andere Gewinnrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5058, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2961, 2960, 'Andere Gewinnrücklagen aus dem Erwerb eigener Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5059, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2962, 2960, 'Eigenkapitalanteil von Wertaufholungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5060, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2963, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5061, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2964, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Sachanlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5062, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2965, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Finanzanlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5063, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2966, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Auflösung der Sonderposten mit Rücklageanteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5064, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2967, 2960, 'Latente Steuern (Gewinnrücklage Haben) aus erfolgsneutralen Verrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5065, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2968, 2960, 'Latente Steuern (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5066, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2969, 2960, 'Rechnungsabgenzungsposten (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5067, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2970, 2, 'Gewinnvortrag vor Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5068, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2975, 2970, 'Gewinnvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5069, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2977, 2978, 'Verlustvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5070, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2978, 2, 'Verlustvortrag vor Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5071, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2979, 2, 'Vortrag auf neue Rechnung (Bilanz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5072, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2980, 2, 'Sonderposten mit Rücklageanteil, steuerfreie Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5073, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2981, 2, 'Sonderposten mit Rücklageanteil nach § 6b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5074, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2982, 2, 'Sonderposten mit Rücklageanteil nach EstR R 6.6'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5075, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2988, 2, 'Rücklage für Zuschüsse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5076, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2989, 2, 'Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5077, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2990, 2, 'Sonderposten mit Rücklageanteil, Sonderabschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5078, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2993, 2, 'Sonderposten mit Rücklageanteil nach § 7g Abs. 2 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5079, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2995, 2, 'Ausgleichsposten bei Entnahmen § 4g EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5080, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2997, 2, 'Sonderposten bei Rücklageanteil § 7g Abs. 5 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5081, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2999, 2, 'Sonderposten für Zuschüsse und Zulagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5082, 'SKR04', 'Fremdkapitalkonten', 'Fremdkapitalkonten', 3, 3, 'Fremdkapitalkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5083, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3000, 3, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5084, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3005, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen gegenüber Gesellschaftern oder nahestehenden Personen (10 % Beteiligung am Kapital)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5085, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3009, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5086, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3010, 3000, 'Rückstellungen für Direktzusagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5087, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3011, 3000, 'Rückstellungen für Zuschussverpflichtungen für Pensionskassen und Lebensversicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5088, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3015, 3000, 'Rückstellungen für pensionähnliche Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5089, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3020, 3, 'Steuerrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5090, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3030, 3020, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5091, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3035, 3020, 'Gewerbesteuerrückstellungen § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5092, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3040, 3020, 'Körperschaftsteuerrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5093, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3050, 3020, 'Steuerrückstellung aus Steuerstundung (BstBK)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5094, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3060, 3020, 'Rückstellungen für latente Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5095, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3065, 3020, 'Passive latente Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5096, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3070, 3, 'Sonstige Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5097, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3074, 3070, 'Rückstellungen für Personalkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5098, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3075, 3070, 'Rückstellungen für unterlassene Aufwendungen für Instandhaltung, Nachholung in den ersten drei Monaten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5099, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3076, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5100, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3077, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5101, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3079, 3070, 'Urlaubsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5102, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3085, 3070, 'Rückstellungen für Abraum- und Abfallbeseitigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5103, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3090, 3070, 'Rückstellungen für Gewährleistungen (Gegenkonto 6790)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5104, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3092, 3070, 'Rückstellungen für drohende Verluste aus schwebenden Geschäften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5105, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3095, 3070, 'Rückstellungen für Abschluss- und Prüfungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5106, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3096, 3070, 'Rückstellungen zur Erfüllung der Aufbewahrungspflichten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5107, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3098, 3070, 'Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB a. F.'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5108, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3099, 3070, 'Rückstellungen für Umweltschutz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5109, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3100, 3, 'Anleihen, nicht konvertibel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5110, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3101, 3100, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5111, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3105, 3100, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5112, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3110, 3100, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5113, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3120, 3100, 'Anleihen, konvertibel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5114, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3121, 3120, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5115, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3125, 3120, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5116, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3130, 3120, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5117, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3150, 3, 'Verbindlichkeiten gegenüber Kreditinstituten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5118, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3151, 3150, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5119, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3160, 3150, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5120, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3170, 3150, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5121, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3180, 3150, 'Verbindlichkeiten gegenüber Kreditinstituten aus Teilzahlungsverträgen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5122, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3181, 3180, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5123, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3190, 3180, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5124, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3200, 3180, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5125, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3210, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5126, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3211, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5127, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3212, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5128, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3213, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5129, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3214, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5130, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3215, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5131, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3216, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5132, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3217, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5133, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3218, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5134, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3219, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5135, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3220, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5136, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3221, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5137, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3222, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5138, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3223, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5139, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3224, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5140, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3225, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5141, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3226, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5142, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3227, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5143, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3228, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5144, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3229, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5145, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3230, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5146, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3231, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5147, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3232, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5148, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3233, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5149, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3234, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5150, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3235, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5151, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3236, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5152, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3237, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5153, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3238, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5154, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3239, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5155, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3240, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5156, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3241, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5157, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3242, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5158, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3243, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5159, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3244, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5160, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3245, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5161, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3246, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5162, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3247, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5163, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3248, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5164, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3249, 3150, 'Gegenkonto 3150-3109 bei Aufteilung der Konten 3210-3248'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5165, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3250, 3, 'Erhaltene Anzahlungen auf Bestellungen (Verbindlichkeiten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5166, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3260, 3250, 'Erhaltene, versteuerte Anzahlungen 7 % USt (Verbindlichkeiten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5167, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3261, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5168, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3262, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5169, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3263, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5170, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3264, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5171, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3270, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5172, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3271, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5173, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3272, 3250, 'Erhaltene, versteuerte Anzahlungen 19 % USt (Verbindlichkeiten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5174, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3273, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5175, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3274, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5176, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3280, 3250, 'Erhaltene Anzahlungen – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5177, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3284, 3280, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5178, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3285, 3280, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5179, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3300, 3, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5180, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3301, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5181, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3302, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5182, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3303, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5183, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3305, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5184, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3306, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5185, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3307, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5186, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3309, 3300, 'Gegenkonto 3305-3307 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5187, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3310, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5188, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3311, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5189, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3312, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5190, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3313, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5191, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3334, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5192, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3335, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5193, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3337, 3335, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5194, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3338, 3335, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5195, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3340, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5196, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3341, 3340, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5197, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3345, 3340, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5198, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3348, 3340, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5199, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3349, 3300, 'Gegenkonto 3335-3348, 3420-3449, 3470-3499 bei Aufteilung Kreditorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5200, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3350, 3, 'Wechselverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5201, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3351, 3350, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5202, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3380, 3350, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5203, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3390, 3350, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5204, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3400, 3, 'Verbindlichkeiten gegenüber verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5205, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3401, 3400, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5206, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3405, 3400, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5207, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3410, 3400, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5208, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3420, 3400, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5209, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3421, 3420, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5210, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3425, 3420, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5211, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3430, 3420, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5212, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3450, 3, 'Verbindlichkeiten gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5213, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3451, 3450, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5214, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3455, 3450, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5215, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3460, 3450, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5216, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3470, 3450, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5217, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3471, 3470, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5218, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3475, 3470, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5219, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3480, 3470, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5220, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3500, 3, 'Sonstige Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5221, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3501, 3500, '- Restlaufzeit bis 1Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5222, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3504, 3500, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5223, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3507, 3500, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5224, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3509, 3500, 'Sonstige Verbindlichkeiten nach § 11 Abs. 2 Satz 2 EStG für § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5225, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3510, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5226, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3511, 3510, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5227, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3514, 3510, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5228, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3517, 3510, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5229, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3519, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern für offene Ausschüttungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5230, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3520, 3500, 'Darlehen typisch stiller Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5231, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3521, 3520, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5232, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3524, 3520, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5233, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3527, 3520, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5234, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3530, 3500, 'Darlehen atypisch stiller Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5235, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3531, 3530, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5236, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3534, 3530, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5237, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3537, 3530, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5238, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3540, 3500, 'Partiarische Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5239, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3541, 3540, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5240, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3544, 3540, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5241, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3547, 3540, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5242, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3550, 3500, 'Erhaltene Kautionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5243, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3551, 3550, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5244, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3554, 3550, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5245, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3557, 3550, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5246, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3560, 3500, 'Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5247, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3561, 3560, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5248, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3564, 3560, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5249, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3567, 3560, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5250, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3570, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5251, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3571, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5252, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3572, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5253, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3573, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5254, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3574, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5255, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3575, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5256, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3576, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5257, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3577, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5258, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3578, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5259, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3579, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5260, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3580, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5261, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3581, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5262, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3582, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5263, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3583, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5264, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3584, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5265, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3585, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5266, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3586, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5267, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3587, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5268, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3588, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5269, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3589, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5270, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3590, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5271, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3591, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5272, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3592, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5273, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3593, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5274, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3594, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5275, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3595, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5276, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3596, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5277, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3597, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5278, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3598, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5279, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3599, 3500, 'Gegenkonto 3500-3569 und 3640-3658 bei Aufteilung der Konten 3570-3598'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5280, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3600, 3500, 'Agenturwarenabrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5281, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3610, 3500, 'Kreditkartenabrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5282, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3611, 3500, 'Verbindlichkeiten gegenüber Arbeitsgemeinschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5283, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3620, 3500, 'Gewinnverfügungskonto stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5284, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3630, 3500, 'Sonstige Verrechnungskosten (Interimskonto)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5285, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3635, 3500, 'Sonstige Verbindlichkeiten aus genossenschaftlicher Rückvergütung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5286, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3640, 3500, 'Verbindlichkeiten gegenüber GmbH-Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5287, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3641, 3640, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5288, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3642, 3640, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5289, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3643, 3640, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5290, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3645, 3500, 'Verbindlichkeiten gegenüber persönlich haftenden Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5291, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3646, 3645, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5292, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3647, 3645, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5293, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3648, 3645, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5294, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3650, 3500, 'Verbindlichkeiten gegenüber Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5295, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3651, 3650, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5296, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3652, 3650, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5297, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3653, 3650, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5298, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3655, 3500, 'Verbindlichkeiten gegenüber stillen Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5299, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3656, 3655, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5300, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3657, 3655, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5301, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3658, 3655, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5302, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3695, 3500, 'Verrechnungskonto geleistete Anzahlungen bei Buchungen über Kreditorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5303, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3700, 3500, 'Verbindlichkeiten aus Steuern und Abgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5304, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3701, 3700, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5305, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3710, 3700, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5306, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3715, 3700, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5307, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3720, 3500, 'Verbindlichkeiten aus Lohn und Gehalt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5308, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3725, 3500, 'Verbindlichkeiten für Einbehaltungen von Arbeitnehmern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5309, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3726, 3500, 'Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5310, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3730, 3500, 'Verbindlichkeiten aus Lohn- und Kirchensteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5311, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3740, 3500, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5312, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3741, 3740, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5313, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3750, 3740, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5314, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3755, 3740, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5315, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3759, 3500, 'Voraussichtliche Beitragsschuld gegenüber den Sozialversicherungsträgern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5316, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3760, 3500, 'Verbindlichkeiten aus Einbehaltungen (KapESt und SolZ, KiSt auf KapESt) für offene Ausschüttungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5317, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3761, 3500, 'Verbindlichkeiten für Verbrauchsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5318, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3770, 3500, 'Verbindlichkeiten aus Vermögensbildung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5319, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3771, 3770, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5320, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3780, 3770, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5321, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3785, 3770, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5322, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3786, 3500, 'Ausgegebene Geschenkgutscheine'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5323, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3790, 3, 'Lohn- und Gehaltsverrechnungskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5324, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3791, 3790, 'Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5325, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3796, 3790, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5326, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3798, 3790, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5327, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3799, 3790, 'Steuerzahlungen aus im anderen EU-Land steuerpflichtigen elektronische Dienstleistungen an kleine einzige Anlaufstelle (KEA/MOSS)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5328, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3800, 3, 'Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5329, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3801, 3800, 'Umsatzsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5330, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3802, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5331, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3803, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5332, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3804, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5333, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3805, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5334, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3806, 3800, 'Umsatzsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5335, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3807, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5336, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3808, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5337, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3809, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb ohne Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5338, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3810, 3800, 'Umsatzsteuer nicht fällig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5339, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3811, 3800, 'Umsatzsteuer nicht fällig 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5340, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3812, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5341, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3813, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5342, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3814, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5343, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3815, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5344, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3816, 3800, 'Umsatzsteuer nicht fällig 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5345, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3817, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5346, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3818, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen/Werklieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5347, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3819, 3800, 'Umsatzsteuer aus Erwerb als letzter Abnehmer innerhalb eines Dreiecksgeschäfts'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5348, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3820, 3800, 'Umsatzsteuer-Vorauszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5349, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3830, 3800, 'Umsatzsteuer-Vorauszahlungen 1/11'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5350, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3831, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5351, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3832, 3800, 'Nachsteuer, UstVA Kz. 65'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5352, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3833, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5353, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3834, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5354, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3835, 3800, 'Umsatzsteuer nach § 13b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5355, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3836, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5356, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3837, 3800, 'Umsatzsteuer nach § 13b UStG 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5357, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3838, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5358, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3839, 3800, 'Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5359, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3840, 3800, 'Umsatzsteuer laufendes Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5360, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3841, 3800, 'Umsatzsteuer Vorjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5361, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3845, 3800, 'Umsatzsteuer frühere Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5362, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3850, 3800, 'Einfuhrumsatzsteuer aufgeschoben bis ...'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5363, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3851, 3800, 'In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerbeträge, UstVA Kz. 69'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5364, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3854, 3800, 'Steuerzahlungen an andere Länder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5365, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3860, 3, 'Verbindlichkeiten aus Umsatzsteuer-Vorauszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5366, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3865, 3800, 'Umsatzsteuer in Folgeperiode fällig (§§ 13 Abs. 1 Nr. 6, 13b Abs. 2 UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5367, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3900, 3, 'Passive Rechnungsabgrenzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5368, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3950, 3900, 'Abgrenzung unterjährig pauschal gebuchter Abschreibungen für BWA'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5369, 'SKR04', 'Betriebliche Erträge', 'Betriebliche Erträge', 4, 4, 'Betriebliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5370, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4000, 4, 'Umsatzerlöse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5371, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4001, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5372, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4002, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5373, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4003, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5374, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4004, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5375, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4005, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5376, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4006, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5377, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4007, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5378, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4008, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5379, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4009, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5380, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4010, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5381, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4011, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5382, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4012, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5383, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4013, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5384, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4014, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5385, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4015, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5386, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4016, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5387, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4017, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5388, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4018, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5389, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4019, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5390, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4020, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5391, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4021, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5392, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4022, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5393, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4023, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5394, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4024, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5395, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4025, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5396, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4026, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5397, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4027, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5398, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4028, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5399, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4029, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5400, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4030, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5401, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4031, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5402, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4032, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5403, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4033, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5404, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4034, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5405, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4035, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5406, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4036, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5407, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4037, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5408, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4038, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5409, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4039, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5410, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4040, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5411, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4041, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5412, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4042, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5413, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4043, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5414, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4044, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5415, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4045, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5416, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4046, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5417, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4047, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5418, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4048, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5419, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4049, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5420, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4050, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5421, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4051, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5422, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4052, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5423, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4053, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5424, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4054, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5425, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4055, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5426, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4056, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5427, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4057, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5428, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4058, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5429, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4059, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5430, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4060, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5431, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4061, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5432, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4062, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5433, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4063, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5434, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4064, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5435, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4065, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5436, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4066, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5437, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4067, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5438, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4068, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5439, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4069, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5440, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4070, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5441, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4071, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5442, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4072, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5443, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4073, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5444, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4074, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5445, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4075, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5446, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4076, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5447, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4077, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5448, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4078, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5449, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4079, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5450, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4080, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5451, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4081, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5452, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4082, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5453, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4083, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5454, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4084, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5455, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4085, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5456, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4086, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5457, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4087, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5458, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4088, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5459, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4089, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5460, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4090, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5461, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4091, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5462, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4092, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5463, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4093, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5464, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4094, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5465, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4095, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5466, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4096, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5467, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4097, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5468, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4098, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5469, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4099, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5470, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4100, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5471, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4101, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5472, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4102, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5473, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4103, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5474, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4104, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5475, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4105, 4000, 'Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpachtung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5476, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4110, 4000, 'Sonstige steuerfreie Umsätze Inland'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5477, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4120, 4000, 'Steuerfreie Umsätze § 4 Nr. 1a UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5478, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4125, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen § 4 Nr. 1b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5479, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4130, 4000, 'Lieferungen des ersten Abnehmers bei innergemeinschaftlichen Dreiecksgeschäften § 25b Abs. 2 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5480, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4135, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer-Identifikationsnummer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5481, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4136, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5482, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4137, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5483, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4138, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5484, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4139, 4000, 'Umsatzerlöse aus Reiseleistungen § 25 Abs. 2 UStG, steuerfrei'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5485, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4140, 4000, 'Steuerfreie Umsätze Offshore etc.'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5486, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4150, 4000, 'Sonstige steuerfreie Umsätze (z. B. § 4 Nr. 2-7 UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5487, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4160, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend, § 4 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5488, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4165, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5489, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4180, 4000, 'Erlöse, die mit den Durchschnittssätzen des § 24 UStG verteuert werden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5490, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4182, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5491, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4183, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5492, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4185, 4000, 'Erlöse als Kleinunternehmer i. S. d. $ 19 Abs. 1 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5493, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4186, 4000, 'Erlöse aus Geldspielautomaten 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5494, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4187, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5495, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4188, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5496, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4200, 4000, 'Erlöse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5497, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4300, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5498, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4301, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5499, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4302, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5500, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4303, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5501, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4304, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5502, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4305, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5503, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4306, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5504, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4307, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5505, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4308, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5506, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4309, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5507, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4310, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5508, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4311, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5509, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4312, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5510, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4313, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5511, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4314, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5512, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4315, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5513, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4316, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5514, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4317, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5515, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4318, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5516, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4319, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5517, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4320, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5518, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4321, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5519, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4322, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5520, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4323, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5521, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4324, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5522, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4325, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5523, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4326, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5524, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4327, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5525, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4328, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5526, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4329, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5527, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4330, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5528, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4331, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5529, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4332, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5530, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4333, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5531, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4334, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5532, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4335, 4000, 'Erlöse aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5533, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4336, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5534, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4337, 4000, 'Erlöse aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5535, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4338, 4000, 'Erlöse aus im Drittland steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5536, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4339, 4000, 'Erlöse aus im anderen EU-Land steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5537, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4340, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5538, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4341, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5539, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4342, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5540, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4343, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5541, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4344, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5542, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4345, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5543, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4346, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5544, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4347, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5545, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4348, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5546, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4349, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5547, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4400, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5548, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4401, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5549, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4402, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5550, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4403, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5551, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4404, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5552, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4405, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5553, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4406, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5554, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4407, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5555, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4408, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5556, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4409, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5557, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4410, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5558, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4411, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5559, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4412, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5560, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4413, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5561, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4414, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5562, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4415, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5563, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4416, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5564, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4417, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5565, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4418, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5566, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4419, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5567, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4420, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5568, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4421, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5569, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4422, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5570, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4423, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5571, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4424, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5572, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4425, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5573, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4426, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5574, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4427, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5575, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4428, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5576, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4429, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5577, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4430, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5578, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4431, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5579, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4432, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5580, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4433, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5581, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4434, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5582, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4435, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5583, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4436, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5584, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4437, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5585, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4438, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5586, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4439, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5587, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4440, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5588, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4441, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5589, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4442, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5590, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4443, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5591, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4444, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5592, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4445, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5593, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4446, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5594, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4447, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5595, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4448, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5596, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4449, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5597, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4499, 4000, 'Nebenerlöse (Bezug zu Materialaufwand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5598, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4500, 4, 'Sonderbetriebseinnahmen, Tätigkeitsvergütung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5599, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4501, 4, 'Sonderbetriebseinnahmen, Miet-/Pachteinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5600, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4502, 4, 'Sonderbetriebseinnahmen, Zinseinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5601, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4503, 4, 'Sonderbetriebseinnahmen, Haftungsvergütung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5602, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4504, 4, 'Sonderbetriebseinnahmen, Pensionszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5603, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4505, 4, 'Sonderbetriebseinnahmen, sonstige Sonderbetriebseinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5604, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4510, 4000, 'Erlöse Abfallverwertung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5605, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4520, 4000, 'Erlöse Leergut'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5606, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4560, 4000, 'Provisionsumsätze'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5607, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4561, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5608, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4562, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5609, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4563, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5610, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4564, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 8 ff. UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5611, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4565, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 5 UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5612, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4566, 4000, 'Provisionsumsätze 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5613, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4567, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5614, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4568, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5615, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4569, 4000, 'Provisionsumsätze 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5616, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4570, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5617, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4571, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5618, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4572, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5619, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4573, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5620, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4574, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5621, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4575, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 5 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5622, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4576, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5623, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4577, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5624, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4578, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5625, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4579, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5626, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4580, 4000, 'Statistisches Konto Erlöse zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5627, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4581, 4000, 'Statistisches Konto Erlöse zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5628, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4582, 4000, 'Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5629, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4589, 4000, 'Gegenkonto 4580-4582 bei Aufteilung der Erlöse nach Steuersätzen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5630, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4600, 4000, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5631, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4605, 4000, 'Entnahme von Gegenständen ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5632, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4608, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5633, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4609, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5634, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4610, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5635, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4611, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5636, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4612, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5637, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4613, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5638, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4614, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5639, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4615, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5640, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4616, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5641, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4617, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5642, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4618, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5643, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4619, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5644, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4620, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5645, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4621, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5646, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4622, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5647, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4623, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5648, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4624, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5649, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4625, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5650, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4626, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5651, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4627, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5652, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4628, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5653, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4629, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5654, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4630, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5655, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4631, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5656, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4632, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5657, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4633, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5658, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4634, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5659, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4635, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5660, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4636, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5661, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4637, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5662, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4638, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5663, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4639, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5664, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4640, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5665, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4641, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5666, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4642, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5667, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4643, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5668, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4644, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5669, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4645, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Kfz-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5670, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4646, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Telefon-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5671, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4647, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5672, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4648, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5673, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4649, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5674, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4650, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5675, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4651, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5676, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4652, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5677, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4653, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5678, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4654, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5679, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4655, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5680, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4656, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5681, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4657, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5682, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4658, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5683, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4659, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5684, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4660, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5685, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4661, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5686, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4662, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5687, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4663, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5688, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4664, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5689, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4665, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5690, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4666, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5691, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4667, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5692, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4668, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5693, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4669, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5694, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4670, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5695, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4671, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5696, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4672, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5697, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4673, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5698, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4674, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5699, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4675, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5700, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4676, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5701, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4677, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5702, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4678, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5703, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4679, 4000, 'Unentgeltliche Zuwendung von Waren ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5704, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4680, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5705, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4681, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5706, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4682, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5707, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4683, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5708, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4684, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5709, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4685, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5710, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4686, 4000, 'Unentgeltliche Zuwendung von Gegenständen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5711, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4688, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5712, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4689, 4000, 'Unentgeltliche Zuwendung von Gegenständen ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5713, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4690, 4000, 'Nicht steuerbare Umsätze (Innenumsätze)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5714, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4695, 4000, 'Umsatzsteuervergütungen, z.B. nach § 24 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5715, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4699, 4000, 'Direkt mit dem Umsatz verbundene Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5716, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4700, 4000, 'Erlösschmälerungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5717, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4701, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5718, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4702, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 2-7 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5719, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4703, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze ohne Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5720, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4704, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze mit Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5721, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4705, 4700, 'Erlösschmälerungen aus steuerfreien Umsätzen § 4 Nr. 1a UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5722, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4706, 4700, 'Erlösschmälerungen für steuerfreie innergemeinschaftliche Dreiecksgeschäfte nach § 25b Abs. 2, 4 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5723, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4710, 4700, 'Erlösschmälerungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5724, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4711, 4700, 'Erlösschmälerungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5725, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4712, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5726, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4713, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5727, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4714, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5728, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4715, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5729, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4716, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5730, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4717, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5731, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4718, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5732, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4719, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5733, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4720, 4700, 'Erlösschmälerungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5734, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4721, 4700, 'Erlösschmälerungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5735, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4722, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5736, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4723, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5737, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4724, 4700, 'Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5738, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4725, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5739, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4726, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5740, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4727, 4700, 'Erlösschmälerungen aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5741, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4728, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5742, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4729, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5743, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4730, 4000, 'Gewährte Skonti'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5744, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4731, 4730, 'Gewährte Skonti 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5745, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4732, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5746, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4733, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5747, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4734, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5748, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4735, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5749, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4736, 4730, 'Gewährte Skonti 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5750, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4737, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5751, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4738, 4730, 'Gewährte Skonti aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5752, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4741, 4730, 'Gewährte Skonti aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5753, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4742, 4730, 'Gewährte Skonti aus Erlösen aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5754, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4743, 4730, 'Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5755, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4744, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5756, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4745, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5757, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4746, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5758, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4747, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5759, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4748, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5760, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4749, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5761, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4750, 4769, 'Gewährte Boni 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5762, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4751, 4769, 'Gewährte Boni 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5763, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4752, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5764, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4753, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5765, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4754, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5766, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4755, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5767, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4756, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5768, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4757, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5769, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4758, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5770, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4759, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5771, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4760, 4769, 'Gewährte Boni 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5772, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4761, 4769, 'Gewährte Boni 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5773, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4762, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5774, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4763, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5775, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4764, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5776, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4765, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5777, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4766, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5778, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4767, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5779, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4768, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5780, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4769, 4000, 'Gewährte Boni'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5781, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4770, 4000, 'Gewährte Rabatte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5782, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4780, 4770, 'Gewährte Rabatte 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5783, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4781, 4770, 'Gewährte Rabatte 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5784, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4782, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5785, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4783, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5786, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4784, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5787, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4785, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5788, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4786, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5789, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4787, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5790, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4788, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5791, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4789, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5792, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4790, 4770, 'Gewährte Rabatte 19 % Ust'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5793, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4791, 4770, 'Gewährte Rabatte 19 % Ust'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5794, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4792, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5795, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4793, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5796, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4794, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5797, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4795, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5798, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4796, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5799, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4797, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5800, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4798, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5801, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4799, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5802, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4800, 4, 'Bestandsveränderungen – fertige Erzeugnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5803, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4810, 4, 'Bestandsveränderungen – unfertige Erzeugnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5804, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4815, 4, 'Bestandsveränderungen – unfertige Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5805, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4816, 4, 'Bestandsveränderungen in Ausführung befindlicher Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5806, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4818, 4, 'Bestandsveränderungen in Arbeit befindlicher Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5807, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4820, 4, 'Andere aktivierte Eigenleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5808, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4824, 4820, 'Aktivierte Eigenleistungen (den Herstellungskosten zurechenbare Fremdkapitalzinsen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5809, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4825, 4820, 'Aktivierte Eigenleistungen zur Erstellung von selbst geschaffenen immateriellen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5810, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4830, 4, 'Sonstige betriebliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5811, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4832, 4830, 'Sonstige betriebliche Erträge von verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5812, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4833, 4830, 'Andere Nebenerlöse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5813, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4834, 4830, 'Sonstige Erträge betrieblich und regelmäßig 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5814, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4835, 4830, 'Sonstige Erträge betrieblich und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5815, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4836, 4830, 'Sonstige Erträge betrieblich und regelmäßig 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5816, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4837, 4830, 'Sonstige Erträge betriebsfremd und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5817, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4838, 4830, 'Erstattete Vorsteuer anderer Länder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5818, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4839, 4830, 'Sonstige Erträge unregelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5819, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4840, 4830, 'Erträge aus der Währungsumrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5820, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4841, 4830, 'Sonstige Erträge betrieblich und regelmäßig, steuerfrei § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5821, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4842, 4830, 'Sonstige betriebliche Erträge steuerfrei z. B. § 4 Nr. 2-7 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5822, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4843, 4830, 'Erträge aus Bewertung Finanzmittelfonds'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5823, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4844, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5824, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4845, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5825, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4846, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5826, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4847, 4830, 'Erträge aus der Währungsumrechnung (nicht § 256a HGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5827, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4848, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5828, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4849, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5829, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4850, 4830, 'Erlöse aus Verkäufen immaterieller Vermögensgengenstände (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5830, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4851, 4830, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5831, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4852, 4830, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5832, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4855, 4830, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5833, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4856, 4830, 'Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5834, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4857, 4830, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5835, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4858, 4830, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5836, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4860, 4830, 'Grundstückserträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5837, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4861, 4860, 'Erlöse aus Vermietung und Verpachtung, umsatzsteuerfrei § 4 Nr. 12 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5838, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4862, 4860, 'erlöse aus Vermietung und Verpachtung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5839, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4863, 4860, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5840, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4864, 4860, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5841, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4865, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19 % USt für § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5842, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4866, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5843, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4867, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG, § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5844, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4869, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5845, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4900, 4830, 'Erträge aus dem Abgang von Gegenständen des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5846, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4901, 4830, 'Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5847, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4905, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens außer Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5848, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4906, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5849, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4910, 4830, 'Erträge aus Zuschreibungen des Sachanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5850, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4911, 4830, 'Erträge aus Zuschreibungen des immateriellen Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5851, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4912, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5852, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4913, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5853, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4914, 4830, 'Erträge aus Zuschreibungen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5854, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4915, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens (außer Vorräte)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5855, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4916, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5856, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4920, 4830, 'Erträge aus der Herabsetzung der Pauschalwertberichtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5857, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4923, 4830, 'Erträge aus der Herabsetzung der Einzelwertberichtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5858, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4925, 4830, 'Erträge aus abgeschriebenen Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5859, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4927, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5860, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4828, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 10 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5861, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4829, 4830, 'Erträge aus der Auflösung der Rücklage für Ersatzbeschaffung R 6.6 EstR'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5862, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4930, 4830, 'Erträge aus der Auflösung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5863, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4932, 4830, 'Erträge aus der Herabsetzung von Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5864, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4935, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5865, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4936, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen (Ansparabschreibung nach § 7 g Abs. 2 EStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5866, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4937, 4830, 'Erträge aus der Auflösung steuerrechtlicher Sonderabschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5867, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4938, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 4g EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5868, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4939, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen nach 3 53 Abs, 16 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5869, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4940, 4830, 'Verrechnete sonstige Sachbezüge (keine Waren)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5870, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4941, 4830, 'Sachbezüge 7 % USt (Waren)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5871, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4942, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5872, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4943, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5873, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4944, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5874, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4945, 4830, 'Sachbezüge 19 % USt (Waren)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5875, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4946, 4830, 'Verrechnete sonstige Sachbezüge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5876, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4947, 4830, 'Verrechnete sonstige Sachbezüge aus Kfz-Gestellung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5877, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4948, 4830, 'Verrechnete sonstige Sachbezüge 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5878, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4949, 4830, 'Verrechnete sonstige Sachbezüge ohne Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5879, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4960, 4830, 'Periodenfremde Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5880, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4970, 4830, 'Versicherungsentschädigungen und Schadenersatzleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5881, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4972, 4830, 'Erstattungen Aufwendungsausgleichsgesetz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5882, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4975, 4830, 'Investitionszuschüsse (steuerpflichtig)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5883, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4980, 4830, 'Investitionszulagen (steuerfrei)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5884, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4981, 4830, 'Steuerfreie Erträge aus der Auflösung von steuerlichen Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5885, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4982, 4830, 'Sonstige steuerfreie Betriebseinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5886, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4987, 4830, 'Erträge aus der Aktivierung unentgeltlich erworbener Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5887, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4989, 4830, 'Kostenerstattungen, Rückvergütungen und Gutschriften für frühere Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5888, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4992, 4830, 'Erträge aus Verwaltungskostenumlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5889, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 5, 5, 'Betriebliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5890, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5000, 5, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5891, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5001, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5892, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5002, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5893, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5003, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5894, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5004, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5895, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5005, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5896, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5006, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5897, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5007, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5898, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5008, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5899, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5009, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5900, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5010, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5901, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5011, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5902, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5012, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5903, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5013, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5904, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5014, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5905, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5015, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5906, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5016, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5907, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5017, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5908, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5018, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5909, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5019, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5910, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5020, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5911, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5021, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5912, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5022, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5913, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5023, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5914, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5024, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5915, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5025, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5916, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5026, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5917, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5027, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5918, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5028, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5919, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5029, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5920, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5030, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5921, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5031, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5922, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5032, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5923, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5033, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5924, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5034, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5925, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5035, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5926, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5036, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5927, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5037, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5928, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5038, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5929, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5039, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5930, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5040, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5931, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5041, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5932, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5042, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5933, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5043, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5934, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5044, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5935, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5045, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5936, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5046, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5937, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5047, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5938, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5048, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5939, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5049, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5940, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5050, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5941, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5051, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5942, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5052, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5943, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5053, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5944, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5054, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5945, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5055, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5946, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5056, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5947, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5057, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5948, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5058, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5949, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5059, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5950, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5060, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5951, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5061, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5952, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5062, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5953, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5063, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5954, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5064, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5955, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5065, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5956, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5066, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5957, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5067, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5958, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5068, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5959, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5069, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5960, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5070, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5961, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5071, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5962, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5072, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5963, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5073, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5964, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5074, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5965, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5075, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5966, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5076, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5967, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5077, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5968, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5078, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5969, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5079, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5970, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5080, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5971, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5081, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5972, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5082, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5973, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5083, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5974, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5084, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5975, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5085, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5976, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5086, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5977, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5087, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5978, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5088, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5979, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5089, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5980, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5090, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5981, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5091, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5982, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5092, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5983, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5093, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5984, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5094, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5985, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5095, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5986, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5096, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5987, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5097, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5988, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5098, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5989, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5099, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5990, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5100, 5, 'Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5991, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5110, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5992, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5111, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5993, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5112, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5994, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5113, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5995, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5114, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5996, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5115, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5997, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5116, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5998, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5117, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5999, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5118, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6000, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5119, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6001, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5120, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6002, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5121, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6003, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5122, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6004, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5123, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6005, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5124, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6006, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5125, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6007, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5126, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6008, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5127, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6009, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5128, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6010, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5129, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6011, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5130, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6012, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5131, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6013, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5132, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6014, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5133, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6015, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5134, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6016, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5135, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6017, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5136, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6018, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5137, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6019, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5138, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6020, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5139, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6021, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5140, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6022, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5141, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6023, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5142, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6024, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5143, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6025, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5144, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6026, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5145, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6027, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5146, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6028, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5147, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6029, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5148, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6030, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5149, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6031, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5150, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6032, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5151, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6033, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5152, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6034, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5153, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6035, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5154, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6036, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5155, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6037, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5156, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6038, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5157, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6039, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5158, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6040, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5159, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6041, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5160, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6042, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5161, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6043, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5162, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6044, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5163, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6045, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5164, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6046, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5165, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6047, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5166, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6048, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5167, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6049, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5168, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6050, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5169, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6051, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5170, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6052, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5171, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6053, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5172, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6054, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5173, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6055, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5174, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6056, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5175, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6057, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5176, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6058, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5177, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6059, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5178, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6060, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5179, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6061, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5180, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6062, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5181, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6063, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5182, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6064, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5183, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6065, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5184, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6066, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5185, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6067, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5186, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6068, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5187, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6069, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5188, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6070, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5189, 5100, 'Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6071, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5190, 5, 'Energiestoffe (Fertigung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6072, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5191, 5190, 'Energiestoffe (Fertigung) 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6073, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5192, 5190, 'Energiestoffe (Fertigung) 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6074, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5193, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6075, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5194, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6076, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5195, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6077, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5196, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6078, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5197, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6079, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5198, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6080, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5200, 5, 'Wareneingang'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6081, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5300, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6082, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5301, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6083, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5302, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6084, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5303, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6085, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5304, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6086, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5305, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6087, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5306, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6088, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5307, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6089, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5308, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6090, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5309, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6091, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5310, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6092, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5311, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6093, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5312, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6094, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5313, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6095, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5314, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6096, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5315, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6097, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5316, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6098, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5317, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6099, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5318, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6100, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5319, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6101, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5320, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6102, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5321, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6103, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5322, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6104, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5323, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6105, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5324, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6106, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5325, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6107, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5326, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6108, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5327, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6109, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5328, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6110, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5329, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6111, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5330, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6112, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5331, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6113, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5332, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6114, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5333, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6115, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5334, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6116, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5335, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6117, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5336, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6118, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5337, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6119, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5338, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6120, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5339, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6121, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5340, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6122, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5341, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6123, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5342, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6124, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5343, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6125, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5344, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6126, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5345, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6127, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5346, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6128, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5347, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6129, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5348, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6130, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5349, 5200, 'Wareneingang ohne Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6131, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5400, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6132, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5401, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6133, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5402, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6134, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5403, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6135, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5404, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6136, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5405, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6137, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5406, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6138, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5407, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6139, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5408, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6140, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5409, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6141, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5410, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6142, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5411, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6143, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5412, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6144, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5413, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6145, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5414, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6146, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5415, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6147, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5416, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6148, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5417, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6149, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5418, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6150, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5419, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6151, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5420, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6152, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5421, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6153, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5422, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6154, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5423, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6155, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5424, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6156, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5425, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6157, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5426, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6158, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5427, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6159, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5428, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6160, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5429, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6161, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5430, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6162, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5431, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6163, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5432, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6164, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5433, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6165, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5434, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6166, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5435, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6167, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5436, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6168, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5437, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6169, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5438, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6170, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5439, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6171, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5440, 5200, 'Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatz-Identifikationsnummer 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6172, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5441, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6173, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5442, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6174, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5443, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6175, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5444, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6176, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5445, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6177, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5446, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6178, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5447, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6179, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5448, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6180, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5449, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6181, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5500, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6182, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5501, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6183, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5502, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6184, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5503, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6185, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5504, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6186, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5505, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6187, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5506, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6188, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5507, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6189, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5508, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6190, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5509, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6191, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5510, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6192, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5511, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6193, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5512, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6194, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5513, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6195, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5514, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6196, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5515, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6197, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5516, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6198, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5517, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6199, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5518, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6200, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5519, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6201, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5520, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6202, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5521, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6203, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5522, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6204, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5523, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6205, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5524, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6206, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5525, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6207, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5526, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6208, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5527, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6209, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5528, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6210, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5529, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6211, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5530, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6212, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5531, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6213, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5532, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6214, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5533, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6215, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5534, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6216, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5535, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6217, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5536, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6218, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5537, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6219, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5538, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6220, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5539, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6221, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5540, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6222, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5541, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6223, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5542, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6224, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5543, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6225, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5544, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6226, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5545, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6227, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5546, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6228, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5547, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6229, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5548, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6230, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5549, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6231, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5550, 5200, 'Steuerfreier innergemeinschaftlicher Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6232, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5551, 5200, 'Wareneingang im Drittland steuerbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6233, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5552, 5200, 'Erwerb 1. Abnehmer innerhalb eines Dreiecksgeschäftes'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6234, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5553, 5200, 'Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6235, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5554, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6236, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5555, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6237, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5556, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6238, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5557, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6239, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5558, 5200, 'Wareneingang im anderen EU-Land steuerbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6240, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5559, 5200, 'Steuerfreie Einfuhren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6241, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5560, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6242, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5561, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6243, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5562, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6244, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5563, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6245, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5564, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6246, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5565, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6247, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5566, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6248, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5567, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6249, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5568, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6250, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5569, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6251, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5600, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6252, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5601, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6253, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5602, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6254, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5603, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6255, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5604, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6256, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5605, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6257, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5606, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6258, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5607, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6259, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5608, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6260, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5609, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6261, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5610, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6262, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5611, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6263, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5612, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6264, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5613, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6265, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5614, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6266, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5615, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6267, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5616, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6268, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5617, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6269, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5618, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6270, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5619, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6271, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5650, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6272, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5651, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6273, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5652, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6274, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5653, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6275, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5654, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6276, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5655, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6277, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5656, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6278, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5657, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6279, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5658, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6280, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5659, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6281, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5660, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6282, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5661, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6283, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5662, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6284, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5663, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6285, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5664, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6286, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5665, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6287, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5666, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6288, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5667, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6289, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5668, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6290, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5669, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6291, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5700, 5200, 'Nachlässe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6292, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5701, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6293, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5710, 5700, 'Nachlässe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6294, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5711, 5700, 'Nachlässe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6295, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5712, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6296, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5713, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6297, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5714, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6298, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5715, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6299, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5716, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6300, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5717, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6301, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5718, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6302, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5719, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6303, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5720, 5700, 'Nachlässe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6304, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5722, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6305, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5723, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6306, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5724, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6307, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5725, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6308, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5726, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6309, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5727, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6310, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5728, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6311, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5729, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6312, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5730, 5200, 'Erhaltene Skonti'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6313, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5731, 5730, 'Erhaltene Skonti 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6314, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5732, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6315, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5733, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6316, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5734, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6317, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5735, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6318, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5736, 5730, 'Erhaltene Skonti 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6319, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5737, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6320, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5738, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6321, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5739, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6322, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5740, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6323, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5741, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6324, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5742, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6325, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5743, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6326, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5744, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6327, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5745, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6328, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5746, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6329, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5747, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6330, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5748, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6331, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5749, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6332, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5750, 5769, 'Erhaltene Boni 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6333, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5751, 5769, 'Erhaltene Boni 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6334, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5752, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6335, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5753, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6336, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5754, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6337, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5755, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6338, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5756, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6339, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5757, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6340, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5758, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6341, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5759, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6342, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5760, 5769, 'Erhaltene Boni 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6343, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5761, 5769, 'Erhaltene Boni 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6344, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5762, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6345, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5763, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6346, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5764, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6347, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5765, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6348, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5766, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6349, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5767, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6350, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5768, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6351, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5769, 5200, 'Erhaltene Boni'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6352, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5770, 5200, 'Erhaltene Rabatte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6353, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5780, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6354, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5781, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6355, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5782, 5770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6356, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5783, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6357, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5784, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6358, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5785, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6359, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5786, 5770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6360, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5787, 5770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6361, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5788, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6362, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5789, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6363, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5790, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6364, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5791, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6365, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5792, 5730, 'Erhaltene Skonti aus Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6366, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5793, 5730, 'Erhaltene Skonti aus Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäfte 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6367, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5794, 5730, 'Erhaltene Skonti 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6368, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5795, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6369, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5796, 5730, 'Erhaltene Skonti 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6370, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5797, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6371, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5798, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6372, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5799, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6373, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5800, 5, 'Bezugsnebenkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6374, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5820, 5, 'Leergut'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6375, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5840, 5, 'Zölle und Einfuhrabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6376, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5860, 5, 'Verrechnete Stoffkosten (Gegenkonto 5000-99)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6377, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5880, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe sowie bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6378, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5881, 5, 'Bestandsveränderungen Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6379, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5885, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6380, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5900, 5, 'Fremdleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6381, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5906, 5900, 'Fremdleistungen 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6382, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5907, 5900, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6383, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5908, 5900, 'Fremdleistungen 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6384, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5909, 5900, 'Fremdleistungen ohne Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6385, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5910, 5, 'Bauleistungen eine im Inland ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6386, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5911, 5910, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6387, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5912, 5910, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6388, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5913, 5, 'Sonstige Leistungen eines im andere EU-Land ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6389, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5914, 5913, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6390, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5915, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6391, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5916, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6392, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5917, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6393, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5918, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6394, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5919, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6395, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5920, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6396, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5921, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6397, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5922, 5921, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6398, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5923, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6399, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5924, 5923, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6400, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5925, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6401, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5926, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6402, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5927, 5926, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6403, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5928, 5926, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6404, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5829, 5926, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6405, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5930, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6406, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5931, 5930, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6407, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5932, 5930, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6408, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5933, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6409, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5934, 5933, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6410, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5935, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6411, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5936, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6412, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5937, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6413, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5938, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6414, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5939, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6415, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5940, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6416, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5941, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6417, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5942, 5941, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6418, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5943, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6419, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5944, 5943, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6420, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5945, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6421, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5946, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6422, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5947, 5946, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6423, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5948, 5946, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6424, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5949, 5946, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6425, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5950, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6426, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5951, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6427, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5952, 5951, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6428, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5953, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6429, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5954, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer, mit 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6430, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5955, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6431, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5956, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6432, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5957, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6433, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5958, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6434, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5959, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6435, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5960, 5, 'Leistungen nach § 13b UStG mit Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6436, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5965, 5, 'Leistungen nach § 13b UStG ohne Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6437, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5970, 5, 'Fremdleistungen (Miet- und Pachtzinsen bewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6438, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5975, 5, 'Fremdleistungen (Miet- und Pachtzinsen unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6439, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5980, 5, 'Fremdleistungen (Entgelte für Rechte und Lizenzen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6440, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5985, 5, 'Fremdleistungen (Vergütungen für die Überlassung von Wirtschaftsgütern – mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6441, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 6, 6, 'Betriebliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6442, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6000, 6, 'Löhne und Gehälter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6443, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6010, 6000, 'Löhne'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6444, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6020, 6000, 'Gehälter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6445, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6024, 6000, 'Geschäftsführergehälter der GmbH-Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6446, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6026, 6000, 'Tantiemen Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6447, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6027, 6000, 'Geschäftsführergehälter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6448, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6028, 6000, 'Vergütung an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6449, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6029, 6000, 'Tantiemen Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6450, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6030, 6000, 'Aushilfslöhne'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6451, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6035, 6000, 'Löhne für Minijobs'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6452, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6036, 6000, 'Pauschale Steuern für Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6453, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6037, 6000, 'Pauschale Steuern für Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6454, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6038, 6000, 'Pauschale Steuern für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6455, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6039, 6000, 'Pauschale Steuern für Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6456, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6040, 6000, 'Pauschale Steuer für Aushilfen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6457, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6045, 6000, 'Bedienungsgelder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6458, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6050, 6000, 'Ehegattengehalt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6459, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6060, 6000, 'Freiwillige soziale Aufwendungen, lohnsteuerpflichtig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6460, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6066, 6000, 'Freiwillige Zuwendungen an Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6461, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6067, 6000, 'Freiwillige Zuwendungen an Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6462, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6068, 6000, 'Freiwillige Zuwendungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6463, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6069, 6000, 'Pauschale Steuer auf sonstige Bezüge (z. B. Fahrtkostenzuschüsse)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6464, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6070, 6000, 'Krankengeldzuschüsse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6465, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6071, 6000, 'Sachzuwendungen und Dienstleistungen an Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6466, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6072, 6000, 'Sachzuwendungen und Dienstleistungen an Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6467, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6073, 6000, 'Sachzuwendungen und Dienstleistungen an Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6468, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6074, 6000, 'Sachzuwendungen und Dienstleistungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6469, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6075, 6000, 'Zuschüsse der Agenturen für Arbeit (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6470, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6076, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6471, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6077, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6472, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6078, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6473, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6079, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6474, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6080, 6000, 'Vermögenswirksame Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6475, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6090, 6000, 'Fahrtkostenerstattung Wohnung/Arbeitsstätte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6476, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6100, 6, 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6477, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6110, 6100, 'Gesetzliche soziale Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6478, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6118, 6100, 'Gesetzliche soziale Aufwendungen für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6479, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6120, 6100, 'Beiträge zur Berufsgenossenschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6480, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6130, 6100, 'Freiwillige soziale Aufwendungen, lohnsteuerfrei'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6481, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6140, 6100, 'Aufwendungen für Altersversorgung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6482, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6147, 6100, 'Pauschale Steuer auf sonstige Bezüge (z. B. Direktversicherungen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6483, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6148, 6100, 'Aufwendungen für Altersversorgung für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6484, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6149, 6100, 'Aufwendungen für Altersversorgung für Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6485, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6150, 6100, 'Versorgungskasse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6486, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6160, 6100, 'Aufwendungen für Unterstützung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6487, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6170, 6100, 'Sonstige soziale Abgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6488, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6171, 6100, 'Soziale Abgaben für Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6489, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6200, 6, 'Abschreibungen auf immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6490, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6201, 6, 'Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6491, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6205, 6, 'Abschreibungen auf den Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6492, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6209, 6, 'Außerplanmäßige Abschreibungen auf den Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6493, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6210, 6, 'Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6494, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6211, 6, 'Außerplanmäßige Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6495, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6220, 6, 'Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6496, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6221, 6, 'Abschreibungen auf Gebäude'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6497, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6222, 6, 'Abschreibungen auf Kfz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6498, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6223, 6, 'Abschreibungen auf Gebäudeteil des häuslichen Arbeitszimmers'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6499, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6230, 6, 'Außerplanmäßige Abschreibungen auf Sachanlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6500, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6231, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6501, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6232, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6502, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6233, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6503, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6240, 6, 'Abschreibungen auf Sachanlagen auf Grund steuerlicher Sondervorschriften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6504, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6241, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (ohne Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6505, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6242, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (für Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6506, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6243, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (ohne Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6507, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6244, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (für Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6508, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6250, 6, 'Kaufleasing'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6509, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6260, 6, 'Sofortabschreibungen geringwertiger Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6510, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6262, 6, 'Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6511, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6264, 6, 'Abschreibungen auf den Sammelposten Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6512, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6266, 6, 'Außerplanmäßige Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6513, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6268, 6266, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6514, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6270, 6, 'Abschreibungen auf sonstige Vermögensgegenstände des Umlaufvermögens (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6515, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6272, 6, 'Abschreibungen auf Umlaufvermögen, steuerrechtlich bedingt (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6516, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6278, 6, 'Abschreibungen auf Roh-, Hilfs- und Betriebsstoffe/Waren (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6517, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6279, 6, 'Abschreibungen auf fertige und unfertige Erzeugnisse (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6518, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6280, 6, 'Forderungsverluste (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6519, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6281, 6, 'Forderungsverluste 7 % USt (sowie unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6520, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6282, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6521, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6283, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6522, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6284, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6523, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6285, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6524, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6286, 6, 'Forderungsverluste 19 % USt (sowie unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6525, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6287, 6286, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6526, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6288, 6286, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6527, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6290, 6, 'Abschreibungen auf Forderungen gegenüber Kapitalgesellschaften, an denen eine Beteiligung besteht (soweit unüblich hoch), § 3c EstG/ § 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6528, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6291, 6, 'Abschreibungen auf Forderungen gegenüber Gesellschaftern und nahe stehenden Personen (soweit unüblich hoch), § 8b Abs. 3 StG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6529, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6300, 6, 'Sonstige betriebliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6530, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6302, 6, 'Interimskonto für Aufwendungen in einem anderen Land, bei denen eine Vorsteuervergütung möglich ist'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6531, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6303, 6, 'Fremdleistungen/Fremdarbeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6532, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6304, 6, 'Sonstige Aufwendungen betrieblich und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6533, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6305, 6, 'Raumkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6534, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6310, 6, 'Miete (unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6535, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6312, 6, 'Miete/Aufwendungen für doppelte Haushaltsführung Unternehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6536, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6313, 6, 'Vergütung an Gesellschafter für die miet- oder pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6537, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6314, 6, 'Vergütung an Mitunternehmer für die mietweise Überassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6538, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6315, 6, 'Pacht (unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6539, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6316, 6, 'Leasing (unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6540, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6317, 6, 'Aufwendungen für gemietete oder gepachtete unbewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6541, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6318, 6, 'Miet- und Pachtnebenkosten, die gewerbesteuerlich nicht hinzuzurechnen sind'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6542, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6319, 6, 'Vergütung an Mitunternehmer für die pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6543, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6320, 6, 'Heizung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6544, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6325, 6, 'Gas, Strom, Wasser'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6545, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6330, 6, 'Reinigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6546, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6335, 6, 'Instandhaltung betrieblicher Räume'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6547, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6340, 6, 'Abgaben für betrieblich genutzten Grundbesitz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6548, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6345, 6, 'Sonstige Raumkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6549, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6348, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6550, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6349, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6551, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6350, 6, 'Grundstücksaufwendungen, betrieblich'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6552, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6352, 6, 'Sonstige Grundstücksaufwendungen (neutral)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6553, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6390, 6, 'Zuwendungen, Spenden, steuerlich nicht abziehbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6554, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6391, 6, 'Zuwendungen, Spenden für wissenschaftliche und kulturelle Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6555, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6392, 6, 'Zuwendungen, Spenden für mildtätige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6556, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6393, 6, 'Zuwendungen, Spenden für kirchliche, religiöse und gemeinnützige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6557, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6394, 6, 'Zuwendungen, Spenden an politische Parteien'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6558, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6395, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für gemeinnützige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6559, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6396, 6395, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6560, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6397, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für kirchliche, religiöse und gemeinnützige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6561, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6398, 6, 'Zuwendungen, Spenden an Stiftungen in das zu erhaltene Vermögen (Vermögensstock) einer Stiftung für wissenschaftliche, mildtätige, kulturelle Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6562, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6400, 6, 'Versicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6563, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6405, 6, 'Versicherungen für Gebäude'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6564, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6410, 6, 'Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6565, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6420, 6, 'Beiträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6566, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6430, 6, 'Sonstige Abgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6567, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6436, 6, 'Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6568, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6437, 6, 'Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6569, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6440, 6, 'Ausgleichsabgabe i. S d. Schwerbehindertengesetzes'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6570, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6450, 6, 'Reparaturen und Instandhaltung von Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6571, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6460, 6, 'Reparaturen und Instandhaltung von technischen Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6572, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6470, 6, 'Reparaturen und Instandhaltung von anderen Anlagen und Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6573, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6475, 6, 'Zuführung zu Aufwandsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6574, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6485, 6, 'Reparaturen und Instandhaltung von anderen Anlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6575, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6490, 6, 'Sonstige Reparaturen und Instandhaltung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6576, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6495, 6, 'Wartungskosten für Hard- und Software'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6577, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6498, 6, 'Mietleasing beweglicher Wirtschaftsgüter für technische Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6578, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6500, 6, 'Fahrzeugkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6579, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6520, 6, 'Kfz-Versicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6580, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6530, 6, 'Laufende Kfz-Betriebskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6581, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6540, 6, 'Kfz-Reparaturen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6582, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6550, 6, 'Garagenmiete'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6583, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6560, 6, 'Mietleasing Kfz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6584, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6570, 6, 'Sonstige Kfz-Kosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6585, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6580, 6, 'Mautgebühren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6586, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6590, 6, 'Kfz-Kosten für betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6587, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6595, 6, 'Fremdfahrzeugkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6588, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6600, 6, 'Werbekosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6589, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6605, 6, 'Streuartikel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6590, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6610, 6, 'Geschenke abzugsfähig ohne § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6591, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6611, 6, 'Geschenke abzugsfähig mit § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6592, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6612, 6, 'Pauschale Steuern für Geschenke und Zugaben abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6593, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6620, 6, 'Geschenke nicht abzugsfähig ohne § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6594, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6621, 6, 'Geschenke nicht abzugsfähig mit § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6595, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6622, 6, 'Pauschale Steuern für Geschenke und Zuwendungen nicht abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6596, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6625, 6, 'Geschenke ausschließlich betrieblich genutzt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6597, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6629, 6, 'Zugaben mit § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6598, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6630, 6, 'Repräsentationskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6599, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6640, 6, 'Bewirtungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6600, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6641, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6601, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6642, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6602, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6643, 6, 'Aufmerksamkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6603, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6644, 6, 'Nicht abzugsfähige Bewirtungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6604, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6645, 6, 'Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6605, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6650, 6, 'Reisekosten Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6606, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6660, 6, 'Reisekosten Arbeitnehmer Übernachtungsaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6607, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6663, 6, 'Reisekosten Arbeitnehmer Fahrtkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6608, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6664, 6, 'Reisekosten Arbeitnehmer Verpflegungsmehraufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6609, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6665, 6664, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6610, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6668, 6, 'Kilometergelderstattung Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6611, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6670, 6, 'Reisekosten Unternehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6612, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6672, 6, 'Reisekosten Unternehmer (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6613, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6673, 6, 'Reisekosten Unternehmer Fahrtkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6614, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6674, 6, 'Reisekosten Unternehmer Verpflegungsmehraufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6615, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6680, 6, 'Reisekosten Unternehmer Übernachtungsaufwand und Reisenebenkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6616, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6685, 6680, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6617, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6686, 6680, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6618, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6688, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6619, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6689, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6620, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6690, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6621, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6691, 6, 'Verpflegungsmehraufwenungen im Rahmen der doppelten Haushaltsführung Unternehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6622, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6700, 6, 'Kosten der Warenabgabe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6623, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6710, 6, 'Verpackungsmaterial'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6624, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6740, 6, 'Ausgangsfrachten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6625, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6760, 6, 'Transportversicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6626, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6770, 6, 'Verkaufsprovision'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6627, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6780, 6, 'Fremdarbeiten (Vertrieb)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6628, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6790, 6, 'Aufwand für Gewährleistung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6629, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6800, 6, 'Porto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6630, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6805, 6, 'Telefon'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6631, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6810, 6, 'Telefax und Internetkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6632, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6815, 6, 'Bürobedarf'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6633, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6820, 6, 'Zeitschriften, Bücher (Fachliteratur)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6634, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6821, 6, 'Fortbildungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6635, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6822, 6, 'Freiwillige Sozialleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6636, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6823, 6, 'Vergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6637, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6824, 6, 'Haftungsvergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6638, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6825, 6, 'Rechts- und Beratungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6639, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6827, 6, 'Abschluss- und Prüfungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6640, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6830, 6, 'Buchführungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6641, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6833, 6, 'Vergütungen an Gesellschafter für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6642, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6834, 6, 'Vergütungen an Mitunternehmer für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6643, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6835, 6, 'Mieten für Einrichtungen (bewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6644, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6836, 6, 'Pacht (bewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6645, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6837, 6, 'Aufwendungen für die zeitlich befristete Überlassung von Rechten (Lizenzen, Konzessionen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6646, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6838, 6, 'Aufwendungen für gemietete oder gepachtete bewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6647, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6840, 6, 'Mietleasing beweglicher Wirtschaftsgüter für Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6648, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6845, 6, 'Werkzeuge und Kleingeräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6649, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6850, 6, 'Sonstiger Betriebsbedarf'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6650, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6854, 6, 'Genossenschaftliche Rückvergütung an Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6651, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6855, 6, 'Nebenkosten des Geldverkehrs'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6652, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6856, 6, 'Aufwendungen aus Anteilen an Kapitalgesellschaften §§ 3Nr. 40, 3c EStG/§ 8b Abs. 1 und 4 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6653, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6857, 6, 'Veräußerungskosten § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6654, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6859, 6, 'Aufwendungen für Abraum- und Abfallbeseitigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6655, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6860, 6, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6656, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6865, 6, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6657, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6871, 6, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6658, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6875, 6, 'Nicht abziehbare Vorsteuer der Aufsichtsratsvergütungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6659, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6876, 6, 'Abziehbare Aufsichtsratsvergütungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6660, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6880, 6, 'Aufwendungen aus der Währungsumrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6661, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6881, 6, 'Aufwendungen aus der Währungsumrechnung (nicht § 256a HGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6662, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6883, 6, 'Aufwendungen aus Bewertung Finanzmittelfonds'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6663, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6884, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6664, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6885, 6, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6665, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6886, 6885, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6666, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6887, 6885, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6667, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6888, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6668, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6889, 6, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6669, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6890, 6, 'Erlöse aus Verkäufen immaterieller Vermögensgegenstände (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6670, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6891, 6, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6671, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6892, 6, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6672, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6895, 6, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6673, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6896, 6, 'Anlagenabgänge immaterielle Vermögensgengenstände (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6674, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6897, 6, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6675, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6898, 6, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6676, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6900, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6677, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6903, 6, 'Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6678, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6905, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens außer Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6679, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6906, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6680, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6907, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6681, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6908, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG nach § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6682, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6910, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6683, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6912, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens, steuerrechtlich bedingt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6684, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6918, 6, 'Aufwendungen aus dem Erwerb eigener Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6685, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6920, 6, 'Einstellung in die Pauschalwertberechtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6686, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6922, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6687, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6923, 6, 'Einstellung in die Einzelwertberichtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6688, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6924, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 10 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6689, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6927, 6, 'Einstellung in steuerliche Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6690, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6928, 6, 'Einstellung in die Rücklage für Ersatzbeschaffung nach R 6.6 EstR'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6691, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6929, 6, 'Einstellungen in die steuerliche Rücklage nach § 4g EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6692, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6930, 6, 'Forderungsverluste (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6693, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6931, 6, 'Forderungsverluste 7 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6694, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6932, 6, 'Forderungsverluste aus steuerfreien EU-Lieferungen (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6695, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6933, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6696, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6934, 6933, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6697, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6935, 6933, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6698, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6936, 6, 'Forderungsverluste 19 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6699, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6937, 6936, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6700, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6938, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6701, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6939, 6938, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6702, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6960, 6, 'Periodenfremde Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6703, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6967, 6, 'Sonstige Aufwendungen betriebsfremd und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6704, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6968, 6, 'Sonstige nicht abziehbare Ausfwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6705, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6969, 6, 'Sonstige Aufwendungen unregelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6706, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6970, 6, 'Kalkulatorischer Unternehmerlohn'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6707, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6972, 6, 'Kalkulatorische Miete/Pacht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6708, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6974, 6, 'Kalkulatorische Zinsen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6709, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6976, 6, 'Kalkulatorische Abschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6710, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6978, 6, 'Kalkulatorische Wagnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6711, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6979, 6, 'Kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6712, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6980, 6, 'Verrechneter kalkulatorischer Unternehmerlohn'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6713, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6982, 6, 'Verrechnete kalkulatorische Miete/Pacht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6714, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6984, 6, 'Verrechnete kalkulatorische Zinsen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6715, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6986, 6, 'Verrechnete kalkulatorische Abschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6716, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6988, 6, 'Verrechnete kalkulatorische Wagnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6717, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6989, 6, 'Verrechneter kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6718, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6990, 6, 'Herstellungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6719, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6992, 6, 'Verwaltungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6720, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6994, 6, 'Vertriebskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6721, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6999, 6, 'Gegenkonto 6990-6998'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6722, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Weitere Erträge und Aufwendungen', 7, 7, 'Weitere Erträge und Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6723, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7000, 7, 'Erträge aus Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6724, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7004, 7000, 'Erträge aus Beteiligungen an Personengesellschaften (verbundene Unternehmen), § 9 GewStG bzw. § 18 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6725, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7005, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung) § 3 Nr. 40 EStG/§ 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6726, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7006, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6727, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7008, 7000, 'Gewinnanteile aus gewerblichen und selbstständigen Mitunternehmerschaften, § 9 GewStG bzw. § 18 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6728, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7009, 7000, 'Erträge aus Beteiligungen an verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6729, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7010, 7, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6730, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7011, 7010, 'Erträge aus Ausleihungen des Finanzanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6731, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7012, 7100, 'Erträge aus Ausleihungen des Finanzanlagevermögens an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6732, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7013, 7100, 'Erträge aus Anteilen an Personengesellschaften (Finanzanlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6733, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7014, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6734, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7015, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6735, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7016, 7100, 'Erträge aus Anteilen an Personengesellschaften (verbundene Unternehmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6736, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7017, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Kapitalgesellschaften (verbunden Unternehmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6737, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7018, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Personengesellschaften (verbundene Unternehmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6738, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7019, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6739, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7020, 7100, 'Zins- und Dividendenerträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6740, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7030, 7100, 'Erhaltene Ausgleichszahlungen (als außenstehender Aktionär)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6741, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7100, 7, 'Sonstige Zinsen und ähnliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6742, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7102, 7100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6743, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7103, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6744, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7104, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6745, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7105, 7100, 'ZINSERTräge § 233a AO, steuerpflichtig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6746, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7106, 7100, 'ZINSERTräge § 233a AO, steuerfrei (Anlage A KSt)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6747, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7107, 7100, 'ZINSERTräge § 233a AO, § 4 Abs. 5b EStG, steuerfrei'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6748, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7109, 7100, 'Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6749, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7110, 7100, 'Sonstige ZINSERTräge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6750, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7115, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Umlaufvermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6751, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7119, 7100, 'Sonstige ZINSERTräge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6752, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7120, 7100, 'Zinsähnliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6753, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7128, 7100, 'ZINSERTrag aus vorzeitiger Rückzahlung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6754, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7129, 7100, 'Zinsähnliche Erträge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6755, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7130, 7100, 'Diskonterträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6756, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7139, 7100, 'Diskonterträge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6757, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7140, 7100, 'Steuerfreie ZINSERTräge aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6758, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7141, 7100, 'ZINSERTräge aus der Abzinsung von Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6759, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7142, 7100, 'ZINSERTräge aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6760, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7143, 7100, 'ZINSERTräge aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6761, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7144, 7100, 'ZINSERTräge aus Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6762, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7145, 7100, 'Erträge aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6763, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7190, 7, 'Erträge aus Verlustübernahme'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6764, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7192, 7, 'Erhaltene Gewinne auf Grund einer Gewinngemeinschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6765, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7194, 7, 'Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6766, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7200, 7, 'Abschreibungen auf Finanzanlagen (dauerhaft)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6767, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7201, 7, 'Abschreibungen auf Finanzanlagen (nicht dauerhaft)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6768, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7204, 7, 'Abschreibungen auf Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (dauerhaft)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6769, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7207, 7, 'Abschreibungen auf Finanzanlagen – verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6770, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7208, 7, 'Aufwendungen auf Grund von Verlustanteilen an gewerbliche und selbständigen Mitunternehmerschaften, § 8 GewStG bzw. § 18 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6771, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7210, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6772, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7214, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6773, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7217, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens – verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6774, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7250, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6775, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7255, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage, § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6776, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7300, 7, 'Zinsen und ähnliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6777, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7302, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6778, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7303, 7300, 'Steuerlich abzugsfähige andere Nebenleistungen zu Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6779, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7304, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6780, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7305, 7300, 'Zinsaufwendungen § 233a AO abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6781, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7306, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO nicht abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6782, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7307, 7300, 'Zinsen aus Abzinsung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6783, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7308, 7300, 'Zinsaufwendungen § 233a AO nicht abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6784, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7309, 7300, 'Zinsaufwendungen an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6785, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7310, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6786, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7311, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6787, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7313, 7300, 'Nicht abzugsfähige Schuldzinsen gemäß § 4Abs. 4A EStG (Hinzurechnungsbetrag)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6788, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7316, 7300, 'Zinsen für Gesellschafterdarlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6789, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7317, 7300, 'Zinsen an Gesellschafter mit einer Beteiligung von mehr als 25 % bzw. diesen nahe stehende Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6790, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7318, 7300, 'Zinsen auf Kontokorrentkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6791, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7319, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6792, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7320, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6793, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7323, 7300, 'Abschreibungen auf Disagio zur Finanzierung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6794, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7324, 7300, 'Abschreibungen auf Disagio zur Finanzierung des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6795, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7325, 7300, 'Zinsaufwendungen für Gebäude, die zum Betriebsvermögen gehören'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6796, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7326, 7300, 'Zinsen zur Finanzierung des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6797, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7327, 7300, 'Renten und dauernde Lasten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6798, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7328, 7300, 'Zinsaufwendungen für Kapitalüberlassung durch Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6799, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7329, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6800, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7330, 7300, 'Zinsähnliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6801, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7339, 7300, 'Zinsähnliche Aufwendungen an verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6802, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7340, 7300, 'Diskontaufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6803, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7349, 7300, 'Diskontaufwendungen an verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6804, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7350, 7300, 'Zinsen und ähnliche Aufwendungen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6805, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7351, 7300, 'Zinsen und ähnliche Aufwendungen an verbundene Unternehmen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6806, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7355, 7300, 'Kreditprovisionen und Verwaltungskostenbeiträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6807, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7360, 7300, 'Zinsanteil der Zuführung zu Pensionsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6808, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7361, 7300, 'Zinsaufwendungen aus der Abzinsung von Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6809, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7362, 7300, 'Zinsaufwendungen aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6810, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7363, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6811, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7364, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6812, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7365, 7300, 'Aufwendungen aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6813, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7366, 7300, 'Steuerlich nicht abzugsfähige Zinsaufwendungen aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6814, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7390, 7, 'Aufwendungen aus Verlustübernahme'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6815, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7392, 7, 'Abgeführte Gewinne auf Grund einer Gewinngemeinschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6816, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7394, 7, 'Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6817, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7399, 7, 'Abgeführte Gewinnanteile (Soll)/ausgeglichene Verlustanteile (Haben) bei stiller Gesellschaft § 8 GesStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6818, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7400, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6819, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7401, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6820, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7450, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6821, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7451, 7, 'Erträge durch Verschmelzung und Umwandlung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6822, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6823, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6824, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7454, 7, 'Gewinn aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6825, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7460, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6826, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7461, 7460, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6827, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7462, 7460, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6828, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7463, 7460, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6829, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7464, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften (latente Steuern)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6830, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7500, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6831, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7501, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6832, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7550, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6833, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7551, 7, 'Verluste durch Verschmelzung und Umwandlung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6834, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7552, 7, 'Verluste durch außergewöhnliche Schadensfälle'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6835, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7553, 7, 'Aufwendungen für Restrukturierungs- und Sanierungsmaßnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6836, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7554, 7, 'Verluste aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten nach Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6837, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7560, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6838, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7561, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Pensionsrückstellungen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6839, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7562, 7561, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6840, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7563, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Latente Steuern)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6841, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7600, 7, 'Körperschaftsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6842, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7603, 7, 'Körperschaftsteuer für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6843, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7604, 7, 'Körperschaftsteuererstattungen für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6844, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7607, 7, 'Solidaritätszuschlagerstattungen für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6845, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6846, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6847, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7610, 7, 'Gewerbesteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6848, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7630, 7, 'Kapitalertragsteuer 25 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6849, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7633, 7, 'Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6850, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7638, 7, 'Ausländische Steuer auf im Inland steuerfrei DBA-Einkünfte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6851, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7639, 7, 'Anrechnung / Abzug ausländischer Quellensteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6852, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7640, 7639, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6853, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7641, 7, 'Gewerbesteuernachtzahlungen und Gewerbesteuererstattungen für Vorjahre, § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6854, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7642, 7641, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6855, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7643, 7, 'Erträge aus der Auflösung von Gewerbesteuerrückstellungen, § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6856, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7644, 7643, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6857, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7645, 7, 'Aufwendungen aus der Zuführung und Auflösung von latenten Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6858, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7646, 7, 'Aufwendungen aus der Zuführung zu Steuerrückstellungen für Steuerstundung (BstBK)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6859, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7648, 7, 'Erträge aus der Auflösung von Steuerrückstellungen für Steuerstundung (BstBK)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6860, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7649, 7, 'Erträge aus der Zuführung und Auflösung von latenten Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6861, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7650, 7, 'Sonstige Betriebssteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6862, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7675, 7, 'Verbrauchssteuer (sonstige Steuern)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6863, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7678, 7, 'Ökosteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6864, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7680, 7, 'Grundsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6865, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7685, 7, 'Kfz-Steuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6866, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7690, 7, 'Steuernachzahlungen Vorjahre für sonstige Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6867, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7692, 7, 'Steuererstattungen Vorjahre für sonstige Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6868, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7694, 7, 'Erträge aus der Auflösung von Rückstellungen für sonstige Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6869, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7700, 7, 'Gewinnvortrag nach Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6870, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7705, 7700, 'Gewinnvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6871, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7720, 7, 'Verlustvortrag nach Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6872, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7725, 7720, 'Verlustvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6873, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7730, 7, 'Entnahmen aus der Kapitalrücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6874, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7735, 7, 'Entnahmen aus der gesetzlichen Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6875, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7740, 7, 'Entnahmen aus dem Ausgleichsposten für aktivierte eigene Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6876, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7743, 7, 'Entnahmen aus der Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6877, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7744, 7, 'Entnahmen aus anderen Ergebnisrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6878, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7745, 7, 'Entnahmen aus satzungsmäßigen Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6879, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7750, 7, 'Entnahmen aus anderen Gewinnrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6880, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7751, 7750, 'Entnahmen aus gesamthänderisch gebundenen Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6881, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7755, 7, 'Erträge aus Kapitalherabsetzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6882, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7760, 7, 'Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6883, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7765, 7, 'Einstellungen in die gesetzliche Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6884, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7770, 7, 'Einstellungen in den Ausgleichsposten für aktivierte eigen Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6885, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7773, 7, 'Einstellungen in die Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6886, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7775, 7, 'Einstellungen in satzungsmäßige Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6887, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7780, 7, 'Einstellungen in andere Gewinnrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6888, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7781, 7780, 'Einstellungen in gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6889, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7785, 7, 'Einstellungen in andere Ergebnisrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6890, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7790, 7, 'Vorabausschüttungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6891, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7795, 7, 'Vortrag auf neue Rechnung (GuV)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6892, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7800, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6893, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7801, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6894, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7802, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6895, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7803, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6896, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7804, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6897, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7805, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6898, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7806, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6899, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7807, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6900, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7808, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6901, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7809, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6902, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7810, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6903, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7811, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6904, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7812, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6905, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7813, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6906, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7814, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6907, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7815, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6908, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7816, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6909, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7817, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6910, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7818, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6911, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7819, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6912, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7820, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6913, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7821, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6914, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7822, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6915, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7823, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6916, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7824, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6917, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7825, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6918, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7826, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6919, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7827, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6920, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7828, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6921, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7829, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6922, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7830, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6923, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7831, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6924, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7832, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6925, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7833, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6926, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7834, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6927, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7835, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6928, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7836, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6929, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7837, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6930, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7838, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6931, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7839, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6932, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7840, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6933, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7841, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6934, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7842, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6935, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7843, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6936, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7844, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6937, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7845, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6938, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7846, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6939, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7847, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6940, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7848, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6941, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7849, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6942, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7850, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6943, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7851, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6944, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7852, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6945, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7853, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6946, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7854, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6947, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7855, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6948, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7856, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6949, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7857, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6950, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7858, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6951, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7859, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6952, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7860, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6953, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7861, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6954, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7862, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6955, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7863, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6956, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7864, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6957, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7865, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6958, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7866, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6959, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7867, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6960, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7868, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6961, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7869, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6962, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7870, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6963, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7871, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6964, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7872, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6965, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7873, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6966, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7874, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6967, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7875, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6968, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7876, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6969, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7877, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6970, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7878, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6971, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7879, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6972, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7880, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6973, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7881, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6974, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7882, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6975, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7883, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6976, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7884, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6977, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7885, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6978, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7886, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6979, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7887, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6980, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7888, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6981, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7889, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6982, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7890, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6983, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7891, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6984, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7892, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6985, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7893, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6986, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7894, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6987, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7895, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6988, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7896, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6989, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7897, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6990, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7898, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6991, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7899, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6992, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7900, 7, '(reserviertes Konto)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6993, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6994, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8000, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6995, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8001, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6996, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8002, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6997, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8003, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6998, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8004, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6999, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8005, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7000, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8006, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7001, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8007, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7002, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8008, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7003, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8009, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7004, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8010, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7005, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8011, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7006, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8012, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7007, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8013, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7008, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8014, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7009, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8015, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7010, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8016, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7011, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8017, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7012, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8018, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7013, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8019, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7014, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8020, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7015, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8021, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7016, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8022, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7017, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8023, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7018, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8024, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7019, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8025, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7020, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8026, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7021, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8027, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7022, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8028, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7023, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8029, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7024, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8030, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7025, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8031, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7026, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8032, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7027, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8033, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7028, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8034, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7029, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8035, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7030, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8036, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7031, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8037, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7032, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8038, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7033, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8039, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7034, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8040, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7035, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8041, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7036, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8042, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7037, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8043, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7038, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8044, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7039, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8045, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7040, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8046, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7041, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8047, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7042, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8048, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7043, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8049, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7044, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8050, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7045, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8051, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7046, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8052, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7047, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8053, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7048, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8054, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7049, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8055, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7050, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8056, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7051, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8057, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7052, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8058, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7053, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8059, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7054, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8060, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7055, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8061, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7056, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8062, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7057, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8063, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7058, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8064, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7059, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8065, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7060, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8066, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7061, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8067, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7062, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8068, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7063, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8069, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7064, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8070, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7065, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8071, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7066, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8072, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7067, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8073, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7068, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8074, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7069, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8075, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7070, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8076, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7071, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8077, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7072, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8078, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7073, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8079, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7074, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8080, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7075, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8081, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7076, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8082, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7077, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8083, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7078, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8084, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7079, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8085, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7080, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8086, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7081, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8087, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7082, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8088, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7083, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8089, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7084, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8090, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7085, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8091, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7086, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8092, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7087, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8093, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7088, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8094, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7089, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8095, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7090, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8096, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7091, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8097, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7092, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8098, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7093, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8099, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7094, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8100, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7095, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8101, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7096, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8102, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7097, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8103, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7098, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8104, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7099, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8105, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7100, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8106, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7101, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8107, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7102, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8108, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7103, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8109, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7104, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8110, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7105, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8111, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7106, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8112, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7107, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8113, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7108, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8114, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7109, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8115, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7110, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8116, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7111, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8117, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7112, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8118, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7113, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8119, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7114, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8120, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7115, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8121, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7116, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8122, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7117, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8123, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7118, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8124, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7119, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8125, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7120, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8126, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7121, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8127, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7122, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8128, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7123, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8129, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7124, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8130, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7125, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8131, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7126, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8132, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7127, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8133, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7128, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8134, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7129, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8135, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7130, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8136, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7131, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8137, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7132, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8138, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7133, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8139, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7134, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8140, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7135, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8141, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7136, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8142, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7137, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8143, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7138, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8144, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7139, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8145, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7140, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8146, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7141, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8147, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7142, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8148, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7143, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8149, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7144, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8150, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7145, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8151, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7146, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8152, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7147, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8153, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7148, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8154, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7149, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8155, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7150, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8156, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7151, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8157, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7152, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8158, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7153, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8159, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7154, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8160, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7155, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8161, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7156, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8162, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7157, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8163, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7158, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8164, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7159, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8165, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7160, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8166, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7161, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8167, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7162, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8168, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7163, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8169, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7164, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8170, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7165, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8171, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7166, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8172, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7167, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8173, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7168, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8174, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7169, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8175, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7170, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8176, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7171, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8177, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7172, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8178, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7173, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8179, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7174, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8180, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7175, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8181, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7176, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8182, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7177, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8183, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7178, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8184, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7179, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8185, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7180, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8186, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7181, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8187, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7182, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8188, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7183, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8189, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7184, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8190, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7185, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8191, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7186, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8192, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7187, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8193, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7188, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8194, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7189, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8195, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7190, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8196, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7191, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8197, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7192, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8198, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7193, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8199, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7194, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8200, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7195, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8201, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7196, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8202, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7197, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8203, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7198, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8204, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7199, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8205, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7200, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8206, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7201, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8207, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7202, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8208, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7203, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8209, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7204, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8210, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7205, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8211, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7206, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8212, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7207, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8213, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7208, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8214, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7209, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8215, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7210, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8216, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7211, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8217, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7212, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8218, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7213, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8219, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7214, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8220, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7215, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8221, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7216, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8222, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7217, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8223, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7218, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8224, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7219, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8225, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7220, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8226, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7221, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8227, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7222, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8228, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7223, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8229, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7224, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8230, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7225, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8231, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7226, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8232, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7227, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8233, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7228, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8234, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7229, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8235, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7230, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8236, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7231, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8237, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7232, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8238, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7233, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8239, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7234, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8240, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7235, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8241, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7236, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8242, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7237, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8243, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7238, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8244, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7239, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8245, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7240, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8246, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7241, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8247, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7242, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8248, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7243, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8249, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7244, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8250, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7245, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8251, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7246, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8252, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7247, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8253, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7248, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8254, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7249, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8255, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7250, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8256, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7251, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8257, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7252, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8258, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7253, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8259, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7254, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8260, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7255, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8261, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7256, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8262, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7257, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8263, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7258, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8264, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7259, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8265, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7260, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8266, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7261, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8267, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7262, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8268, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7263, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8269, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7264, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8270, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7265, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8271, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7266, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8272, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7267, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8273, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7268, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8274, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7269, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8275, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7270, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8276, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7271, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8277, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7272, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8278, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7273, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8279, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7274, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8280, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7275, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8281, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7276, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8282, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7277, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8283, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7278, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8284, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7279, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8285, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7280, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8286, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7281, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8287, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7282, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8288, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7283, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8289, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7284, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8290, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7285, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8291, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7286, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8292, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7287, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8293, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7288, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8294, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7289, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8295, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7290, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8296, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7291, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8297, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7292, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8298, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7293, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8299, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7294, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8300, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7295, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8301, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7296, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8302, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7297, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8303, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7298, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8304, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7299, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8305, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7300, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8306, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7301, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8307, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7302, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8308, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7303, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8309, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7304, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8310, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7305, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8311, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7306, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8312, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7307, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8313, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7308, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8314, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7309, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8315, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7310, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8316, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7311, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8317, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7312, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8318, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7313, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8319, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7314, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8320, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7315, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8321, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7316, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8322, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7317, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8323, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7318, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8324, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7319, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8325, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7320, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8326, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7321, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8327, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7322, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8328, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7323, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8329, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7324, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8330, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7325, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8331, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7326, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8332, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7327, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8333, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7328, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8334, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7329, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8335, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7330, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8336, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7331, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8337, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7332, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8338, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7333, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8339, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7334, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8340, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7335, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8341, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7336, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8342, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7337, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8343, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7338, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8344, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7339, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8345, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7340, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8346, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7341, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8347, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7342, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8348, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7343, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8349, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7344, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8350, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7345, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8351, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7346, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8352, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7347, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8353, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7348, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8354, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7349, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8355, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7350, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8356, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7351, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8357, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7352, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8358, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7353, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8359, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7354, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8360, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7355, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8361, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7356, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8362, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7357, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8363, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7358, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8364, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7359, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8365, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7360, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8366, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7361, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8367, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7362, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8368, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7363, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8369, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7364, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8370, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7365, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8371, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7366, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8372, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7367, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8373, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7368, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8374, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7369, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8375, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7370, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8376, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7371, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8377, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7372, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8378, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7373, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8379, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7374, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8380, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7375, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8381, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7376, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8382, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7377, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8383, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7378, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8384, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7379, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8385, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7380, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8386, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7381, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8387, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7382, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8388, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7383, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8389, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7384, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8390, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7385, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8391, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7386, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8392, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7387, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8393, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7388, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8394, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7389, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8395, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7390, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8396, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7391, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8397, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7392, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8398, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7393, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8399, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7394, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8400, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7395, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8401, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7396, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8402, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7397, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8403, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7398, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8404, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7399, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8405, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7400, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8406, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7401, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8407, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7402, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8408, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7403, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8409, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7404, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8410, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7405, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8411, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7406, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8412, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7407, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8413, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7408, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8414, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7409, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8415, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7410, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8416, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7411, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8417, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7412, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8418, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7413, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8419, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7414, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8420, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7415, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8421, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7416, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8422, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7417, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8423, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7418, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8424, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7419, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8425, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7420, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8426, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7421, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8427, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7422, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8428, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7423, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8429, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7424, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8430, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7425, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8431, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7426, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8432, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7427, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8433, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7428, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8434, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7429, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8435, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7430, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8436, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7431, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8437, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7432, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8438, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7433, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8439, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7434, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8440, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7435, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8441, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7436, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8442, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7437, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8443, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7438, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8444, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7439, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8445, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7440, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8446, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7441, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8447, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7442, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8448, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7443, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8449, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7444, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8450, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7445, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8451, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7446, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8452, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7447, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8453, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7448, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8454, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7449, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8455, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7450, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8456, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7451, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8457, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7452, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8458, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7453, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8459, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7454, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8460, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7455, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8461, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7456, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8462, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7457, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8463, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7458, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8464, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7459, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8465, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7460, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8466, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7461, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8467, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7462, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8468, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7463, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8469, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7464, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8470, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7465, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8471, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7466, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8472, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7467, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8473, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7468, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8474, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7469, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8475, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7470, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8476, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7471, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8477, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7472, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8478, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7473, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8479, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7474, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8480, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7475, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8481, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7476, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8482, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7477, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8483, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7478, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8484, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7479, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8485, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7480, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8486, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7481, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8487, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7482, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8488, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7483, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8489, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7484, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8490, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7485, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8491, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7486, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8492, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7487, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8493, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7488, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8494, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7489, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8495, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7490, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8496, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7491, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8497, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7492, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8498, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7493, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8499, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7494, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8500, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7495, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8501, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7496, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8502, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7497, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8503, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7498, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8504, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7499, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8505, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7500, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8506, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7501, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8507, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7502, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8508, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7503, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8509, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7504, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8510, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7505, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8511, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7506, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8512, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7507, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8513, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7508, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8514, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7509, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8515, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7510, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8516, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7511, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8517, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7512, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8518, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7513, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8519, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7514, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8520, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7515, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8521, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7516, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8522, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7517, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8523, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7518, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8524, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7519, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8525, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7520, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8526, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7521, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8527, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7522, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8528, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7523, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8529, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7524, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8530, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7525, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8531, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7526, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8532, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7527, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8533, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7528, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8534, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7529, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8535, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7530, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8536, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7531, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8537, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7532, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8538, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7533, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8539, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7534, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8540, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7535, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8541, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7536, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8542, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7537, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8543, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7538, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8544, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7539, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8545, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7540, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8546, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7541, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8547, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7542, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8548, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7543, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8549, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7544, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8550, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7545, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8551, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7546, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8552, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7547, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8553, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7548, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8554, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7549, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8555, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7550, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8556, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7551, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8557, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7552, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8558, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7553, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8559, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7554, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8560, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7555, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8561, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7556, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8562, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7557, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8563, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7558, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8564, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7559, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8565, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7560, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8566, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7561, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8567, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7562, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8568, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7563, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8569, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7564, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8570, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7565, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8571, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7566, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8572, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7567, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8573, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7568, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8574, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7569, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8575, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7570, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8576, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7571, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8577, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7572, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8578, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7573, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8579, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7574, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8580, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7575, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8581, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7576, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8582, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7577, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8583, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7578, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8584, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7579, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8585, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7580, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8586, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7581, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8587, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7582, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8588, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7583, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8589, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7584, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8590, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7585, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8591, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7586, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8592, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7587, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8593, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7588, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8594, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7589, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8595, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7590, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8596, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7591, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8597, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7592, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8598, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7593, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8599, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7594, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8600, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7595, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8601, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7596, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8602, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7597, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8603, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7598, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8604, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7599, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8605, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7600, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8606, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7601, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8607, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7602, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8608, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7603, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8609, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7604, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8610, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7605, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8611, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7606, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8612, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7607, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8613, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7608, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8614, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7609, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8615, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7610, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8616, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7611, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8617, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7612, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8618, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7613, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8619, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7614, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8620, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7615, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8621, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7616, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8622, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7617, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8623, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7618, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8624, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7619, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8625, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7620, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8626, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7621, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8627, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7622, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8628, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7623, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8629, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7624, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8630, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7625, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8631, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7626, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8632, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7627, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8633, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7628, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8634, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7629, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8635, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7630, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8636, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7631, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8637, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7632, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8638, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7633, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8639, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7634, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8640, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7635, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8641, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7636, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8642, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7637, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8643, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7638, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8644, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7639, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8645, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7640, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8646, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7641, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8647, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7642, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8648, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7643, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8649, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7644, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8650, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7645, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8651, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7646, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8652, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7647, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8653, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7648, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8654, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7649, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8655, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7650, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8656, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7651, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8657, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7652, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8658, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7653, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8659, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7654, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8660, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7655, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8661, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7656, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8662, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7657, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8663, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7658, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8664, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7659, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8665, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7660, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8666, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7661, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8667, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7662, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8668, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7663, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8669, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7664, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8670, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7665, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8671, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7666, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8672, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7667, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8673, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7668, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8674, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7669, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8675, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7670, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8676, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7671, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8677, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7672, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8678, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7673, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8679, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7674, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8680, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7675, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8681, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7676, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8682, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7677, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8683, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7678, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8684, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7679, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8685, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7680, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8686, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7681, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8687, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7682, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8688, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7683, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8689, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7684, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8690, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7685, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8691, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7686, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8692, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7687, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8693, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7688, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8694, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7689, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8695, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7690, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8696, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7691, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8697, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7692, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8698, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7693, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8699, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7694, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8700, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7695, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8701, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7696, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8702, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7697, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8703, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7698, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8704, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7699, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8705, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7700, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8706, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7701, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8707, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7702, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8708, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7703, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8709, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7704, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8710, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7705, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8711, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7706, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8712, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7707, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8713, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7708, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8714, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7709, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8715, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7710, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8716, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7711, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8717, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7712, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8718, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7713, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8719, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7714, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8720, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7715, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8721, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7716, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8722, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7717, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8723, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7718, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8724, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7719, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8725, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7720, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8726, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7721, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8727, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7722, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8728, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7723, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8729, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7724, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8730, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7725, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8731, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7726, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8732, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7727, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8733, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7728, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8734, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7729, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8735, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7730, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8736, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7731, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8737, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7732, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8738, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7733, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8739, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7734, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8740, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7735, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8741, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7736, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8742, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7737, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8743, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7738, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8744, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7739, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8745, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7740, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8746, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7741, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8747, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7742, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8748, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7743, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8749, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7744, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8750, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7745, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8751, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7746, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8752, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7747, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8753, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7748, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8754, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7749, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8755, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7750, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8756, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7751, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8757, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7752, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8758, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7753, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8759, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7754, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8760, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7755, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8761, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7756, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8762, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7757, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8763, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7758, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8764, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7759, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8765, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7760, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8766, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7761, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8767, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7762, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8768, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7763, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8769, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7764, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8770, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7765, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8771, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7766, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8772, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7767, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8773, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7768, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8774, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7769, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8775, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7770, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8776, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7771, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8777, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7772, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8778, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7773, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8779, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7774, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8780, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7775, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8781, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7776, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8782, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7777, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8783, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7778, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8784, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7779, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8785, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7780, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8786, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7781, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8787, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7782, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8788, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7783, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8789, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7784, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8790, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7785, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8791, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7786, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8792, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7787, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8793, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7788, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8794, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7789, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8795, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7790, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8796, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7791, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8797, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7792, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8798, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7793, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8799, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7794, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8800, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7795, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8801, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7796, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8802, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7797, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8803, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7798, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8804, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7799, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8805, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7800, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8806, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7801, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8807, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7802, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8808, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7803, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8809, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7804, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8810, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7805, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8811, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7806, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8812, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7807, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8813, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7808, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8814, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7809, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8815, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7810, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8816, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7811, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8817, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7812, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8818, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7813, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8819, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7814, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8820, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7815, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8821, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7816, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8822, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7817, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8823, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7818, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8824, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7819, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8825, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7820, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8826, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7821, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8827, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7822, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8828, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7823, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8829, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7824, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8830, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7825, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8831, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7826, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8832, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7827, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8833, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7828, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8834, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7829, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8835, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7830, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8836, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7831, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8837, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7832, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8838, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7833, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8839, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7834, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8840, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7835, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8841, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7836, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8842, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7837, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8843, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7838, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8844, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7839, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8845, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7840, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8846, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7841, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8847, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7842, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8848, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7843, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8849, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7844, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8850, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7845, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8851, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7846, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8852, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7847, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8853, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7848, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8854, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7849, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8855, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7850, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8856, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7851, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8857, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7852, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8858, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7853, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8859, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7854, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8860, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7855, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8861, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7856, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8862, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7857, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8863, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7858, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8864, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7859, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8865, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7860, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8866, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7861, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8867, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7862, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8868, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7863, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8869, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7864, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8870, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7865, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8871, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7866, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8872, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7867, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8873, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7868, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8874, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7869, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8875, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7870, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8876, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7871, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8877, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7872, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8878, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7873, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8879, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7874, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8880, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7875, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8881, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7876, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8882, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7877, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8883, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7878, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8884, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7879, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8885, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7880, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8886, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7881, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8887, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7882, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8888, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7883, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8889, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7884, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8890, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7885, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8891, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7886, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8892, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7887, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8893, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7888, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8894, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7889, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8895, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7890, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8896, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7891, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8897, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7892, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8898, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7893, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8899, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7894, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8900, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7895, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8901, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7896, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8902, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7897, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8903, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7898, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8904, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7899, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8905, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7900, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8906, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7901, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8907, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7902, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8908, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7903, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8909, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7904, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8910, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7905, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8911, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7906, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8912, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7907, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8913, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7908, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8914, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7909, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8915, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7910, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8916, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7911, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8917, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7912, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8918, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7913, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8919, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7914, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8920, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7915, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8921, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7916, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8922, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7917, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8923, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7918, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8924, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7919, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8925, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7920, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8926, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7921, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8927, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7922, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8928, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7923, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8929, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7924, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8930, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7925, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8931, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7926, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8932, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7927, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8933, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7928, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8934, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7929, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8935, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7930, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8936, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7931, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8937, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7932, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8938, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7933, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8939, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7934, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8940, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7935, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8941, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7936, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8942, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7937, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8943, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7938, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8944, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7939, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8945, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7940, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8946, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7941, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8947, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7942, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8948, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7943, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8949, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7944, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8950, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7945, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8951, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7946, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8952, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7947, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8953, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7948, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8954, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7949, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8955, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7950, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8956, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7951, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8957, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7952, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8958, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7953, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8959, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7954, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8960, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7955, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8961, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7956, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8962, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7957, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8963, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7958, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8964, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7959, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8965, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7960, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8966, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7961, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8967, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7962, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8968, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7963, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8969, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7964, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8970, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7965, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8971, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7966, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8972, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7967, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8973, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7968, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8974, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7969, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8975, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7970, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8976, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7971, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8977, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7972, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8978, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7973, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8979, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7974, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8980, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7975, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8981, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7976, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8982, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7977, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8983, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7978, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8984, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7979, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8985, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7980, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8986, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7981, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8987, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7982, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8988, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7983, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8989, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7984, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8990, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7985, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8991, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7986, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8992, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7987, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8993, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7988, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8994, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7989, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8995, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7990, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8996, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7991, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8997, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7992, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8998, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7993, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8999, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7994, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 9, 9, 'Vortrags-, Kapital-, Korrektur- und statistische Konten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7995, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9000, 9, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7996, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9001, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7997, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9002, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7998, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9003, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7999, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9004, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8000, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9005, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8001, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9006, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8002, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9007, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8003, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9008, 9, 'Saldenvorträge, Debitoren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8004, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9009, 9, 'Saldenvorträge, Kreditoren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8005, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9060, 9009, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8006, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9069, 9009, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8007, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9070, 9, 'Offene Posten aus 2000'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8008, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9071, 9, 'Offene Posten aus 2001'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8009, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9072, 9, 'Offene Posten aus 2002'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8010, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9073, 9, 'Offene Posten aus 2003'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8011, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9074, 9, 'Offene Posten aus 2004'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8012, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9075, 9, 'Offene Posten aus 2005'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8013, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9076, 9, 'Offene Posten aus 2006'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8014, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9077, 9, 'Offene Posten aus 2007'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8015, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9078, 9, 'Offene Posten aus 2008'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8016, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9079, 9, 'Offene Posten aus 2009'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8017, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9080, 9, 'Offene Posten aus 2010'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8018, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9081, 9, 'Offene Posten aus 2011'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8019, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9082, 9, 'Offene Posten aus 2012'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8020, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9083, 9, 'Offene Posten aus 2013'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8021, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9084, 9, 'Offene Posten aus 2014'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8022, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9085, 9, 'Offene Posten aus 2015'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8023, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9086, 9, 'Offene Posten aus 2016'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8024, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9087, 9, 'Offene Posten aus 2017'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8025, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9088, 9, 'Offene Posten aus 2018'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8026, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9089, 9088, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8027, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9090, 9, 'Summenvortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8028, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9091, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8029, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9092, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8030, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9093, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8031, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9094, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8032, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9095, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8033, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9096, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8034, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9097, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8035, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9098, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8036, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9101, 9, 'Verkaufstage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8037, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9102, 9, 'Anzahl der Barkunden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8038, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9103, 9, 'Beschäftigte Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8039, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9104, 9, 'Unbezahlte Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8040, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9105, 9, 'Verkaufskräfte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8041, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9106, 9, 'Geschäftsraum qm'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8042, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9107, 9, 'Verkaufsraum qm'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8043, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9116, 9, 'Anzahl Rechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8044, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9117, 9, 'Anzahl Kreditkunden monatlich'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8045, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9118, 9, 'Anzahl Kreditkunden aufgelaufen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8046, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9120, 9, 'Erweiterungsinvestitionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8047, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9130, 9120, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8048, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9131, 9120, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8049, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9135, 9, 'Auftragseingang im Geschäftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8050, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9140, 9, 'Auftragsbestand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8051, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9141, 9, 'Variables Kapital TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8052, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9142, 9, 'Variables Kapital – Anteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8053, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9143, 9142, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8054, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9144, 9142, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8055, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9145, 9142, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8056, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9146, 9, 'Variables Kapital Vollhafter – Übertragung einer § 6b EstG-Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8057, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9147, 9, 'Variables Kapital Teilhafter – Übertragung einer § 6b EstG-Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8058, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9148, 9147, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8059, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9149, 9147, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8060, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9150, 9, 'Festkapital – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8061, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9151, 9, 'Variables Kapital – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8062, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9152, 9, 'Verlust-/Vortragskonto – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8063, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9153, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8064, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9154, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8065, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9155, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8066, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9156, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8067, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9157, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8068, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9158, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8069, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9159, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8070, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9160, 9, 'Kommandit-Kapital – andere Kapitalkontenanpassungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8071, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9161, 9, 'Variables Kapital – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8072, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9162, 9, 'Verlustausgleichskonto – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8073, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9163, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8074, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9164, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8075, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9165, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8076, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9166, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8077, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9167, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8078, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9168, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8079, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9169, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8080, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9170, 9, 'Festkapital – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8081, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9171, 9, 'Variables Kapital – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8082, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9172, 9, 'Verlust-/Vortragskonto – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8083, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9173, 9, 'Kapitalkonto III – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8084, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9174, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8085, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9175, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8086, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9176, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8087, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9177, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8088, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9178, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8089, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9179, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8090, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9180, 9, 'Kommandit-Kapital – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8091, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9181, 9, 'Variables Kapital – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8092, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9182, 9, 'Verlustausgleichskonto – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8093, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9183, 9, 'Kapitalkonto III – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8094, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9184, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8095, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9185, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8096, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9186, 9185, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8097, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9187, 9185, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8098, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9188, 9185, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8099, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9189, 9, 'Verrechnungskonto für Umbuchungen zwischen Gesellschafter-Eigenkapitalkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8100, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9190, 9, 'Gegenkonto für Mengeneinheiten Konten 9101-9107 und Konten 9116-9118'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8101, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9199, 9, 'Gegenkonto zu Konten 9120, 9135-9140'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8102, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9200, 9, 'Beschäftigte Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8103, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9201, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8104, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9202, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8105, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9203, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8106, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9204, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8107, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9205, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8108, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9206, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8109, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9207, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8110, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9208, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8111, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9209, 9, 'Gegenkonto zu 9200'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8112, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9210, 9, 'Produktive Löhne'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8113, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9219, 9, 'Gegenkonto zu 9120'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8114, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9220, 9, 'Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8115, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9221, 9, 'Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8116, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9229, 9, 'Gegenkonto zu 9220-9221'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8117, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9230, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8118, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9232, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8119, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9234, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8120, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9239, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8121, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9240, 9, 'Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8122, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9241, 9, 'Investitionsverbindlichkeiten aus Sachanlagekäufen bei Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8123, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9242, 9, 'Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8124, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9243, 9, 'Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8125, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9244, 9, 'Gegenkonto zu Konto 9240-9243'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8126, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9245, 9, 'Forderungen aus Sachnanlageverkäufen bei sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8127, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9246, 9, 'Forderungen aus Verkäufen immaterieller Vermögensgegenstände bei sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8128, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9247, 9, 'Forderungen aus Verkäufen von Finanzanlagen bei sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8129, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9249, 9, 'Gegenkonto zu Konto 9245-47'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8130, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9250, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8131, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9255, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8132, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9259, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8133, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9260, 9, 'Kurzfristige Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8134, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9262, 9, 'Mittelfristige Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8135, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9264, 9, 'Langfristige Rückstellungen, außer Pensionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8136, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9269, 9, 'Gegenkonto zu Konten 9260-9268'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8137, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9270, 9, 'Gegenkonto zu 9271-9279 (Soll-Buchung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8138, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9271, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8139, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9272, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln gegenüber verbundenen/assoziierten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8140, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9273, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8141, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9274, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften gegenüber verbundenen/assoziierten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8142, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9275, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8143, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9276, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen/assoziierten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8144, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9277, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8145, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9278, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen/assoziierten Unternehemn'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8146, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9279, 9, 'Verpflichtungen aus Treuhandvermögen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8147, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9280, 9, 'Gegenkonto zu 9281-9284'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8148, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9281, 9, 'Verpflichtungen aus Miet- und Leasingverträgen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8149, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9282, 9, 'Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8150, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9283, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8151, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9284, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehemen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8152, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9285, 9, 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach „ 253 Abs. 6 HGB (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8153, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9286, 9, 'Gegenkonto zu 9285'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8154, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9287, 9, 'Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8155, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9288, 9, 'Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8156, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9289, 9, 'Gegenkonto zu 9287 und 9288'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8157, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9290, 9, 'Statistisches Konto steuerfreie Auslagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8158, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9291, 9, 'Gegenkonto zu 9290'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8159, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9292, 9, 'Statistisches Konto Fremdgeld'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8160, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9293, 9, 'Gegenkonto zu 9292'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8161, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9295, 9, 'Einlagen stiller Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8162, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9297, 9, 'Steuerrechtlicher Ausgleichsposten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8163, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9300, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8164, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9301, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8165, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9302, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8166, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9303, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8167, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9304, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8168, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9305, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8169, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9306, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8170, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9307, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8171, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9308, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8172, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9309, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8173, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9310, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8174, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9311, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8175, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9312, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8176, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9313, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8177, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9314, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8178, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9315, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8179, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9316, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8180, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9317, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8181, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9318, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8182, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9319, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8183, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9320, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8184, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9326, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8185, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9327, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8186, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9328, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8187, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9329, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8188, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9330, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8189, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9331, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8190, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9332, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8191, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9333, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8192, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9334, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8193, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9335, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8194, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9336, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8195, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9337, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8196, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9338, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8197, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9339, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8198, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9340, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8199, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9341, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8200, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9342, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8201, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9343, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8202, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9346, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8203, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9347, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8204, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9348, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8205, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9349, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8206, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9357, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8207, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9358, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8208, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9359, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8209, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9360, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8210, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9365, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8211, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9366, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8212, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9367, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8213, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9371, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8214, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9372, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8215, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9390, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8216, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9391, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8217, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9392, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8218, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9393, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8219, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9394, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8220, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9395, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8221, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9396, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8222, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9397, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8223, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9398, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8224, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9399, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8225, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9849', 9400, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8226, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9848', 9401, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8227, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9847', 9402, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8228, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9846', 9403, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8229, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9845', 9404, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8230, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9844', 9405, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8231, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9843', 9406, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8232, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9842', 9407, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8233, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9841', 9408, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8234, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9840', 9409, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8235, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9839', 9410, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8236, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9838', 9411, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8237, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9837', 9412, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8238, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9836', 9413, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8239, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9835', 9414, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8240, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9834', 9415, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8241, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9833', 9416, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8242, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9832', 9417, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8243, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9831', 9418, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8244, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9830', 9419, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8245, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9829', 9420, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8246, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9828', 9421, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8247, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9827', 9422, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8248, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9826', 9423, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8249, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9825', 9424, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8250, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9824', 9425, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8251, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9823', 9426, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8252, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9822', 9427, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8253, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9821', 9428, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8254, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9820', 9429, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8255, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9819', 9430, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8256, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9818', 9431, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8257, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9817', 9432, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8258, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9816', 9433, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8259, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9815', 9434, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8260, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9814', 9435, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8261, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9813', 9436, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8262, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9812', 9437, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8263, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9811', 9438, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8264, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9810', 9439, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8265, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9809', 9440, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8266, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9808', 9441, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8267, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9807', 9442, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8268, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9806', 9443, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8269, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9805', 9444, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8270, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9804', 9445, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8271, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9803', 9446, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8272, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9802', 9447, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8273, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9801', 9448, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8274, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9800', 9449, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8275, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9799', 9450, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8276, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9798', 9451, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8277, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9797', 9452, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8278, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9796', 9453, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8279, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9795', 9454, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8280, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9794', 9455, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8281, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9793', 9456, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8282, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9792', 9457, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8283, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9791', 9458, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8284, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9790', 9459, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8285, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9789', 9460, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8286, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9788', 9461, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8287, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9787', 9462, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8288, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9786', 9463, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8289, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9785', 9464, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8290, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9784', 9465, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8291, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9783', 9466, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8292, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9782', 9467, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8293, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9781', 9468, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8294, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9780', 9469, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8295, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9779', 9470, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8296, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9778', 9471, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8297, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9777', 9472, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8298, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9776', 9473, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8299, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9775', 9474, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8300, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9774', 9475, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8301, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9773', 9476, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8302, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9772', 9477, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8303, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9771', 9478, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8304, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9770', 9479, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8305, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9769', 9480, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8306, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9768', 9481, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8307, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9767', 9482, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8308, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9766', 9483, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8309, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9765', 9484, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8310, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9764', 9485, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8311, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9763', 9486, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8312, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9762', 9487, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8313, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9761', 9488, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8314, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9760', 9489, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8315, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9759', 9490, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8316, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9758', 9491, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8317, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9757', 9492, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8318, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9756', 9493, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8319, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9755', 9494, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8320, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9754', 9495, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8321, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9753', 9496, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8322, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9752', 9497, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8323, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9751', 9498, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8324, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9750', 9499, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8325, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9500, 9, 'Anteil für Konto 2000 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8326, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9501, 9, 'Anteil für Konto 2001 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8327, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9502, 9, 'Anteil für Konto 2002 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8328, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9503, 9, 'Anteil für Konto 2003 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8329, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9504, 9, 'Anteil für Konto 2004 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8330, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9505, 9, 'Anteil für Konto 2005 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8331, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9506, 9, 'Anteil für Konto 2006 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8332, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9507, 9, 'Anteil für Konto 2007 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8333, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9508, 9, 'Anteil für Konto 2008 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8334, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9509, 9, 'Anteil für Konto 2009 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8335, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9510, 9, 'Anteil für Konto 2010 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8336, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9511, 9, 'Anteil für Konto 2011 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8337, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9512, 9, 'Anteil für Konto 2012 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8338, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9513, 9, 'Anteil für Konto 2013 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8339, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9514, 9, 'Anteil für Konto 2014 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8340, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9515, 9, 'Anteil für Konto 2015 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8341, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9516, 9, 'Anteil für Konto 2016 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8342, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9517, 9, 'Anteil für Konto 2017 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8343, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9518, 9, 'Anteil für Konto 2018 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8344, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9519, 9, 'Anteil für Konto 2019 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8345, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9520, 9, 'Anteil für Konto 2020 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8346, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9521, 9, 'Anteil für Konto 2021 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8347, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9522, 9, 'Anteil für Konto 2022 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8348, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9523, 9, 'Anteil für Konto 2023 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8349, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9524, 9, 'Anteil für Konto 2024 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8350, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9525, 9, 'Anteil für Konto 2025 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8351, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9526, 9, 'Anteil für Konto 2026 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8352, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9527, 9, 'Anteil für Konto 2027 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8353, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9528, 9, 'Anteil für Konto 2028 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8354, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9529, 9, 'Anteil für Konto 2029 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8355, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9530, 9, 'Anteil für Konto 9910 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8356, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9531, 9, 'Anteil für Konto 9911 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8357, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9532, 9, 'Anteil für Konto 9912 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8358, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9533, 9, 'Anteil für Konto 9913 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8359, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9534, 9, 'Anteil für Konto 9914 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8360, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9535, 9, 'Anteil für Konto 9915 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8361, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9536, 9, 'Anteil für Konto 9916 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8362, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9537, 9, 'Anteil für Konto 9917 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8363, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9538, 9, 'Anteil für Konto 9918 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8364, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9539, 9, 'Anteil für Konto 9919 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8365, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9540, 9, 'Anteil für Konto 0060 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8366, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9541, 9, 'Anteil für Konto 0061 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8367, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9542, 9, 'Anteil für Konto 0062 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8368, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9543, 9, 'Anteil für Konto 0063 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8369, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9544, 9, 'Anteil für Konto 0064 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8370, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9545, 9, 'Anteil für Konto 0065 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8371, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9546, 9, 'Anteil für Konto 0066 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8372, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9547, 9, 'Anteil für Konto 0067 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8373, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9548, 9, 'Anteil für Konto 0068 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8374, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9549, 9, 'Anteil für Konto 0069 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8375, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9550, 9, 'Anteil für Konto 2050 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8376, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9551, 9, 'Anteil für Konto 2051 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8377, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9552, 9, 'Anteil für Konto 2052 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8378, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9553, 9, 'Anteil für Konto 2053 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8379, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9554, 9, 'Anteil für Konto 2054 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8380, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9555, 9, 'Anteil für Konto 2055 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8381, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9556, 9, 'Anteil für Konto 2056 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8382, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9557, 9, 'Anteil für Konto 2057 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8383, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9558, 9, 'Anteil für Konto 2058 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8384, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9559, 9, 'Anteil für Konto 2059 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8385, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9560, 9, 'Anteil für Konto 2060 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8386, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9561, 9, 'Anteil für Konto 2061 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8387, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9562, 9, 'Anteil für Konto 2062 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8388, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9563, 9, 'Anteil für Konto 2063 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8389, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9564, 9, 'Anteil für Konto 2064 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8390, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9565, 9, 'Anteil für Konto 2065 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8391, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9566, 9, 'Anteil für Konto 2066 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8392, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9567, 9, 'Anteil für Konto 2067 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8393, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9568, 9, 'Anteil für Konto 2068 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8394, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9569, 9, 'Anteil für Konto 2069 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8395, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9570, 9, 'Anteil für Konto 2070 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8396, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9571, 9, 'Anteil für Konto 2071 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8397, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9572, 9, 'Anteil für Konto 2072 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8398, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9573, 9, 'Anteil für Konto 2073 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8399, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9574, 9, 'Anteil für Konto 2074 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8400, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9575, 9, 'Anteil für Konto 2075 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8401, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9576, 9, 'Anteil für Konto 2076 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8402, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9577, 9, 'Anteil für Konto 2077 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8403, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9578, 9, 'Anteil für Konto 2078 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8404, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9579, 9, 'Anteil für Konto 2079 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8405, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9580, 9, 'Anteil für Konto 9820 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8406, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9581, 9, 'Anteil für Konto 9821 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8407, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9582, 9, 'Anteil für Konto 9822 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8408, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9583, 9, 'Anteil für Konto 9823 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8409, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9584, 9, 'Anteil für Konto 9824 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8410, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9585, 9, 'Anteil für Konto 9825 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8411, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9586, 9, 'Anteil für Konto 9826 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8412, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9587, 9, 'Anteil für Konto 9827 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8413, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9588, 9, 'Anteil für Konto 9828 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8414, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9589, 9, 'Anteil für Konto 9829 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8415, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9590, 9, 'Anteil für Konto 0080 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8416, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9591, 9, 'Anteil für Konto 0081 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8417, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9592, 9, 'Anteil für Konto 0082 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8418, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9593, 9, 'Anteil für Konto 0083 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8419, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9594, 9, 'Anteil für Konto 0084 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8420, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9595, 9, 'Anteil für Konto 0085 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8421, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9596, 9, 'Anteil für Konto 0086 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8422, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9597, 9, 'Anteil für Konto 0087 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8423, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9598, 9, 'Anteil für Konto 0088 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8424, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9599, 9, 'Anteil für Konto 0089 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8425, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9600, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8426, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9601, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8427, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9602, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8428, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9603, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8429, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9604, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8430, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9605, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8431, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9606, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8432, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9607, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8433, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9608, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8434, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9609, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8435, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9610, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8436, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9611, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8437, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9612, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8438, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9613, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8439, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9614, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8440, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9615, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8441, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9616, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8442, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9617, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8443, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9618, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8444, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9619, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8445, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9620, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8446, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9621, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8447, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9622, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8448, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9623, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8449, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9624, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8450, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9625, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8451, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9626, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8452, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9627, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8453, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9628, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8454, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9629, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8455, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9630, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8456, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9631, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8457, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9632, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8458, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9633, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8459, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9634, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8460, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9635, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8461, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9636, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8462, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9637, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8463, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9638, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8464, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9639, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8465, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9640, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8466, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9641, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8467, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9642, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8468, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9643, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8469, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9644, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8470, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9645, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8471, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9646, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8472, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9647, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8473, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9648, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8474, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9649, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8475, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9650, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8476, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9651, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8477, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9652, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8478, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9653, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8479, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9654, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8480, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9655, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8481, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9656, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8482, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9658, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8483, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9659, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8484, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9660, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8485, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9661, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8486, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9662, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8487, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9663, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8488, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9664, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8489, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9665, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8490, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9666, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8491, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9667, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8492, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9668, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8493, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9669, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8494, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9670, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8495, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9671, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8496, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9672, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8497, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9673, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8498, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9674, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8499, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9675, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8500, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9676, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8501, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9677, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8502, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9678, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8503, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9679, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8504, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9680, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8505, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9681, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8506, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9682, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8507, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9683, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8508, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9684, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8509, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9685, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8510, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9686, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8511, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9687, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8512, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9688, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8513, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9689, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8514, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9690, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8515, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9691, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8516, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9692, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8517, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9693, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8518, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9694, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8519, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9695, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8520, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9696, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8521, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9697, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8522, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9698, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8523, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9699, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8524, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9700, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8525, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9701, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8526, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9702, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8527, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9703, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8528, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9704, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8529, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9705, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8530, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9706, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8531, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9707, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8532, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9708, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8533, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9709, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8534, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9710, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8535, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9711, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8536, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9712, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8537, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9713, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8538, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9714, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8539, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9715, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8540, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9716, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8541, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9717, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8542, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9718, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8543, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9719, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8544, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9720, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8545, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9721, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8546, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9722, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8547, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9723, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8548, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9724, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8549, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9725, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8550, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9726, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8551, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9727, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8552, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9728, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8553, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9729, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8554, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9730, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8555, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9731, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8556, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9732, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8557, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9733, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8558, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9734, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8559, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9735, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8560, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9736, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8561, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9737, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8562, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9738, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8563, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9739, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8564, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9740, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8565, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9741, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8566, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9742, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8567, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9743, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8568, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9744, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8569, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9745, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8570, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9746, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8571, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9747, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8572, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9748, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8573, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9749, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8574, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9750, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8575, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9751, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8576, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9752, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8577, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9753, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8578, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9754, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8579, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9755, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8580, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9756, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8581, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9757, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8582, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9758, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8583, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9759, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8584, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9760, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8585, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9761, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8586, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9762, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8587, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9763, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8588, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9764, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8589, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9765, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8590, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9766, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8591, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9767, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8592, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9768, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8593, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9769, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8594, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9770, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8595, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9771, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8596, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9772, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8597, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9773, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8598, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9774, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8599, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9775, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8600, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9776, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8601, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9777, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8602, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9778, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8603, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9779, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8604, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9780, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8605, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9781, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8606, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9782, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8607, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9783, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8608, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9784, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8609, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9785, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8610, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9786, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8611, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9787, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8612, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9788, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8613, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9789, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8614, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9790, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8615, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9791, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8616, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9792, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8617, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9793, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8618, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9794, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8619, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9795, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8620, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9796, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8621, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9797, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8622, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9798, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8623, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9799, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8624, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9800, 9, 'Abstimmsummenkonto für den Import von Buchungssätzen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8625, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9802, 9, 'Gesamthänderisch gebundene Rücklagen – andere Kapitalkontenanpassungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8626, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9803, 9, 'Gewinnvortrag/Verlustvortrag – andere Kapitalkontenanpassungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8627, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9804, 9, 'Gesamthänderisch gebundene Rücklagen – Umbuchungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8628, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9805, 9, 'Gewinnvortrag/Verlustvortrag – Umbuchungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8629, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9806, 9, 'Zuzurechnender Anteil am Jahresüberschuss/Jahresfehlbetrag – je Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8630, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9807, 9, 'Zuzurechnender Anteil am Bilanzgewinn/Bilanzverlust – je Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8631, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9808, 9, 'Gegenkonto für zuzurechnenden Anteil am Jahresüberschuss/Jahresfehlbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8632, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9809, 9, 'Gegenkonto für zuzurechnenden Anteil am Bilanzgewinn/Bilanzverlust'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8633, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9810, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8634, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9811, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8635, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9812, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8636, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9813, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8637, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9814, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8638, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9815, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8639, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9816, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8640, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9817, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8641, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9818, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8642, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9819, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8643, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9820, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8644, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9821, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8645, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9822, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8646, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9823, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8647, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9824, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8648, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9825, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8649, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9826, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8650, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9827, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8651, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9828, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8652, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9829, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8653, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9830, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8654, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9831, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8655, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9832, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8656, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9833, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8657, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9834, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8658, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9835, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8659, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9836, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8660, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9837, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8661, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9838, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8662, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9839, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8663, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9840, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8664, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9841, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8665, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9842, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8666, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9843, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8667, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9844, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8668, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9845, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8669, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9846, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8670, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9847, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8671, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9848, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8672, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9849, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8673, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9850, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8674, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9851, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8675, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9852, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8676, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9853, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8677, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9854, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8678, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9855, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8679, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9856, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8680, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9857, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8681, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9858, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8682, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9859, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8683, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9860, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8684, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9861, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8685, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9862, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8686, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9863, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8687, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9864, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8688, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9865, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8689, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9866, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8690, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9867, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8691, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9868, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8692, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9869, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8693, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9870, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8694, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9871, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8695, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9872, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8696, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9873, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8697, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9874, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8698, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9875, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8699, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9876, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8700, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9877, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8701, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9878, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8702, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9879, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8703, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9880, 9, 'Ausgleichsposten für aktivierte eigen Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8704, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9882, 9880, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8705, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9883, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8706, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9884, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8707, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9885, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8708, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9886, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommandisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8709, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9887, 9, 'Steueraufwand der Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8710, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9889, 9, 'Gegenkonto zu 9887'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8711, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9890, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8712, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9891, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Soll) – Gegenkonto zu 9890'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8713, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)', 9892, 9, 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8714, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9893, 9, 'Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8715, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9894, 9, 'Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8716, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9895, 9, 'Gegenkonto 9893-9894 für die Aufteilung der Umsatzsteuer (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8717, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9696, 9, 'Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8718, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9897, 9, 'Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8719, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9899, 9, 'Gegenkonto 9896-9897 für die Aufteilung der Vorsteuer (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8720, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9910, 9, 'Gegenkonto zur Minderung der Entnahmen $ 4 (4a) EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8721, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9911, 9, 'Minderung der Entnahmen § 4 (4a) EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8722, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9912, 9, 'Erhöhung der Entnahmen § 4 (4a) EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8723, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9913, 9, 'Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8724, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9916, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8725, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9917, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 3. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8726, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9918, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8727, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9919, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 3. vorangegangenen Wirtschaftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8728, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9960, 9, 'Bewertungskorrektur zu Forderungen aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8729, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9961, 9, 'Bewertungskorrektur zu sonstigen Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8730, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9962, 9, 'Bewertungskorrektur zu Guthaben bei Kreditinstituten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8731, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9963, 9, 'Bewertungskorrektur zu Verbindlichkeiten gegenüber Kreditinstituten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8732, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9964, 9, 'Bewertungskorrektur zu Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8733, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9965, 9, 'Bewertungskorrektur zu sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8734, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9970, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8735, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9971, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben) – Gegenkonto 9970'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8736, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9972, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8737, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9973, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahren, außerbilanziell (Soll) – Gegenkonto zu 9972, 9916, 9917'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8738, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9974, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im vorangegangenen Wirtschaftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8739, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9975, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahren – Gegenkonto 9974, 9918, 9919'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8740, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9976, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8741, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9977, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Soll) – Gegenkonto zu 9976'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8742, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9978, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Soll)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8743, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9979, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Haben) – Gegenkonto zu 9978'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8744, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9980, 9, 'Anteil Belastung au Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8745, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9981, 9, 'Verrechnungskonto für Anteil Belastung auf Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8746, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9982, 9, 'Anteil Gutschrift auf Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8747, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9983, 9, 'Verrechnungskonto für Anteil Gutschrift auf Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8748, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9984, 9, 'Gewinnkorrektur nach § 60 Abs. 2 EstDV – Erhöhung handelsrechtliches Ergebnis durch Habenbuchung – Minderung handelrechtliches Ergebnis durch Sollbuchung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8749, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9985, 9, 'Gegenkonto zu 9984'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8750, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9986, 9, 'Ergebnisverteilung auf Fremdkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8751, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9987, 9, 'Bilanzberichtigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8752, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9989, 9, 'Gegenkonto 9986-9988'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8753, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9990, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8754, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9991, 9, 'Erträge (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8755, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9992, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8756, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9993, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8757, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9994, 9, 'Aufwendungen (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8758, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9995, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8759, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9998, 9, 'Gegenkonto 9990-9997'); From af93fc74846f500b26c96a34b1b3729e0598ef19 Mon Sep 17 00:00:00 2001 From: Marc de Lima Lucio Date: Wed, 26 Sep 2018 17:19:06 +0200 Subject: [PATCH 28/81] FIX: showOptionals: column mismatches --- htdocs/core/class/commonobject.class.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index e9498d52d7d..47fabb6e2dc 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -4524,7 +4524,7 @@ abstract class CommonObject { if (is_array($params) && count($params)>0) { if (array_key_exists('colspan',$params)) { - $colspan=$params['colspan']; + $colspan=$params['colspan'] - 1; } }else { $colspan='3'; @@ -4581,6 +4581,12 @@ abstract class CommonObject if($extrafields->attribute_required[$key]) $label = ''.$label.''; + if(! empty($conf->global->MAIN_VIEW_LINE_NUMBER)) + { + $out .= ' '; + $colspan--; + } + $out .= ''.$langs->trans($label).''; $html_id = !empty($this->id) ? $this->element.'_extras_'.$key.'_'.$this->id : ''; $out .=''; From 2b8ccc0c815391b6e5880dd08fc160578d1ebc39 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 26 Sep 2018 23:44:27 +0200 Subject: [PATCH 29/81] FIX Link template invoice to contract --- htdocs/core/class/commonobject.class.php | 1 + htdocs/core/class/html.form.class.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index f8a57abc769..30a5350a29c 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -2848,6 +2848,7 @@ abstract class CommonObject // Special case if ($origin == 'order') $origin='commande'; if ($origin == 'invoice') $origin='facture'; + if ($origin == 'invoice_template') $origin='facturerec'; $this->db->begin(); diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index 54b378ad281..249acbea2f0 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -6198,6 +6198,7 @@ class Form 'propal'=>array('enabled'=>$conf->propal->enabled, 'perms'=>1, 'label'=>'LinkToProposal', 'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_client, t.total_ht FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$listofidcompanytoscan.') AND t.entity IN ('.getEntity('propal').')'), 'order'=>array('enabled'=>$conf->commande->enabled, 'perms'=>1, 'label'=>'LinkToOrder', 'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_client, t.total_ht FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."commande as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$listofidcompanytoscan.') AND t.entity IN ('.getEntity('commande').')'), 'invoice'=>array('enabled'=>$conf->facture->enabled, 'perms'=>1, 'label'=>'LinkToInvoice', 'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.facnumber as ref, t.ref_client, t.total as total_ht FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."facture as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$listofidcompanytoscan.') AND t.entity IN ('.getEntity('facture').')'), + 'invoice_template'=>array('enabled'=>$conf->facture->enabled, 'perms'=>1, 'label'=>'LinkToTemplateInvoice', 'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.titre as ref, t.total as total_ht FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."facture_rec as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$listofidcompanytoscan.') AND t.entity IN ('.getEntity('facture').')'), 'contrat'=>array('enabled'=>$conf->contrat->enabled , 'perms'=>1, 'label'=>'LinkToContract', 'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, t.ref_supplier, '' as total_ht FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."contrat as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$listofidcompanytoscan.') AND t.entity IN ('.getEntity('contract').')'), 'fichinter'=>array('enabled'=>$conf->ficheinter->enabled, 'perms'=>1, 'label'=>'LinkToIntervention', 'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."fichinter as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$listofidcompanytoscan.') AND t.entity IN ('.getEntity('intervention').')'), 'supplier_proposal'=>array('enabled'=>$conf->supplier_proposal->enabled , 'perms'=>1, 'label'=>'LinkToSupplierProposal', 'sql'=>"SELECT s.rowid as socid, s.nom as name, s.client, t.rowid, t.ref, '' as ref_supplier, t.total_ht FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."supplier_proposal as t WHERE t.fk_soc = s.rowid AND t.fk_soc IN (".$listofidcompanytoscan.') AND t.entity IN ('.getEntity('supplier_proposal').')'), @@ -6260,8 +6261,7 @@ class Form { $objp = $this->db->fetch_object($resqllist); - $var = ! $var; - print ''; + print ''; print ''; print ''; print ''; From 6680fca6c6ea80d98c54c01e19ba1f772c8a1bbc Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 27 Sep 2018 09:13:28 +0200 Subject: [PATCH 30/81] Add missing translation key --- htdocs/langs/en_US/agenda.lang | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/langs/en_US/agenda.lang b/htdocs/langs/en_US/agenda.lang index 4a7ab99ca77..a68bac6d961 100644 --- a/htdocs/langs/en_US/agenda.lang +++ b/htdocs/langs/en_US/agenda.lang @@ -39,6 +39,7 @@ EventRemindersByEmailNotEnabled=Event reminders by email was not enabled into %s ##### Agenda event labels ##### NewCompanyToDolibarr=Third party %s created ContractValidatedInDolibarr=Contract %s validated +CONTRACT_DELETEInDolibarr=Contract %s deleted PropalClosedSignedInDolibarr=Proposal %s signed PropalClosedRefusedInDolibarr=Proposal %s refused PropalValidatedInDolibarr=Proposal %s validated From ff3f1e933ae21796a02eb5adcbc8a8a2ba3fc2b6 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 27 Sep 2018 09:22:38 +0200 Subject: [PATCH 31/81] Update replenish.php --- htdocs/product/stock/replenish.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/product/stock/replenish.php b/htdocs/product/stock/replenish.php index a8721d11c90..891c4fab6f5 100644 --- a/htdocs/product/stock/replenish.php +++ b/htdocs/product/stock/replenish.php @@ -185,7 +185,7 @@ if ($action == 'order' && isset($_POST['valid'])) $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."commande_fournisseur"; $sql.= " WHERE fk_soc = ".$suppliersid[$i]; $sql.= " AND source = 42 AND fk_statut = 0"; - $sql.= " AND entity = ".$conf->entity; + $sql.= " AND entity IN (".getEntity('commande_fournisseur').")"; $sql.= " ORDER BY date_creation DESC"; $resql = $db->query($sql); if($resql && $db->num_rows($resql) > 0) { From e3b1cb9fdb72e62980e2a6545541426021d67566 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 27 Sep 2018 09:25:37 +0200 Subject: [PATCH 32/81] Update facture.class.php --- htdocs/compta/facture/class/facture.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/facture/class/facture.class.php b/htdocs/compta/facture/class/facture.class.php index 277f1c85e40..f90505a58d9 100644 --- a/htdocs/compta/facture/class/facture.class.php +++ b/htdocs/compta/facture/class/facture.class.php @@ -4828,10 +4828,10 @@ class FactureLigne extends CommonInvoiceLine * Warning: If invoice is a replacement invoice, this->fk_prev_id is id of the replaced line. * * @param int $invoiceid Invoice id - * @param bool $include_credit_note + * @param bool $include_credit_note Include credit note or not * @return int >= 0 */ - function get_prev_progress($invoiceid, $include_credit_note = true) + function get_prev_progress($invoiceid, $include_credit_note=true) { if (is_null($this->fk_prev_id) || empty($this->fk_prev_id) || $this->fk_prev_id == "") { return 0; From fee46ac8457ccd1db79615145ce33bb48dc20af3 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Wed, 26 Sep 2018 11:52:06 +0200 Subject: [PATCH 33/81] Update german accounting file to use rowid - fix "TODO Fix this file to use rowid" --- .../mysql/data/llx_accounting_account_de.sql | 15524 ++++++++-------- 1 file changed, 7761 insertions(+), 7763 deletions(-) diff --git a/htdocs/install/mysql/data/llx_accounting_account_de.sql b/htdocs/install/mysql/data/llx_accounting_account_de.sql index 7db879a75cb..9f3ed2ba99d 100644 --- a/htdocs/install/mysql/data/llx_accounting_account_de.sql +++ b/htdocs/install/mysql/data/llx_accounting_account_de.sql @@ -22,7770 +22,7768 @@ -- Descriptif des plans comptables DE SKR03 + SKR04 -- ADD 500000 to rowid # Do no remove this comment -- --- TODO Fix this file to use rowid +-- SKR03 --- SKR03 - -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','RAP',NULL,'Abgenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV',NULL,'Bestandsveränderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','AEL',NULL,'Andere aktivierte Eigenleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','VSK',NULL,'Verrechnete Stoffkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','BA',NULL,'Bilanz - Aktiva',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','BP',NULL,'Bilanz - Passiva',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','GVA',NULL,'Gewinn u. Verlust - Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','GVE',NULL,'Gewinn u. Verlust - Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA','BA','Anlage- und Kapitalkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA','BA','Finanz- und Privatkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA','BA','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA','BA','Bestände an Erzeugnissen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP','BP','Anlage- und Kapitalkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP','BP','Finanz- und Privatkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA','GVA','Abgrenzungskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA','GVA','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA','GVA','Betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA','GVA','Erlöskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE','GVE','Abgrenzungskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K3GVE','GVE','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE','GVE','Erlöskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA01','K0BA','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','1','K0BA01','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA02','K0BA','Aufwendungen für die Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','2','K0BA02','Aufwendungen für die Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA1','K0BA','Immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA11','K0BA1','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','10','K0BA11','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','15','0010','Konzessionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','20','0010','Gewerbliche Schutzrechte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','25','0010','ähnliche Rechte und Werte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','27','0010','EDV-Software',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','30','0010','Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA12','K0BA1','Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','35','K0BA12','Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA13','K0BA1','Geleistete Anzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','38','K0BA13','Anzahlungen auf Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','39','K0BA13','Anzahlungen auf immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA14','K0BA1','Verschmelzungsmehrwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','40','K0BA14','Verschmelzungsmehrwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA2','K0BA','Sachanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA21','K0BA2','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','50','K0BA21','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','59','0050','Grundstücksanteil des häuslichen Arbeitszimmers.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','60','K0BA21','Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','65','0060','Unbebaute Grundstücke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','70','0060','Grundstücksgleiche Rechte - (erbbaurecht Daürwohnrecht)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','75','0060','Grundstücke mit Substanzverzehr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA22','K0BA2','Geleistete Anzahlungen und Anlagen im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','79','K0BA22','Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','80','K0BA21','Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','85','0080','Grundstückswerte eigener bebauter Grundstücke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','90','0080','Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','100','0080','Fabrikbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','110','0080','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','111','0080','Außenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','112','0080','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','113','0080','Einrichtung Fabrik- und Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','115','0080','Andere Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','120','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','129','K0BA22','Anzahlungen auf Geshäfts- Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','140','K0BA21','Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','145','K0BA21','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','146','K0BA21','Aussenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','147','K0BA21','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','148','K0BA21','Einrichtungen für Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','149','K0BA21','Gebäudeteil des häuslichen Arbeitszimmers',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','150','K0BA22','Wohnbauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','159','K0BA22','Anzahlgen auf Wohnbauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','160','K0BA21','Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','165','0160','Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','170','0160','Fabrikbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','175','0160','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','176','0160','Aussenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','177','0160','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','178','0160','Einrichtung für Fabrik- und Geschäftsbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','179','K0BA21','Andere Bauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','180','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','189','K0BA22','Anzahlungen auf Geschäfts- Fabrik- und andere Bauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','190','K0BA21','Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','191','K0BA21','Garagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','192','K0BA21','Aussenanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','193','K0BA21','Hof- und Wegebefestigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','194','K0BA21','Einrichtungen für Wohnbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','195','K0BA22','Wohnbauten im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','199','K0BA22','Anzahlungen a. Wohnbauten auf fremden Grundstücken',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA23','K0BA2','Technische Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','200','K0BA23','Technische Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','210','0200','Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','220','0200','Maschinengebundene Werkzeuge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','240','0200','Maschinelle Anlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','260','0200','Transportanlagen und ähnliches',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','280','0200','Betriebsvorrichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','290','K0BA22','Technische Anlagen und Maschinen im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','299','K0BA22','Anzahlungen auf technische Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA24','K0BA2','Andere Anlagen Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','300','K0BA24','Andere Anlagen Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','310','0300','Andere Anlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','320','0300','PKW',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','350','0300','LKW',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','380','0300','Sonstige Transportmittel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','400','0300','Betriebsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','410','0300','Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','420','0300','Büroeinrichtung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','430','0300','Ladeneinrichtung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','440','0300','Werkzeuge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','450','0300','Einbauten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','460','0300','Gerüst- und Schalungsmaterial',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','480','0300','Geringwertige Wirtschaftsgüter bis 410 Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','490','0300','Sonstige Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','498','K0BA22','Andere Anlagen Betriebs- und Geschäftsausstattung im Bau',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','499','K0BA22','Anzahlungen auf andere Anlagen Betriebs- und Geschäftsausstattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA3','K0BA','Finanzanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA31','K0BA3','Anteile an verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','500','K0BA31','Anteile an verbundenen Unternehmen (Anlagevermögen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','504','K0BA31','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA32','K0BA3','Ausleihungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','505','K0BA32','Ausleihungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA33','K0BA3','Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','510','K0BA33','Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','513','0510','Typisch stille Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','516','0510','Atypisch stille Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','517','0510','Andere Beteiligungen an Kapitalgesellschaften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','518','0510','Andere Beteiligungen an Personengesellschaften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','519','0510','Beteiligung einer GmbH&Co.KG an einer Komplementär GmbH',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA34','K0BA3','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','520','K0BA34','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA35','K0BA3','Wertpapiere des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','525','K0BA35','Wertpapiere des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','530','0525','Wertpapiere mit Gewinnbeteiligungsansprüchen die dem Halbeinkünfteverfahren unterliegen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','535','0525','Festverzinsliche Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA36','K0BA3','Sonstige Ausleihungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','540','K0BA36','Sonstige Ausleihungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','550','0540','Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA37','K0BA3','Genossenschaftsanteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','570','K0BA37','Genossenschaftsanteile zum langfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','580','K0BA36','Ausleihungen an Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','590','K0BA36','Ausleihungen an nahe stehende Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA38','K0BA3','Rückdeckungsansprüche aus Lebensversicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','595','K0BA38','Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP1','K0BP','Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP11','K0BP1','Anleihen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','600','K0BP11','Anleihen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','601','0600','Anleihen nicht konvertibel (bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','605','0600','Anleihen nicht konvertibel (1-5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','610','0600','Anleihen nicht konvertibel (größer 5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','615','0600','Anleihen konvertibel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','616','0600','Anleihen konvertibel(bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','620','0600','Anleihen konvertibel(1-5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','625','0600','Anleihen konvertibel(größer 5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP12','K0BP1','Verbindlichkeiten gegenüber Kreditinstituten oder Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','630','K0BP12','Verbindlichkeiten gegenüber Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','631','0630','Verbindlichkeiten gegenüber Kreditinstitut ( bis 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','640','0630','Verbindlichkeiten gegenüber Kreditinstitut (1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','650','0630','Verbindlichkeiten gegenüber Kreditinstitut (größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','660','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','661','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen ( bis 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','670','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','680','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','690','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','691','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','692','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','693','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','694','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','695','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','696','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','697','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','698','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP13','K0BP1','Verbindlichkeiten gegenüber Kreditinstitut',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','699','K0BP13','Gegenkonto 0630-0689 bei Aufteilung der Konten 0690-0698',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP14','K0BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','700','K0BP14','Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','701','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','705','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','710','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP15','K0BP1','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','715','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','716','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','720','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','725','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP16','K0BP1','Sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','730','K0BP16','Verbindlichkeit gegenüber Gesellschaftern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','731','0730','Verbindlichkeit gegenüber Gesellschaftern ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','740','0730','Verbindlichkeit gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','750','0730','Verbindlichkeit gegenüber Gesellschaftern ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','755','0730','Verbindlichkeit gegenüber Gesellschaftern für offene Ausschüttungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','760','0730','Darlehen typisch stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','761','0730','Darlehen typisch stiller Gesellschafter ( bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','764','0730','Darlehen typisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','767','0730','Darlehen typisch stiller Gesellschafter ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','770','0730','Darlehen atypisch stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','771','0730','Darlehen atypisch stiller Gesellschafter ( bis 1 Jahr)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','774','0730','Darlehen atypisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','777','0730','Darlehen atypisch stiller Gesellschafter ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','780','0730','Partiarische Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','781','0730','Partiarische Darlehen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','784','0730','Partiarische Darlehen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','787','0730','Partiarische Darlehen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','790','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','791','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','792','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','793','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','794','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','795','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','796','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','797','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','798','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','799','0730','Gegenkonto 0730 - 0789 bei Aufteilung der Konten 0790 - 0798',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP2','K0BP','Kapital Kapitalgesellschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP21','K0BP2','Gezeichnetes Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','800','K0BP21','Gezeichnetes Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP22','K0BP2','Ausstehende Einlagen auf das gezeichnete Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','801','K0BP22','Ausstehende Einlagen auf das gezeichnete Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','802','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','803','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','804','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','805','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','806','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','807','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','808','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','809','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','810','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','811','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','812','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','813','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','814','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','815','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','816','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','817','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','818','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','819','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP23','K0BP2','Nicht eingeforderte ausstehende Einlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','820','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','821','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','822','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','823','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','824','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','825','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','826','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','827','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','828','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','829','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP24','K0BP2','Eingeforderte noch ausstehende Kapitaleinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','830','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','831','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','832','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','833','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','834','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','835','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','836','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','837','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','838','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP25','K0BP2','Eingeforderte Nachschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','839','K0BP25','Eingeforderte Nachschüsse ( Forderungen Gegenkonto 0845 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP3','K0BP','Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP31','K0BP3','Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','840','K0BP31','Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','841','0840','Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','842','0840','Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','843','0840','Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','844','0840','Kapitalrücklage durch andere Zuzahlungen in das Eigenkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','845','0840','Eingefordertes Nachschusskapital ( Gegenkonto 0839 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP4','K0BP','Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP41','K0BP4','Gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','846','K0BP41','Gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP42','K0BP4','Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','850','K0BP42','Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP43','K0BP4','Satzungsmässige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','851','K0BP43','Satzungsmässige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP44','K0BP4','Andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','855','K0BP44','Andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','856','K0BP44','Eigenkapitalanteil von Wertaufholungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP45','K0BP4','Gewinnvortrag oder Verlustvortrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','860','K0BP45','Gewinnvortrag vor Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','868','K0BP45','Verlustvortrag vor Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP46','K0BP4','Vortrag auf neue Rechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','869','K0BP46','Vortrag auf neue Rechnung (Bilanz)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP5','K0BP','Kapital Personenhandelsgesellschaft vollhafter/Einzelunternehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','870','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','871','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','872','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','873','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','874','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','875','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','876','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','877','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','878','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','879','K0BP5','Festkapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','880','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','881','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','882','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','883','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','884','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','885','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','886','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','887','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','888','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','889','K0BP5','Variables Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','890','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','891','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','892','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','893','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','894','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','895','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','896','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','897','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','898','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','899','K0BP5','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP6','K0BP','Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','900','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','901','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','902','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','903','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','904','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','905','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','906','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','907','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','908','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','909','K0BP6','Kommandit-Kapital',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','910','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','911','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','912','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','913','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','914','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','915','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','916','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','917','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','918','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','919','K0BP6','Verlustausgleichskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','920','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','921','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','922','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','923','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','924','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','925','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','926','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','927','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','928','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','929','K0BP6','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP7','K0BP','Sonderposten mit Rücklageanteil',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP71','K0BP7','Sonderposten mit Rücklageanteil',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','930','K0BP71','Sonderposten mit Rücklageanteil steuerfreie Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','931','K0BP71','Sonderposten mit Rücklageanteil nach § 6b EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','932','K0BP71','Sonderposten mit Rücklageanteil nach Abschnitt 35 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','933','K0BP71','Sonderposten mit Rücklageanteil nach § 6d EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','934','K0BP71','Sonderposten mit Rücklageanteil nach § 1 EntwLStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP72','K0BP7','Sonderposten aus der Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','935','K0BP72','Sonderposten aus der Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','936','K0BP71','Sonderposten mit Rücklageanteil nach § 7 d EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','937','K0BP71','Sonderposten mit Rücklageanteil nach § 79 EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','938','K0BP71','Sonderposten mit Rücklageanteil nach § 80 EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','939','K0BP71','Sonderposten mit Rücklageanteil nach § 52 Abs.16 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','940','K0BP71','Sonderposten mit Rücklageanteil Sonderabschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','941','K0BP71','Sonderposten mit Rücklageanteil § 82 a EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','942','K0BP71','Sonderposten mit Rücklageanteil § 82 d EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','943','K0BP71','Sonderposten mit Rücklageanteil nach § 82 e EStDV',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','944','K0BP71','Sonderposten mit Rücklageanteil nach § 14 BerlinFG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','945','K0BP71','Sonderposten mit Rücklageanteil für Förderung nach § 3 Zonen-RFG/§ 4-6 FördergebietsG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','946','K0BP71','Sonderposten mit Rücklageanteil nach § 4d EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','947','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.1 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','948','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.3 u.7 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K0BP73','K0BP7','Sonderposten für Zuschüsse und Zulagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','949','K0BP73','Sonderposten für Zuschüsse und Zulagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP8','K0BP','Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP81','K0BP8','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','950','K0BP81','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP82','K0BP8','Steuerrückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','955','K0BP82','Steuerrückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','957','0955','Gewerbesteuerrückstellung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','963','0955','Körperschaftsteuerrückstellung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP83','K0BP8','Sonstige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','965','K0BP83','Rückstellungen für Personalkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','966','K0BP83','Rückstellungen zur Erfüllung der Aufbewahrungspflichten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','969','K0BP82','Rückstellung für latente Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','970','K0BP83','Sonstige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','971','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung in den ersten drei Monaten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','972','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung innerhalb des 4. bis 12. Monats',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','973','K0BP83','Rückstellungen für Abraum- und Abfallbeseitigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','974','K0BP83','Rückstellungen für Gewährleistungen ( Gegenkonto 4790 )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','976','K0BP83','Rückstellungen für drohende Verluste aus schwebenden Geschäften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','977','K0BP83','Rückstellungen für Abschluss- und Prüfungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','978','K0BP83','Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','979','K0BP83','Rückstellungen für Umweltschutz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA4','K0BA','Abgenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA41','K0BA4','Rechnungsabgrenzungsposten (Aktiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','980','K0BA41','Aktive Rechnungsabgrenzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K0BA42','K0BA4','Abgrenzung latenter Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','983','K0BA42','Abgrenzung aktive latente Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','984','K0BA41','Als Aufwand berücksichtigte Zölle und Verbrauchsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','985','K0BA41','Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','986','K0BA41','Damnum / Disagio',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP9','K0BP','Abgenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K0BP91','K0BP9','Rechnungsabgrenzungsposten (Passiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','990','K0BP91','Passive Rechnungsabgrenzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','RAP1','RAP','Sonstige Aktiva oder sonstige Passiva',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','992','RAP1','Abgenzungsposten zur unterjährigen Kostenverrechnung für BWA',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','RAP2','RAP','Forderungen aus Lieferungen und Leistungen H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','996','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','997','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','998','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','999','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA1','K1BA','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA11','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1000','K1BA11','Kasse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1010','1000','Nebenkasse 1',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1020','1000','Nebenkasse 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA12','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks oder Verbindlichkeiten gegenüber Kreditinstituten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1100','K1BA12','Postbank',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1110','1100','Postbank 1',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1120','1100','Postbank 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1130','1100','Postbank 3',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1190','1100','LZB-Guthaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1195','1100','Bundesbankguthaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1200','K1BA12','Bank',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1201','1200','Bank Kontobewegung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1202','1200','Bank nicht identifizierte Zahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1203','1200','Bank nicht zugeordnete Zahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1210','1200','Bank 1',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1220','1200','Bank 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1230','1200','Bank 3',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1240','1200','Bank 4',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1250','1200','Bank 5',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1290','1200','Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1295','1200','Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA13','K1BA1','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1300','K1BA13','Wechsel aus Lieferung und Leistung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1301','K1BA13','Wechsel aus Lieferung und Leistung bis 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1302','K1BA13','Wechsel aus Lieferung und Leistung größer 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1305','K1BA13','Wechsel aus Lieferung und Leistung Bundesbankfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA14','K1BA1','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1310','K1BA14','Besitzwechsel gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1311','K1BA14','Besitzwechsel gegen verbundene Unternehmen bis 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1312','K1BA14','Besitzwechsel gegen verbundene Unternehmen größer 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1315','K1BA14','Besitzwechsel gegen verbundene Unternehmen Bundesbankfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA15','K1BA1','Forderungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1320','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1321','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bis 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1322','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht größer 1 Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1325','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bundesbankfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA16','K1BA1','Sonstige Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1327','K1BA16','Finanzwechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1329','K1BA16','Andere Wertpapiere mit unwesentlichen Wertschwankungen im Sinne Textziffer 18 DRS 2',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA17','K1BA1','Kassenbestand Bundesbankguthaben Guthaben bei Kreditinstituten und Schecks',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1330','K1BA17','Schecks',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1332','K1BA17','Bezahlung selektiert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA2','K1BA','Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA21','K1BA2','Anteile an verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1340','K1BA21','Anteile an verbundenen Unternehmen (Umlaufvermögen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1344','K1BA21','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA22','K1BA2','Eingene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1345','K1BA22','Eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA23','K1BA2','Sonstige Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1348','K1BA23','Sonstige Wertpapiere',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1349','K1BA23','Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA3','K1BA','Forderungen und sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA31','K1BA3','Sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1350','K1BA31','GmbH-Anteile zum kurzfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1352','K1BA31','Genossenschaftsanteile zum kurzfristigen Verbleib',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1355','K1BA31','Ansprüche aus Rückdeckungsversicherung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA32','K1BA3','Sonstige Vermögensgegenstände oder sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1360','K1BA32','Geldtransit',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1370','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG ergebniswirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1371','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG nicht ergebniswirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1372','K1BA32','Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1380','K1BA32','überleitungskonto Kostenstelle',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1390','K1BA32','Verrechnungskonto Ist-Versteuerung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA33','K1BA3','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1400','K1BA33','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1401','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1402','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1403','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1404','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1405','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1406','1400','Forderungen aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1410','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1411','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1412','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1413','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1414','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1415','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1416','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1417','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1418','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1419','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1420','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1421','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1422','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1423','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1424','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1425','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1426','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1427','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1428','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1429','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1430','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1431','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1432','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1433','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1434','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1435','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1436','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1437','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1438','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1439','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1440','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1441','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1442','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1443','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1444','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1445','1400','Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmens (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1446','1400','Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1447','1400','Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1448','1400','Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1449','1400','Gegenkonto 1445-1448 bei Aufteilung der Forderungen nach Steuersätzen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1450','1400','Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1451','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1452','1400','Projekt Werte in Arbeit',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1455','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1460','1400','Zweifelhafte Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1461','1400','Zweifelhafte Forderungen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1465','1400','Zweifelhafte Forderungen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA34','K1BA3','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1470','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1471','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1475','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA35','K1BA3','Forderungen gegen verbundene Unternehmen H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1478','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1479','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA36','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1480','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1481','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1485','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA37','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1488','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1489','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1490','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1491','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1495','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA38','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1498','K1BA38','Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA39','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo oder sonstige Verbindlichkeiten S-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1499','K1BA39','Gegenkonto 1451 - 1497 bei Aufteilung Debitorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1500','K1BA31','Sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1501','1500','Sonstige Vermögensgegenstände ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1502','1500','Sonstige Vermögensgegenstände ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1503','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1504','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1505','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1506','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1507','1500','Forderungen gegen Gesellschafter ( bis 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1508','1500','Forderungen gegen Gesellschafter ( größer 1Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA3a','K1BA3','Geleistete Anzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1510','K1BA3a','Geleistete Anzahlungen auf Vorräte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1511','1510','Geleistete Anzahlungen 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1516','1510','Geleistete Anzahlungen 15% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1517','1510','Geleistete Anzahlungen 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1518','1510','Geleistete Anzahlungen 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1520',NULL,'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1521','K1BA31','Agenturwarenabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1525','K1BA32','Kautionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1526','K1BA33','Kautionen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1527','K1BA34','Kautionen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1528','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 2 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1529','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 2 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1530','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1531','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1537','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1540','K1BA31','Steuerüberzahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1542','K1BA31','Steuererstattungsansprüche gegenüber anderen EG-Ländern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1543','K1BA31','Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1545','K1BA31','Umsatzsteuerforderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1547','K1BA31','Forderungen aus entrichteten Verbrauchsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1548','K1BA32','Vorsteuer im Folgejahr abziehbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1549','K1BA31','Körperschaftsteuerrückforderung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1550','K1BA31','Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1551','K1BA31','Darlehen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1555','K1BA31','Darlehen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1556','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1557','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1558','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1559','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1560','K1BA32','Aufzuteilende Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1561','K1BA32','Aufzuteilende Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1562','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1563','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1565','K1BA32','Aufzuteilende Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1566','K1BA32','Aufzuteilende Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1567','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1568','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 16 %',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1569','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1570','K1BA32','Abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1571','K1BA32','Abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1572','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1573','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1574','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1575','K1BA32','Abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1576','K1BA32','Abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1577','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1578','K1BA32','Abziehbare Vorsteuer nach § 13b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1579','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1580','K1BA32','Gegenkonto Vorsteuer § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1581','K1BA32','Auflösung Vorsteuer aus Vorjahr § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1582','K1BA32','Vorsteuer aus Investitionen § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1583','K1BA32','Gegenkonto für Vorsteuer nach Durchschnittssätzen für § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1584','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferabten ohne Umsatzsteuer-Identifikationsnummer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1585','K1BA32','Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1587','K1BA32','Vorsteuer nach allgemeinen Durchschnittssätzen UStVA Kz. 63',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1588','K1BA32','Bezahlte Einfuhrumsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1590','K1BA32','Durchlaufende Posten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1591','K1BA32','Durchlaufende Posten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1592','K1BA32','Fremdgeld',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K1BA3b','K1BA3','Sonstige Verbindlichkeiten S-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1593','K1BA3b','Verrechnungskonto erhaltene Anzahlungen bei Buchung über Debitorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1594','K1BA34','Forderungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1595','1594','Forderungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1596','1594','Forderungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1597','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1598','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Asset','1599','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP1','K1BP','Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP11','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen oder sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1600','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1601','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1602','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1603','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1605','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1606','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1607','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1609','1600','Gegenkonto 1605 - 1607 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1610','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1611','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1612','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1613','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1614','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1615','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1616','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1617','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1618','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1619','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1620','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1621','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1622','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1623','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1624','1600','Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1625','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1626','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1628','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP12','K1BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1630','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1631','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1635','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1638','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP13','K1BP1','Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1640','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1641','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1645','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1648','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1650','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1651','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1655','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1658','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP14','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen S-Saldo oder sonstige Vermögensgegenstände H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1659','K1BP14','Gegenkonto 1625 - 1658 bei Aufteilung Kreditorenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP15','K1BP1','Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1660','K1BP15','Schuldwechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1661','K1BP15','Schuldwechsel ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1680','K1BP15','Schuldwechsel ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1690','K1BP15','Schuldwechsel ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP16','K1BP1','Sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1700','K1BP16','Sonstige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1701','1700','Sonstige Verbindlichkeiten ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1702','1700','Sonstige Verbindlichkeiten ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1703','1700','Sonstige Verbindlichkeiten ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1704','1700','Sonstige Verbindlichkeiten z.B. nach § 11 Abs. 2 Satz 2 EStG für 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1705','1700','Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1706','1700','Darlehen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1707','1700','Darlehen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1708','1700','Darlehen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP17','K1BP1','Sonstige Verbindlichkeiten oder sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1709','K1BP17','Gewinnverfügungskonto stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP18','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Passiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1710','K1BP18','Erhaltene Anzahlungen ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1711','1710','Erhaltene versteuerte Anzahlungen 7% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1716','1710','Erhaltene versteuerte Anzahlungen 15% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1717','1710','Erhaltene versteuerte Anzahlungen 16% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1718','1710','Erhaltene versteuerte Anzahlungen 19% USt ( Verbindlichkeiten )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1719','1710','Erhaltene Anzahlungen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1720','1710','Erhaltene Anzahlungen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1721','1710','Erhaltene Anzahlungen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP19','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Aktiva)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1722','K1BP19','Erhaltene Anzahlungen (von Vorräten offen abgesetzt)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1730','K1BP16','Kreditkartenabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1731','K1BP16','Agenturwarenabrechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1732','K1BP16','Erhaltene Kautionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1733','K1BP16','Erhaltene Kautionen ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1734','K1BP16','Erhaltene Kautionen ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1735','K1BP16','Erhaltene Kautionen ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1736','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1737','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1738','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1739','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1740','K1BP16','Verbindlichkeiten aus Lohn und Gehalt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1741','K1BP17','Verbindlichkeiten aus Lohn- und Kirchensteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1742','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1743','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1744','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1745','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1746','K1BP16','Verbindlichkeiten aus Einbehaltungen ( KapESt und SolZ auf KapESt )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1747','K1BP16','Verbindlichkeiten für Verbrauchsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1748','K1BP16','Verbindlichkeiten für Einbehaltungen von Arbeitnehmern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1749','K1BP16','Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1750','K1BP16','Verbindlichkeiten aus Vermögensbildung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1751','K1BP16','Verbindlichkeiten aus Vermögensbildung ( bis 1 Jahr )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1752','K1BP16','Verbindlichkeiten aus Vermögensbildung ( 1 bis 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1753','K1BP16','Verbindlichkeiten aus Vermögensbildung ( größer 5 Jahre )',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1754','K1BP16','Steuerzahlungen an andere EG-Länder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1755','K1BP17','Lohn- und Gehaltsverrechnungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1756','1755','Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4/3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1759','1755','Voraussichtliche Beitragsschuld gegenüber den sozialversicherungsträgern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP1a','K1BP1','Steuerrückstellungen oder sonstige Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1760','K1BP1a','Umsatzsteuer nicht fällig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1761','K1BP1a','Umsatzsteuer nicht fällig 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1762','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1763','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1764','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1765','K1BP1a','Umsatzsteuer nicht fällig 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1766','K1BP1a','Umsatzsteuer nicht fällig 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1767','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1768','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen sonstigen Leistungen / Werklieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1769','K1BP17','Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1770','K1BP17','Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1771','K1BP17','Umsatzsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1772','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1773','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1774','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1775','K1BP17','Umsatzsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1776','K1BP17','Umsatzsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1777','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1778','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1779','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb Vorsteuerabzug',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1780','K1BP17','Umsatzsteuer-Vorauszahlungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1781','K1BP17','Umsatzsteuer-Vorauszahlung 1/11',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1782','K1BP17','Nachsteuer UstVA Kz. 65',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1783','K1BP17','In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerveträge UstVA Kz. 69',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1784','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1785','K1BP17','Umsatzsteuer nach § 13b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1786','K1BP17','Umsatzsteuer nach § 13b UStG 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1787','K1BP17','Umsatzsteuer nach § 13b UStG 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1788','K1BP17','Einfuhrumsatzsteuer aufgeschoben bis',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1789','K1BP17','Umsatzsteuer laufendes Jahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1790','K1BP17','Umsatzsteuer Vorjahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1791','K1BP17','Umsatzsteuer frühere Jahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1792','K1BP17','Sonstige Verrechnungskonten (Interimskonten)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Liability','K1BP1b','K1BP1','Sonstige Vermögensgegenstände H-Saldo',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1793','K1BP1b','Verrechnungskonto geleistete Anzahlungen bei Buchung über Kreditkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Liability','1795','K1BP1b','Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K1BP2','K1BP','Privat Vollhafter / Einzelunternehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1800','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1801','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1802','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1803','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1804','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1805','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1806','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1807','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1808','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1809','K1BP2','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1810','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1811','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1812','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1813','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1814','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1815','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1816','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1817','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1818','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1819','K1BP2','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1820','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1821','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1822','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1823','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1824','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1825','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1826','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1827','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1828','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1829','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1830','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1831','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1832','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1833','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1834','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1835','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1836','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1837','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1838','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1839','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1840','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1841','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1842','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1843','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1844','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1845','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1846','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1847','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1848','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1849','K1BP2','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1850','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1851','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1852','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1853','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1854','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1855','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1856','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1857','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1858','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1859','K1BP2','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1860','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1861','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1862','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1863','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1864','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1865','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1866','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1867','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1868','K1BP2','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1869','K1BP2','Grundstücksaufwand (Umsatzsteuerschlüssel möglich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1870','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1871','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1872','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1873','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1874','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1875','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1876','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1877','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1878','K1BP2','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1879','K1BP2','Grundstücksertrag (Umsatzsteuerschlüssel möglich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1880','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1881','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1882','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1883','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1884','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1885','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1886','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1887','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1888','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1889','K1BP2','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1890','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1891','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1892','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1893','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1894','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1895','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1896','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1897','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1898','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1899','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1900','K1BP2','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','K1BP3','K1BP','Privat Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1900','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1901','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1902','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1903','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1904','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1905','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1906','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1907','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1908','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1909','K1BP3','Privatentnahmen allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1910','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1911','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1912','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1913','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1914','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1915','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1916','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1917','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1918','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1919','K1BP3','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1920','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1921','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1922','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1923','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1924','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1925','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1926','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1927','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1928','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1929','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1930','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1931','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1932','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1933','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1934','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1935','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1936','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1937','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1938','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1939','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1940','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1941','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1942','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1943','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1944','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1945','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1946','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1947','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1948','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1949','K1BP3','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1950','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1951','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1952','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1953','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1954','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1955','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1956','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1957','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1958','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1959','K1BP3','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1960','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1961','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1962','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1963','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1964','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1965','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1966','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1967','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1968','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1969','K1BP3','Grundstücksaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1970','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1971','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1972','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1973','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1974','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1975','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1976','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1977','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1978','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1979','K1BP3','Grundstücksertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1980','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1981','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1982','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1983','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1984','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1985','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1986','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1987','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1988','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1989','K1BP3','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1990','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1991','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1992','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1993','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1994','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1995','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1996','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1997','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1998','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','1','Owner''s Equity','1999','K1BP3','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA1','K2GVA','Außerordentliche Aufwendungen i.S.d. BiRiLiG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA11','K2GVA1','Außerordentliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2000','K2GVA11','Außerordentliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2001','K2GVA11','Außerordentliche Aufwendungen finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2005','K2GVA11','Außerordentliche Aufwendungen nicht finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA2','K2GVA','Betriebsfremde und periodenfremde Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA21','K2GVA2','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2010','K2GVA21','Betriebsfremde Aufwendungen (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2020','K2GVA21','Periodenfremde Aufwendungen (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA3','K2GVA','Zinsen und ähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA31','K2GVA3','Zinsen und ähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2100','K2GVA31','Zinsen und ähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2103','2100','Steuerlich abzugsfähige andere Nebenleistungen zu steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2104','2100','Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2107','2100','Zinsaufwendungen § 233a AO betriebliche Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2108','2100','Zinsaufwendungen §§ 233a bis 237 AO Personensteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2109','2100','Zinsaufwendungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2110','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2113','2100','Nicht abzugsfähige Schuldzinsen gemäß § 4 Abs. 4a EStG (Hinzurechnungsbetrag)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2115','2100','Zinsen und ähnliche Aufwendungen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2116','2100','Zinsen und ähnliche Aufwendungen an verbundene Unternehmen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2118','2100','In Dauerschuldzinsen umqualifizierte Zinsen auf kurzfristige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2119','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2120','2100','Zinsaufwendungen für langfristige Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2125','2100','Zinsaufwendungen für Gebäude die zum Betriebsvermögen gehören',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2126','2100','Zinsen zur Finanzierung des Anlagevermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2127','2100','Renten und dauernde Lasten aus Gründung / Erwerb §8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2128','2100','Zinsaufwendungen an Mitunternehmer für die Hingabe von Kapital § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2129','2100','Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2130','2100','Diskontaufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2139','2100','Diskontaufwendungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2140','2100','Zinsähnliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2149','2100','Zinsähnliche Aufwendungen an verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA32','K2GVA3','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2150','K2GVA32','Aufwendungen aus Kursdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2166','K2GVA32','Aufwendungen Bewertung Finanzmittelfonds',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2170','K2GVA32','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2171','K2GVA32','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2175','K2GVA32','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2176','K2GVA33','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA4','K2GVA','Steueraufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA41','K2GVA4','Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2200','K2GVA41','Körperschaftsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2203','K2GVA41','Körperschaftsteuer für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2204','K2GVA41','Körperschaftsteuererstattungen für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2208','K2GVA41','Solidaritätszuschlag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2209','K2GVA41','Solidaritätszuschlag für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2210','K2GVA41','Solidaritätszuschlag für Vorjahre für Vorjahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2212','K2GVA41','Kapitalertragsteuer 20%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2213','K2GVA41','Kapitalertragsteuer 25%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2214','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 20%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2215','K2GVA41','Zinsabschlagsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2216','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2218','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Zinsabschlagsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2219','K2GVA41','Ausländische Quellensteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2280','K2GVA41','Steuernachzahlungen Vorjahre für Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2282','K2GVA41','Steuererstattungen Vorjahre für Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2284','K2GVA41','Erträge aus der Auflösung von Rückstellungen für Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA42','K2GVA4','Sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2285','K2GVA41','Steuernachzahlungen Vorjahre für sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2287','K2GVA41','Steuererstattungen Vorjahre für sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2289','K2GVA41','Erträge aus der Auflösung von Rückstellungen für sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA5','K2GVA','Sonstige Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA51','K2GVA5','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2300','K2GVA51','Sonstige Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2307','2300','Sonstige Aufwendungen betriebsfremde und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2309','2300','Sonstige Aufwendungen unregelmässig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2310','2300','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2311','2300','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2312','2300','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2313','2300','Anlagenabgänge Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Restbuchwert bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA52','K2GVA5','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2315','K2GVA52','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2316','K2GVA52','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2317','K2GVA52','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2318','K2GVA52','Anlagenabgänge Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Restbuchwert bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2320','K2GVA51','Verluste aus dem Abgang von Gegenständen des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2323','K2GVA51','Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2325','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2326','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2327','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens nach §4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2328','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) nach §4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2340','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2341','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2342','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2345','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2346','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (§ 52 Abs. 16 EStG)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2348','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2349','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2350','K2GVA51','Grundstücksaufwendungen neutral',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA53','K2GVA5','Sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2375','K2GVA53','Grundsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2380','K2GVA51','Zuwendungen Spenden steuerlich nicht abziehbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2381','K2GVA51','Zuwendungen Spenden für wissenschaftliche und kulturelle Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2382','K2GVA51','Zuwendungen Spenden für mildtätige Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2383','K2GVA51','Zuwendungen Spenden für kirchliche religiöse und gemeinnützige Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2384','K2GVA51','Zuwendungen Spenden an politische Parteien',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2385','K2GVA51','Nicht abziehbare Hälfte der Aufsichtsratsvergütungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2386','K2GVA51','Abziehbare Aufsichtsratsvergütung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2387','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 1-3 AO',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2388','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 4 AO',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2389','K2GVA51','Zuwendungen Spenden an Stiftungen für kirchliche religiöse und gemeinnützige Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2390','K2GVA51','Zuwendungen Spenden an Stiftungen für wissenschaftliche mildtätige kulturelle Zwecke',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2400','K2GVA51','Forderungsverluste (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2401','2400','Forderungsverluste 7% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2402','2400','Forderungsverluste aus steuerfreien EG-Lieferungen (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2403','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 7% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2404','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 16% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2405','2400','Forderungsverluste 16% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2406','2400','Forderungsverluste 19% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2407','2400','Forderungsverluste 15% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2408','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 19% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2409','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 15% USt (übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA54','K2GVA5','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2430','K2GVA54','Forderungsverluste unüblich hoch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2450','K2GVA51','Einstellung in die Pauschalwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2451','K2GVA51','Einstellung in die Einzelwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA55','K2GVA5','Aufwendungen aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2490','K2GVA55','Aufwendungen aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA56','K2GVA5','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2492','K2GVA56','Abgeführte Gewinne auf Grund einer Gewinngemeinschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2493','K2GVA56','Abgeführte Gewinnanteile an stille Gesellschafter § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2494','K2GVA56','Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA57','K2GVA5','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2495','K2GVA57','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA58','K2GVA5','Einstellung in Gewinnrücklagen in die gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2496','K2GVA58','Einstellung in die gesetzliche Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA59','K2GVA5','Einstellung in Gewinnrücklagen in satzungsmäßige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2497','K2GVA59','Einstellungen in satzungsmäßige Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA5a','K2GVA5','Einstellung in Gewinnrücklagen in die Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2498','K2GVA5a','Einstellung in die Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K2GVA5b','K2GVA5','Einstellung in Gewinnrücklagen in andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Expense','2499','K2GVA5b','Einstellung in andere Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE1','K2GVE','Außerordentliche Erträge i. S. d. BiRiLiG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE11','K2GVE1','Außerordentliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2500','K2GVE11','Außerordentliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2501','K2GVE11','Außerordentliche Erträge finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2505','K2GVE11','Außerordentliche Erträge nicht finanzwirksam',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE2','K2GVE','Betriebsfremde und periodenfremde Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE21','K2GVE2','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2510','K2GVE21','Betriebsfremde Erträge (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2520','K2GVE21','Periodenfremde Erträge (soweit nicht außerordentlich)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE3','K2GVE','Zinsertäge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE31','K2GVE3','Erträge aus Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2600','K2GVE31','Erträge aus Beteiligungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2615','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung 100% / 50% steuerfrei) (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2616','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2617','2600','Gewinne aus Anteilen an nicht steuerbefreiten inländischen Kapitalgesellschaften § 9 Nr. 2a GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2618','2600','Gewinnanteile aus Mitunternehmerschaften § 9 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2619','2600','Erträge aus Beteiligungen an verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE32','K2GVE3','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2620','K2GVA32','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2625','2620','laufende Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2626','2620','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2649','2620','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE33','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2650','K2GVA33','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2655','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2656','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2657','2650','Zinserträge § 233a AO',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2658','2650','Zinserträge § 233a AO Sonderfall Anlage A KSt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2659','2650','Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE34','K2GVE3','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2660','K2GVA34','Erträge aus Kursdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2661','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2662','K2GVA34','Realisierte Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2663','K2GVA34','Produkt Rechnung Preisdifferenz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2664','K2GVA34','Realisierte Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2665','K2GVA34','Erträge a. Währungsumstellung auf Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2666','K2GVA34','Erträge aus Bewertung Finanzmittelfonds',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2667','K2GVA34','Bank Währungsverlust (Konto)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2668','K2GVA34','Währungsdifferenz zum Kontenausgleich',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2669','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE35','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2670','K2GVA35','Diskonterträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2671','K2GVA35','Bank Bewertungsertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2672','K2GVA35','Rundungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2673','K2GVA35','Kassendifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2679','K2GVA35','Diskonterträge verbundene Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2680','K2GVA35','Zinsähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2689','K2GVA35','Zinsähnliche Erträge aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4','K2GVE','Sonstige Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE41','K2GVE4','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2700','K2GVA41','Sonstige Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2705','2700','Sonstige Erträge betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2707','2700','Sonstige Erträge betriebsfremd und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2709','2700','Sonstige Erträge unregelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2710','2700','Erträge aus Zuschreibungen des Sachanlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2711','2700','Erträge aus Zuschreibungen des immateriellen Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2712','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2713','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2714','2700','Erträge aus Zuschreibungen des anderen Anlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2715','2700','Erträge aus Zuschreibungen des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2716','2700','Erträge aus Zuschreibungen des Umlaufvermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2720','2700','Erträge aus dem Abgang von Gegenständen des Anlagevermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2723','2700','Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2725','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2726','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2730','2700','Erträge aus Herabsetzung der Pauschalwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2731','2700','Erträge aus Herabsetzung der Einzelwertberichtigung zu Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2732','2700','Erträge aus abgeschriebenen Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2733','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2734','2700','Erträge aus der steuerlich niedrigeren Bewertung von Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2735','2700','Erträge aus der Auflösung von Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2736','2700','Erträge aus der steuerlich niedrigeren Bewertung von Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2737','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (aus der Währungsumstellung auf den Euro)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2738','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2739','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2740','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2741','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2742','2700','Versicherungsentschädigungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2743','2700','Investitionszuschüsse (steuerpflichtig)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2744','2700','Investitionszulagen (steuerfrei)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE42','K2GVE4','Erträge aus Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2745','K2GVE42','Erträge aus Kapitalherabsetzung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2746','K2GVE41','Steuerfreie Erträge aus der Auflösung von Sonderposten mit Rücklageanteil',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2747','K2GVE41','Sonstige steuerfreie Betriebseinnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','2749','K2GVE41','Erstattungen Aufwendungsausgleichsgesetz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2750','K2GVE41','Grundstückserträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE43','K2GVE4','Erträge aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2790','K2GVE43','Erträge aus Verlustübernahme',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE44','K2GVE4','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2792','K2GVE44','Erhaltene Gewinne auf Grund einer Gewinngemeinschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2794','K2GVE44','Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE45','K2GVE4','Entnahmen aus der Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2795','K2GVE45','Entnahmen aus der Kapitalrücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE46','K2GVE4','Entnahmen aus Gewinnrücklagen aus der gesetzlichen Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2796','K2GVE46','Entnahmen aus der gesetzlichen Rücklage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE47','K2GVE4','Entnahmen aus Gewinnrücklagen aus satzungsmäßigen Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2797','K2GVE47','Entnahmen aus satzungsmäßigen Rücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE48','K2GVE4','Entnahmen aus Gewinnrücklagen aus der Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2798','K2GVE48','Entnahmen aus der Rücklage für eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE49','K2GVE4','Entnahmen aus Gewinnrücklagen aus anderen Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2799','K2GVE49','Entnahmen aus anderen Gewinnrücklagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4a','K2GVE4','Gewinnvortrag oder Verlustvortrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2860','K2GVE4a','Gewinnvortrag nach Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2868','K2GVE4a','Verlustvortrag nach Verwendung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4b','K2GVE4','Vortrag auf neue Rechnung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2869','K2GVE4b','Vortrag auf neue Rechnung (GuV)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE4c','K2GVE4','Ausschüttung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2870','K2GVE4c','Vorabausschüttung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE5','K2GVE','Verrechnete kalkulatorische Kosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE51','K2GVE5','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2890','K2GVE51','Verrechneter kalkulatorischer Unternehmerlohn',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2891','K2GVE51','Verrechnete kalkulatorische Miete und Pacht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2892','K2GVE51','Verrechnete kalkulatorische Zinsen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2893','K2GVE51','Verrechnete kalkulatorische Abschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2894','K2GVE51','Verrechnete kalkulatorische Wagnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2895','K2GVE51','Verrechneter kalkulatorische Lohn für unentgeltliche Mitarbeiter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K2GVE52','K2GVE5','Sonstige betriebliche Erträge oder sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','2','Revenue','2990','K2GVE52','Aufwendungen/Erträge aus Umrechnungsdifferenzen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA1','K3GVA','Materialaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA11','K3GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3000','K3GVA11','Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3090','K3GVA11','Energiestoffe (Fertigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA12','K3GVA1','Aufwendungen für bezogene Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3100','K3GVA12','Fremdleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA2','K3GVA','Umsätze für die als Leistungsemfänger die Steuer nach § 13b Abs. 2 UStG geschuldet wird',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA21','K3GVA2','Aufwendungen für bezogene Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','3106','K3GVA12','Fremdleistungen 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3110','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3115','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3120','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3121','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3122','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3125','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3126','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3127','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3130','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3135','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3140','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3141','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3142','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3145','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3146','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3147','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3150','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3151','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3152','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3153','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K3GVA22','K3GVA2','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3200','K3GVA22','Wareneingang',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3300','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3301','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3302','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3303','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3304','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3305','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3306','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3307','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3308','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3309','3200','Wareneingang 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3340','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3341','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3342','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3343','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3344','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3345','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3346','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3347','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3348','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3349','3200','Wareneingang 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3400','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3401','3200','Produkt Ausgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3402','3200','Produkt Vertriebsausgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3403','3200','Konto Kasse Aufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3404','3200','Einstandskosten Verrechnungskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3405','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3406','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3407','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3408','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3409','3200','Wareneingang 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3420','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3421','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3422','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3423','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3424','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3425','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3426','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3427','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3428','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3429','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3430','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3433','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3434','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3435','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3440','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3441','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3500','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3501','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3502','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3503','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3504','3200','Wareneingang 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3505','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3506','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3507','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3508','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3509','3200','Wareneingang 5 5% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3530','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3531','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3532','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3533','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3534','3200','Wareneingang 9% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3540','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3541','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3542','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3543','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3544','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3545','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3546','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3547','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3548','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3549','3200','Wareneingang 10 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3550','3200','steuerfreier innergemeinschaftlicher Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3551','3200','Wareneingang im Drittland steuerbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3559','3200','Steuerfreier Einfuhren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3558','3200','Wareneingang I.a. EG-Land steuerbar',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3560','3200','waren aus einem Umsatzsteuerlager § 13a UStG 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3565','3200','waren aus einem Umsatzsteuerlager § 13a UStG 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3566','3200','waren aus einem Umsatzsteuerlager § 13a UStG 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3600','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3601','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3602','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3603','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3604','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3605','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3606','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3607','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3608','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3609','3200','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3610','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3611','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3612','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3613','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3614','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3615','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3616','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3617','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3618','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3619','3200','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3650','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3651','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3652','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3653','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3654','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3655','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3656','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3657','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3658','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3659','3200','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3660','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3661','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3662','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3663','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3664','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3665','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3666','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3667','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3668','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3669','3200','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3700','3200','Nachlässe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3710','3200','Nachlässe 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3711','3200','Nachlässe 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3720','3200','Nachlässe 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3721','3200','Nachlässe 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3722','3200','Nachlässe 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3723','3200','Nachlässe 15% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3724','3200','Nachlässe aus innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3725','3200','Nachlässe aus innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3726','3200','Nachlässe aus innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3727','3200','Nachlässe aus innergemeinschaftlichem Erwerb 15% Vorsteuer und 15% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K3GVE1','K3GVE','Wareneingang',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K3GVE11','K3GVE1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3730','K3GVE11','Erhaltene Skonti',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3731','3730','Erhaltene Skonti 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3735','3730','Erhaltene Skonti 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3736','3730','Erhaltene Skonti 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3745','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3746','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3748','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3749','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3750','3769','Erhaltene Boni 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3751','3769','Erhaltene Boni 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3760','3769','Erhaltene Boni 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3761','3769','Erhaltene Boni 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3764','3769','Erhaltene Boni 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3765','3769','Erhaltene Boni 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3769','K3GVE11','Erhaltene Boni',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3770','K3GVE11','Erhaltene Rabatte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3780','3770','Erhaltene Rabatte 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3781','3770','Erhaltene Rabatte 7% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3790','3770','Erhaltene Rabatte 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3791','3770','Erhaltene Rabatte 19% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3794','3770','Erhaltene Rabatte 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Revenue','3795','3770','Erhaltene Rabatte 16% Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3800','3200','Bezugsnebenkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3830','3200','Leergut',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3850','3200','Zölle und Einfuhrabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV3','BV','Wareneingangs- und Bestandskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV31','BV3','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3960','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3961','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3962','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3963','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3964','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3965','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3966','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3967','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3968','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3969','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA1','K3BA','Bestand an Vorräte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA11','K3BA1','Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3970','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3971','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3972','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3973','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3974','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3975','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3976','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3977','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3978','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3979','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K3BA12','K3BA1','Fertige Erzeugnisse und Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3980','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3981','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3982','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3983','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3984','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3985','K3BA12','Lager Bestandswert Korrektur',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3986','K3BA12','Lager Differenzkorrektur Gewinn / Verlust',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3987','K3BA12','Lager Differenzkorrektur Marktwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3988','K3BA12','Lager Bestand Zwischenkonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Asset','3989','K3BA12','Bestand Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','VSK3','VSK','Verrechnete Stoffkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','VSK31','VSK3','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','Expense','3990','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3991','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3992','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3993','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3994','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3995','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3996','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3997','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3998','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','3','XXXXX','3999','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA1','K4GVA','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA11','K4GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4000','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4001','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4002','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4003','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4004','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4005','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4006','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4007','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4008','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4009','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4010','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4011','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4012','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4013','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4014','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4015','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4016','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4017','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4018','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4019','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4020','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4021','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4022','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4023','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4024','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4025','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4026','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4027','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4028','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4029','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4030','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4031','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4032','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4033','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4034','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4035','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4036','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4037','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4038','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4039','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4040','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4041','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4042','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4043','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4044','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4045','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4046','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4047','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4048','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4049','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4050','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4051','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4052','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4053','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4054','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4055','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4056','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4057','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4058','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4059','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4060','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4061','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4062','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4063','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4064','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4065','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4066','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4067','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4068','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4069','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4070','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4071','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4072','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4073','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4074','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4075','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4076','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4077','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4078','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4079','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4080','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4081','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4082','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4083','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4084','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4085','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4086','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4087','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4088','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4089','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4090','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4091','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4092','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4093','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4094','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4095','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4096','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4097','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4098','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4099','K4GVA11','Material-und Stoffverbrauch',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA2','K4GVA','Personalaufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA21','K4GVA2','Löhne und Gehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4100','K4GVA21','Löhne und Gehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4110','K4GVA21','Löhne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4120','K4GVA21','Gehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4124','K4GVA21','Geschäftsführergehälter GmbH-Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4125','K4GVA21','Ehegattengehalt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4126','K4GVA21','Tantiemen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4127','K4GVA21','Geschäftsführergehälter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4128','K4GVA21','Vergütungen an angestellte Mitunternehmer §15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA22','K4GVA2','Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4130','K4GVA22','Gesetzliche Soziale Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4137','K4GVA22','Gesetzliche soziale Aufwendungen für Mitunternehmer §15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4138','K4GVA22','Beiträge zur Berufsgenossenschaft',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA23','K4GVA2','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4139','K4GVA23','Ausgleichsabgabe i. S. d. Schwerbehindertengesetz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4140','K4GVA22','Freiwillige soziale Aufwendungen lohnsteuerfrei',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4145','K4GVA21','Freiwillige soziale Aufwendungen lohnsteuerpflichtig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4149','K4GVA21','Pauschale Steuer auf sonstige Bezüge (z.B. Fahrkostenzuschüsse)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4150','K4GVA21','Krankengeldzuschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4155','K4GVA21','Zuschüsse der Agenturen für Arbeit (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4160','K4GVA22','Versorgungskassen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4165','K4GVA22','Aufwendungen für Altersversorgung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4167','K4GVA22','Pauschale Steuer auf sonstige Bezüge (z.B. Direktversicherungen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4168','K4GVA22','Aufwendungen für Altersversorgung für Mitunternehmer §15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4169','K4GVA22','Aufwendungen für Unterstützung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4170','K4GVA21','Vermögenswirksame Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4175','K4GVA21','Fahrtkostenerstattung Wohnung/Arbeitsstätte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4180','K4GVA21','Bedienungsgelder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4190','K4GVA21','Aushilfslöhne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4199','K4GVA21','Pauschale Steuer für Aushilfen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA3','K4GVA','Sonstige betriebliche Aufwendungen und Abschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA31','K4GVA3','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4200','K4GVA31','Raumkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4210','K4GVA31','Miete',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4218','K4GVA31','Gewerbesteuerlich zu berücksichtigende Miete §8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4219','K4GVA31','Vergütung Mitunternehmer für die mieteweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4220','K4GVA31','Pacht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4228','K4GVA31','Gewerbesteuerlich zu berücksichtigende Pacht §8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4229','K4GVA31','Vergütung an Mitunternehmer für die pachtweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4230','K4GVA31','Heizung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4240','K4GVA31','Gas Strom Wasser',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4250','K4GVA31','Reinigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4260','K4GVA31','Instandhaltung betrieblicher Räume',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4270','K4GVA31','Abgaben für betrieblich genutzten Grundbesitz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4280','K4GVA31','Sonstige Raumkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4288','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4289','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4290','K4GVA31','Grundstücksaufwendungen betrieblich',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4300','K4GVA31','Nicht abziehbare Vorsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4301','K4GVA31','Nicht abziehbare Vorsteuer 7%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4305','K4GVA31','Nicht abziehbare Vorsteuer 16%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4306','K4GVA31','Nicht abziehbare Vorsteuer 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA32','K4GVA3','Steuern vom Einkommen und Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4320','K4GVA32','Gewerbesteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA33','K4GVA3','Sonstige Steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4340','K4GVA33','Sonstige Betriebssteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4350','K4GVA33','Verbrauchsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4355','K4GVA33','ökosteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4360','K4GVA31','Versicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4366','K4GVA31','Versicherungen für Gebäude',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4370','K4GVA31','Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4380','K4GVA31','Beiträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4390','K4GVA31','Sonstige Abgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4396','K4GVA31','Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4397','K4GVA31','Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4400','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4401','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4402','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4403','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4404','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4405','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4406','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4407','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4408','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4409','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4410','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4411','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4412','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4413','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4414','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4415','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4416','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4417','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4418','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4419','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4420','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4421','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4422','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4423','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4424','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4425','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4426','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4427','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4428','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4429','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4430','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4431','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4432','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4433','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4434','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4435','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4436','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4437','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4438','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4439','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4440','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4441','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4442','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4443','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4444','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4445','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4446','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4447','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4448','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4449','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4450','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4451','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4452','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4453','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4454','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4455','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4456','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4457','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4458','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4459','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4460','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4461','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4462','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4463','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4464','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4465','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4466','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4467','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4468','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4469','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4470','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4471','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4472','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4473','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4474','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4475','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4476','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4477','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4478','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4479','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4480','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4481','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4482','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4483','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4484','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4485','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4486','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4487','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4488','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4489','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4490','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4491','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4492','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4493','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4494','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4495','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4496','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4497','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4498','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4499','K4GVA31','(zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4500','K4GVA31','Fahrzeugkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4510','K4GVA33','Kfz-steuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4520','K4GVA31','Kfz-Versicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4530','K4GVA31','Laufende Kfz-Betriebskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4540','K4GVA31','Kfz-Reparaturen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4550','K4GVA31','Garagenmieten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4560','K4GVA31','Mautgebühren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4570','K4GVA31','Leasingfahrzeugkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4580','K4GVA31','Sonstige Kfz-Kosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4590','K4GVA31','Kfz-Kosten für Betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4595','K4GVA31','Fremdfahrzeugkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4600','K4GVA31','Werbekosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4630','K4GVA31','Geschenke abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4635','K4GVA31','Geschenke nicht abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4638','K4GVA31','Geschenke ausschließlich betrieblich genutzt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4640','K4GVA31','Repräsentationskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4650','K4GVA31','Bewirtungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4651','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4652','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4653','K4GVA31','Aufmerksamkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4654','K4GVA31','Nicht abzugsfähige Bewirtungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4655','K4GVA31','Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4660','K4GVA31','Reisekosten Arbeitnehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4662','K4GVA31','Reisekosten Arbeitnehmer (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4663','K4GVA31','Reisekosten Arbeitnehmer Fahrkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4664','K4GVA31','Reisekosten Arbeitnehmer Verpflegungsmehraufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4666','K4GVA31','Reisekosten Arbeitnehmer übernachtungsaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4668','K4GVA31','Kilometergelderstattung Arbeitnehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4670','K4GVA31','Reisekosten Unternehmer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4672','K4GVA31','Reisekosten Unternehmer (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4673','K4GVA31','Reisekosten Unternehmer Fahrkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4674','K4GVA31','Reisekosten Unternehmer Verpflegungsmehraufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4676','K4GVA31','Reisekosten Unternehmer übernachtungsaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4678','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4679','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (nicht abziehbarer Anteil)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4680','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4700','K4GVA31','Kosten der Warenabgabe',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4710','K4GVA31','Verpackungsmaterial',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4730','K4GVA31','Ausgangsfrachten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4750','K4GVA31','Transportversicherungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4760','K4GVA31','Verkaufsprovisionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4780','K4GVA31','Fremdarbeiten (Vertrieb)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4790','K4GVA31','Aufwand für Gewährleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4800','K4GVA31','Reparaturen und Instandhaltungen von technischen Anlagen und Maschinen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4805','K4GVA31','Reparaturen und Instandhaltungen von anderen Anlagen und Betriebs- und Geschäftsaustattung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4806','K4GVA31','Wartungskosten für Hard- und Software',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4809','K4GVA31','Sonstige Reparaturen und Instandhaltungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4810','K4GVA31','Mietleasing',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4814','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA34','K4GVA3','Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen sowie auf aktivierte Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4815','K4GVA34','Kaufleasing',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4820','K4GVA34','Abschreibung auf Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4821','K4GVA34','Abschreibung auf Aufwendungen für die Währungsumstellung auf den Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4822','K4GVA34','Abschreibung auf immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4824','K4GVA34','Abschreibung auf den Geschäfts- oder Firmenwert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4826','K4GVA34','Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenstände',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4830','K4GVA34','Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4831','K4GVA34','Abschreibungen auf Gebäude',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4832','K4GVA34','Abschreibungen auf Kfz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4833','K4GVA34','Abschreibungen auf Gebäudeanteil des häuslichen Arbeitszimmers',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4840','K4GVA34','Außerplanmäßige Abschreibungen auf Sachanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4841','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4842','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4843','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4850','K4GVA34','Abschreibungen auf Sachanlagen auf Grund steuerlich Sondervorschriften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4851','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (ohne Kfz)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4852','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (für Kfz)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4855','K4GVA34','Sofortabschreibung geringwertiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4860','K4GVA34','Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4862','K4GVA34','Abschreibung auf Sammelposten WG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4865','K4GVA34','Außerplanmäßige Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA35','K4GVA3','Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4870','K4GVA35','Abschreibungen auf Finanzanlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4871','K4GVA35','Abschreibungen auf Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4872','K4GVA35','Abschreibungen auf Grund von Verlustanteilen an Mitunternehmerschaften § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4873','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4874','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4875','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4876','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4879','K4GVA35','Vorwegnahme künftiger Wertschwankungen bei Wertpapieren des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA36','K4GVA3','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4880','K4GVA36','Abschreibungen auf Umlaufvermögen ohne Wertpapiere (soweit unübliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4882','K4GVA36','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit unübliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4885','K4GVA31','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4886','K4GVA31','Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (soweit übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4887','K4GVA31','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit übliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4890','K4GVA36','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen (soweit unübliche Höhe)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4900','K4GVA31','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4905','K4GVA31','Sonstige Aufwendungen betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4909','K4GVA31','Fremdleistungen / Fremarbeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4910','K4GVA31','Porto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4920','K4GVA31','Telefon',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4925','K4GVA31','Telefax und Internetkosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4930','K4GVA31','Bürobedarf',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4940','K4GVA31','Zeitschriften Bücher',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4945','K4GVA31','Fortbildungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4946','K4GVA31','Freiwillige Sozialleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4948','K4GVA31','Vergütungen an Mitunternehmer § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4949','K4GVA31','Haftungsvergütung an Mitunternehmer § 15 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4950','K4GVA31','Rechts- und Beratungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4955','K4GVA31','Buchführungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4955.01','K4GVA31','Kosten Heidrich&Müller-Hansen PG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4957','K4GVA31','Abschluss- und Prüfungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4960','K4GVA31','Mieten für Einrichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4964','K4GVA31','Aufwendungen für die zeitlich befristetete Überlassung von Rechten (Lizenzen,Konzessionen)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4965','K4GVA31','Mietleasing',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4966','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4968','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing für Einrichtungen § 8 GewStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4969','K4GVA31','Aufwendungen für Abraum- und Abfallbeseitigung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4970','K4GVA31','Nebenkosten des Geldverkehrs',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4975','K4GVA31','Aufwendungen aus Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4976','K4GVA31','Aufwendungen aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4980','K4GVA31','Betriebsbedarf',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4985','K4GVA31','Werkzeuge und Kleingeräte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA4','K4GVA','Kalkulatorische Kosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA41','K4GVA4','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4990','K4GVA41','Kalkulatorischer Unternehmerlohn',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4991','K4GVA41','Kalkulatorische Miete und Pacht',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4992','K4GVA41','Kalkulatorische Zinsen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4993','K4GVA41','Kalkulatorische Abschreibungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4994','K4GVA41','Kalkulatorische Wagnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4995','K4GVA41','Kalkulatorischer Lohn für unentgeltliche Mitarbeiter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA5','K4GVA','Kosten bei Anwendung des Umsatzkostenverfahren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K4GVA51','K4GVA5','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4996','K4GVA51','Herstellungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4997','K4GVA51','Verwaltungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4998','K4GVA51','Vertriebskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','4','Expense','4999','K4GVA51','Gegenkonto 4996 - 4998',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA01','K7BA','Unfertige Erzeugnisse und Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7000','K7BA01','Unfertige Erzeugnisse und Leistungen (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7050','7000','Unfertige Erzeugnisse (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7080','7000','Unfertige Leistungen (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA02','K7BA','In Ausführung befindliche Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7090','K7BA02','In Ausführung befindliche Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA03','K7BA','In Arbeit befindliche Aufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7095','K7BA03','In Arbeit befindliche Aufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Asset','K7BA04','K7BA','Fertige Erzeugnisse und Waren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7100','K7BA04','Fertige Erzeugnisse und Waren (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7110','7100','Fertige Erzeugnisse (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','7','Asset','7140','7100','Waren (Bestand)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE1','K8GVE','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE11','K8GVE1','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8000','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8001','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8002','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8003','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8004','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8005','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8006','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8007','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8008','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8009','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8010','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8011','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8012','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8013','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8014','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8015','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8016','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8017','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8018','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8019','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8020','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8021','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8022','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8023','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8024','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8025','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8026','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8027','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8028','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8029','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8030','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8031','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8032','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8033','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8034','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8035','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8036','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8037','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8038','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8039','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8040','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8041','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8042','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8043','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8044','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8045','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8046','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8047','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8048','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8049','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8050','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8051','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8052','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8053','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8054','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8055','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8056','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8057','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8058','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8059','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8060','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8061','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8062','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8063','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8064','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8065','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8066','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8067','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8068','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8069','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8070','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8071','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8072','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8073','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8074','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8075','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8076','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8077','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8078','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8079','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8080','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8081','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8082','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8083','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8084','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8085','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8086','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8087','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8088','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8089','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8090','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8091','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8092','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8093','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8094','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8095','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8096','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8097','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8098','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8099','K8GVE11','(Zur freien Verfügung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8100','K8GVE11','steuerfreie Umsätze § 4 Nr. 8 ff. UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8105','K8GVE11','Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpackung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8110','K8GVE11','Sonstige steuerfreie Umsätze Inland',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8120','K8GVE11','steuerfreie Umsätze § 4 Nr. 1a UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8125','K8GVE11','steuerfreie innergemeinschaftliche Lieferung § 4 Nr. 1b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8130','K8GVE11','Lieferungen des ersten Abnehmers bei Innergemeinschaftlichen Dreiecksgeschäften § 25b abs. 2 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8135','K8GVE11','Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer Identifikationsnummer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8140','K8GVE11','Steuerfreie Umsätze Offshore usw.',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8150','K8GVE11','Sonstige steuerfreie Umsätze (z.B. § 4 Nr. 2-7 UStG)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8160','K8GVE11','Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8190','K8GVE11','Erlöse die mit den Durchschnittssätzen des § 24 UStG versteuert werden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8195','K8GVE11','Erlöse als Kleinunternehmer i. S. d. § 19 Abs. 1 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8196','K8GVE11','Erlöse aus Geldspielautomaten 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8197','K8GVE11','Erlöse aus Geldspielautomaten 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8200','K8GVE11','Erlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8300','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8301','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8302','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8303','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8304','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8305','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8306','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8307','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8308','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8309','K8GVE11','Erlöse 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8310','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8311','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8312','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8313','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8314','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8315','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8316','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8317','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8318','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8319','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8320','K8GVE11','Erlöse aus im anderen EG-Land steuerpflichtigen Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8330','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8337','K8GVE11','Erlöse aus Leistungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8338','K8GVE11','Erlöse aus im Drittland steuerbaren Leistungen im Inland nicht steuerbare Umsätze',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8339','K8GVE11','Erlöse aus im anderen EG-Land steuerbaren Lieferungen im Inland nicht steuerbare Umsätze',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8340','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8341','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8342','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8343','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8344','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8345','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8346','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8347','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8348','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8349','K8GVE11','Erlöse 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8400','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8400.01','K8GVE11','Erlöse Projekte 19%',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8401','K8GVE11','Vorausberechnete Einnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8402','K8GVE11','Sontige Einnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8403','K8GVE11','Konto Kasse Ertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8404','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8405','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8406','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8407','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8408','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8409','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8410','K8GVE11','Erlöse 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8510','K8GVE11','Provisionsumsätze',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8514','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 8 ff. UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8515','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 5 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8516','K8GVE11','Provisionsumsätze 7 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8518','K8GVE11','Provisionsumsätze 16 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8519','K8GVE11','Provisionsumsätze 19 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8520','K8GVE11','Erlöse Abfallverwertung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8540','K8GVE11','Erlöse Leergut',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE12','K8GVE1','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8570','K8GVE12','Provision sonstige Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8574','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 8 ff UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8575','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 5 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8576','K8GVE12','Provision sonstige Erträge 7 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8578','K8GVE12','Provision sonstige Erträge 16 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8579','K8GVE12','Provision sonstige Erträge 19 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE2','K8GVE','Statistische Konten EüR',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE21','K8GVE2','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8580','K8GVE21','Statistisches Konto Erlöse zum Allgemeinen Umsatzsteuerersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8581','K8GVE21','Statistisches Konto Erlöse zum ermäßigten Umsatzsteuerersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8582','K8GVE21','Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8589','K8GVE21','Gegenkonto 8580-8582 bei Aufteilung der Erlöse nach Steuersätzen (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE22','K8GVE2','Sonstige betriebliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8590','K8GVE22','Verrechnete sonstige Sachbezüge (keine Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8591','K8GVE22','Sachbezüge 7% USt (Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8595','K8GVE22','Sachbezüge 19% USt (Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8596','K8GVE22','Sachbezüge 16% USt (Waren)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8600','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8605','K8GVE22','Sonstige Erträge betrieblich und regelmäßig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8609','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei § 4 Nr. 8 ff UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8610','K8GVE22','Verrechnete sonstige Sachbezüge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8611','K8GVE22','Verrechnete sonstige Sachbezüge 19% USt (z.B. Kfz-Gestellung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8612','K8GVE22','Verrechnete sonstige Sachbezüge 16% USt (z.B. Kfz-Gestellung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8614','K8GVE22','Verrechnete sonstige Sachbezüge ohne Umsatzsteuer',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8625','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8626','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8627','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8628','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8629','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8630','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8631','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8632','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8633','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8634','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8640','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8641','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8642','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8643','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8644','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8648','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8649','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Revenue','K8GVE23','K8GVE2','Sonstige Zinsen und ähnliche Erträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8650','K8GVE23','Erlöse Zinsen und Diskontspesen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8660','K8GVE23','Erlöse Zinsen und Diskontspesen aus verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA1','K8GVA','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA11','K8GVA1','Umsatzerlöse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8700','K8GVA11','Erlösschmälerungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Revenue','8701','K8GVA11','Nicht abgerechnete Einnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen aus steuerfreien Umsätzen §4 Nr. 1a UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8710','K8GVA11','Erlösschmälerungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8720','K8GVA11','Erlösschmälerungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8721','K8GVA11','Erlösschmälerungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8723','K8GVA11','Erlösschmälerungen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8724','K8GVA11','Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8725','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 7 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8726','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 19 % USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8727','K8GVA11','Erlösschmälerungen aus im anderen EG-Land steuerpflichtigen Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8729','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8730','K8GVA11','Gewährte Skonti',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8731','K8GVA11','Gewährte Skonti 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8735','K8GVA11','Gewährte Skonti 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8736','K8GVA11','Gewährte Skonti 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8741','K8GVA11','Gewährte Skonti aus Lieferungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8743','K8GVA11','Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8745','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8746','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8748','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8749','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8750','K8GVA11','Gewährte Boni 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8751','K8GVA11','Gewährte Boni 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8760','K8GVA11','Gewährte Boni 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8761','K8GVA11','Gewährte Boni 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8764','K8GVA11','Gewährte Boni 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8765','K8GVA11','Gewährte Boni 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8769','K8GVA11','Gewährte Boni',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8770','K8GVA11','Gewährte Rabatte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8780','K8GVA11','Gewährte Rabatte 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8781','K8GVA11','Gewährte Rabatte 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8790','K8GVA11','Gewährte Rabatte 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8791','K8GVA11','Gewährte Rabatte 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8794','K8GVA11','Gewährte Rabatte 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8795','K8GVA11','Gewährte Rabatte 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Expense','K8GVA12','K8GVA1','Sonstige betriebliche Aufwendungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8800','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8801','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8802','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8803','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8804','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8805','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8806','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8807','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8808','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8809','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8817','K8GVA12','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8818','K8GVA12','Erlöse aus Verkäufen Finanzanlagen (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8819','K8GVA12','Erlöse aus Verkäufen Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Bei Buchverlust)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8820','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8821','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8822','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8823','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8824','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8825','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8826','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8827','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1a UStG (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8828','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1b UStG (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8829','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8837','K8GVE22','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8838','K8GVE22','Erlöse aus Verkäufen Finanzanlagen (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8839','K8GVE22','Erlöse aus Verkäufen Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Bei Buchgewinn)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8850','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19% USt für § 4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8851','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG 100% / 50% steuerfrei (inländische Kap. Ges.)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8852','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8853','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8900','K8GVE21','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8905','K8GVE21','Entnahme von Gegenständen ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8906','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8910','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8911','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8912','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8913','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8914','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8915','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8916','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8917','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8918','K8GVE21','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8919','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8920','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8921','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Kfz-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8922','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Telefon-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8923','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8924','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8925','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8926','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8927','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8928','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8929','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8930','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8931','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8932','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8933','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8934','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Kfz_Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8935','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8936','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8937','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8938','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8939','K8GVE22','Unentgeltliche Zuwendung von Gegenständen ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8940','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8941','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8942','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8943','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8944','K8GVE21','Unentgeltliche Zuwendung von Waren 16% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8945','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8946','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8947','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8948','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Telefon-Nutzung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8949','K8GVE21','Unentgeltliche Zuwendung von Waren ohne USt',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8950','K8GVE21','Nicht steuerbare Umsätze (Innenumsätze)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','8955','K8GVE21','Umsatzsteuervergütungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV81','BV','Erhöhung des Bestands an fertigen und unfertigen Erzeugnissen oder Verminderung des Bestands an fertigen oder unfertigen Erzeugnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8960','BV81','Bestandsveränderungen- unfertige Erzeugnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8970','BV81','Bestandsveränderungen- unfertige Leistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV82','BV','Erhöhung des Bestands in Ausführung befindlicher Bauaufträge oder Verminderung des Bestands in Ausführung befindlicher Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8975','BV82','Bestandsveränderungen - in Ausführung befindliche Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','BV83','BV','Erhöhung des Bestands in Arbeit befindlicher Bauaufträge oder Verminderung des Bestands in Arbeit befindlicher Bauaufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8977','BV83','Bestandsveränderungen - in Arbeit befindliche Aufträge',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8980','BV81','Bestandsveränderungen - fertige Erzeugnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','XXXXX','8990','AEL','Andere aktivierte Eigenleistungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9',NULL,'Vortrags Kapital- und statistische Konten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK91','KK9','Vortragskonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9000','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9001','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9002','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9003','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9004','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9005','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9006','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9007','KK91','Saldenvorträge Sachkonten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9008','KK91','Saldenvorträge Debitoren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9009','KK91','Saldenvorträge Kreditoren',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9060','KK91','Offene Posten aus 1990',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9069','KK91','Offene Posten aus 1999',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9070','KK91','Offene Posten aus 2000',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9071','KK91','Offene Posten aus 2001',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9072','KK91','Offene Posten aus 2002',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9073','KK91','Offene Posten aus 2003',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9074','KK91','Offene Posten aus 2004',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9075','KK91','Offene Posten aus 2005',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9076','KK91','Offene Posten aus 2006',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9077','KK91','Offene Posten aus 2007',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9090','KK91','Summenvortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9091','9090','Offene Posten aus 1991',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9092','9090','Offene Posten aus 1992',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9093','9090','Offene Posten aus 1993',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9094','9090','Offene Posten aus 1994',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9095','9090','Offene Posten aus 1995',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9096','9090','Offene Posten aus 1996',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9097','9090','Offene Posten aus 1997',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9098','9090','Offene Posten aus 1998',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK92','KK9','Statistische Konten für Betriebswirtschaftliche Auswertung (BWA)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9101','KK92','Verkaufstage',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9102','KK92','Anzahl der Barkunden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9103','KK92','Beschäftigte Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9104','KK92','Unbezahlte Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9105','KK92','Verkaufskräfte',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9106','KK92','Geschäftsraum qm',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9107','KK92','Verkaufsraum qm',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9116','KK92','Anzahl Rechnungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9117','KK92','Anzahl Kreditkunden monatlich',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9118','KK92','Anzahl Kreditkunden aufgelaufen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9120','KK92','Erweiterungsinvestitionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9135','KK92','Auftragseingang im Geschäftsjahr',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9140','KK92','Auftragsbestand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9190','KK92','Gegenkonto für statistischen Mengeneinheiten Konten 9101 - 9107 und Konten 9116 - 9118',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9199','KK92','Gegenkonto zu Konten 9120 9135 - 9140',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK93','KK9','Statistische Konten für den Kennziffernteil der Bilanz',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9200','KK93','Beschäftigte Personen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9209','KK93','Gegenkonto zu 9200',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9210','KK93','Produktive Löhne',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9219','KK93','Gegenkonto zu 9210',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK94','KK9','Statistische Konten zur informativen Angaben des gezeichneten Kapitals in anderer Währung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK941','KK94','Gezeichnetes Kapital in DM',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9220','KK941','Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK942','KK94','Gezeichnetes Kapital in Euro',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9221','KK942','Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9229','KK94','Gegenkonto zu Konten 9022 - 9221',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK95','KK9','Passive Rechnungsabgrenzungsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9230','KK95','Baukostenzuschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9232','KK95','Investitionszulagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9234','KK95','Investitionszuschüsse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9239','KK95','Gegenkonto zu Konten 9230 - 9238',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9240','KK95','Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9241','KK95','Investitionsverbindlichkeiten aus Sachanlagenverkäufen bei Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9242','KK95','Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9243','KK95','Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9244','KK95','Gegenkonto zu Konten 9240 - 9243',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9245','KK95','Forderungen aus Sachanlagenverkäufen bei sonstigen Vermögensgegenständen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9246','KK95','Forderungen aus Verkäufen immaterieller Vermögensgegenständen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9247','KK95','Forderungen aus Verkäufe von Finanzanlagen bei sonstigen Vermögensgegenständen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9249','KK95','Gegenkonto zu Konten 9245 - 9247',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK96','KK9','Eigenkapitalersetzende Gesellschafterdarlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9250','KK96','Eigenkapitalersetzende Gesellschafterdarlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9255','KK96','Ungesicherte Gesellschafterdarlehen mit Restlaufzeit größer 5 Jahre',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9259','KK96','Gegenkonto zu 9250 und 9255',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK97','KK9','Aufgliederung der Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9260','KK97','Kurzfristige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9262','KK97','Mittelfristige Rückstellungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9264','KK97','Langfristige Rückstellungen außer Pensionen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9269','KK97','Gegenkonto zu Konten 9260 - 9268',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK98','KK9','Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9270','KK98','Gegenkonto zu 9271 bis 9278 (soll-Buchung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9271','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechsel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9272','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechseln gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9273','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9274','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9275','KK98','Verbindlichkeiten aus Gewährleistungsverträgen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9276','KK98','Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9277','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9278','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9279','KK98','Verpflichtungen aus Trendhandvermögen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK99','KK9','Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9280','KK99','Gegenkonto zu Konten 9281 - 9284',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9281','KK99','Verpflichtungen aus Miet- und Leasingverträgen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9282','KK99','Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9283','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9284','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9a','KK9','Statistische Konten für § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9287','KK9a','Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9288','KK9a','Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9289','KK9a','Gegenkonto zu 9287 und 9288',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9290','KK9a','Statistisches Konto steuerfreie Auslagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9291','KK9a','Gegenkonto zu 9290',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9292','KK9a','Statistisches Konto Fremdgeld',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9293','KK9a','Gegenkonto zu 9292',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9a1','KK9a','Einlagen stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9295','KK9a1','Einlagen stiller Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9a2','KK9a','Steuerrechtlicher Ausgleichsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9297','KK9a2','Steuerrechtlicher Ausgleichsposten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9b','KK9','Privat Teilhafter (für Verrechnung Gesellschafterdarlehen mit Eigenkapitalcharakter - Konto 9840 - 9849)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9400','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9401','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9402','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9403','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9404','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9405','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9406','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9407','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9408','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9409','KK9b','Privatentnahmen Allgemein',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9410','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9411','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9412','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9413','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9414','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9415','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9416','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9417','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9418','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9419','KK9b','Privatsteuern',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9420','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9421','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9422','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9423','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9424','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9425','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9426','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9427','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9428','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9429','KK9b','Sonderausgaben beschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9430','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9431','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9432','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9433','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9434','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9435','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9436','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9437','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9438','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9439','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9440','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9441','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9442','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9443','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9444','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9445','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9446','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9447','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9448','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9449','KK9b','Zuwendungen Spenden',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9450','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9451','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9452','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9453','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9454','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9455','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9456','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9457','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9458','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9459','KK9b','Außergewöhnliche Belastungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9460','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9461','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9462','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9463','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9464','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9465','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9466','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9467','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9468','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9469','KK9b','Grundstückaufwand',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9470','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9471','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9472','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9473','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9474','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9475','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9476','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9477','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9478','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9479','KK9b','Grundstückertrag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9480','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9481','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9482','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9483','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9484','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9485','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9486','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9487','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9488','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9489','KK9b','Unentgeltliche Wertabgaben',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9490','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9491','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9492','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9493','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9494','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9495','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9496','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9497','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9498','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9499','KK9b','Privateinlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9c','KK9','Statistische Konten für Kapitalkontenentwicklung',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9500','KK9c','Anteil für Konto 0900 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9501','KK9c','Anteil für Konto 0901 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9502','KK9c','Anteil für Konto 0902 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9503','KK9c','Anteil für Konto 0903 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9504','KK9c','Anteil für Konto 0904 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9505','KK9c','Anteil für Konto 0905 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9506','KK9c','Anteil für Konto 0906 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9507','KK9c','Anteil für Konto 0907 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9508','KK9c','Anteil für Konto 0908 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9509','KK9c','Anteil für Konto 0909 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9510','KK9c','Anteil für Konto 0910 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9511','KK9c','Anteil für Konto 0911 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9512','KK9c','Anteil für Konto 0912 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9513','KK9c','Anteil für Konto 0913 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9514','KK9c','Anteil für Konto 0914 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9515','KK9c','Anteil für Konto 0915 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9516','KK9c','Anteil für Konto 0916 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9517','KK9c','Anteil für Konto 0917 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9518','KK9c','Anteil für Konto 0918 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9519','KK9c','Anteil für Konto 0919 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9520','KK9c','Anteil für Konto 0920 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9521','KK9c','Anteil für Konto 0921 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9522','KK9c','Anteil für Konto 0922 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9523','KK9c','Anteil für Konto 0923 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9524','KK9c','Anteil für Konto 0924 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9525','KK9c','Anteil für Konto 0925 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9526','KK9c','Anteil für Konto 0926 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9527','KK9c','Anteil für Konto 0927 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9528','KK9c','Anteil für Konto 0928 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9529','KK9c','Anteil für Konto 0929 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9530','KK9c','Anteil für Konto 0830 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9531','KK9c','Anteil für Konto 0831 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9532','KK9c','Anteil für Konto 0832 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9533','KK9c','Anteil für Konto 0833 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9534','KK9c','Anteil für Konto 0834 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9535','KK9c','Anteil für Konto 0835 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9536','KK9c','Anteil für Konto 0836 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9537','KK9c','Anteil für Konto 0837 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9538','KK9c','Anteil für Konto 0838 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9539','KK9c','Anteil für Konto 0839 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9540','KK9c','Anteil für Konto 0810 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9541','KK9c','Anteil für Konto 0811 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9542','KK9c','Anteil für Konto 0812 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9543','KK9c','Anteil für Konto 0813 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9544','KK9c','Anteil für Konto 0814 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9545','KK9c','Anteil für Konto 0815 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9546','KK9c','Anteil für Konto 0816 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9547','KK9c','Anteil für Konto 0817 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9548','KK9c','Anteil für Konto 0818 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9549','KK9c','Anteil für Konto 0819 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9550','KK9c','Anteil für Konto 9810 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9551','KK9c','Anteil für Konto 9811 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9552','KK9c','Anteil für Konto 9812 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9553','KK9c','Anteil für Konto 9813 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9554','KK9c','Anteil für Konto 9814 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9555','KK9c','Anteil für Konto 9815 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9556','KK9c','Anteil für Konto 9816 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9557','KK9c','Anteil für Konto 9817 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9558','KK9c','Anteil für Konto 9818 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9559','KK9c','Anteil für Konto 9819 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9560','KK9c','Anteil für Konto 9820 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9561','KK9c','Anteil für Konto 9821 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9562','KK9c','Anteil für Konto 9822 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9563','KK9c','Anteil für Konto 9823 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9564','KK9c','Anteil für Konto 9824 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9565','KK9c','Anteil für Konto 9825 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9566','KK9c','Anteil für Konto 9826 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9567','KK9c','Anteil für Konto 9827 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9568','KK9c','Anteil für Konto 9828 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9569','KK9c','Anteil für Konto 9829 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9570','KK9c','Anteil für Konto 0870 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9571','KK9c','Anteil für Konto 0871 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9572','KK9c','Anteil für Konto 0872 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9573','KK9c','Anteil für Konto 0873 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9574','KK9c','Anteil für Konto 0874 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9575','KK9c','Anteil für Konto 0875 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9576','KK9c','Anteil für Konto 0876 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9577','KK9c','Anteil für Konto 0877 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9578','KK9c','Anteil für Konto 0878 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9579','KK9c','Anteil für Konto 0879 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9580','KK9c','Anteil für Konto 0880 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9581','KK9c','Anteil für Konto 0881 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9582','KK9c','Anteil für Konto 0882 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9583','KK9c','Anteil für Konto 0883 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9584','KK9c','Anteil für Konto 0884 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9585','KK9c','Anteil für Konto 0885 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9586','KK9c','Anteil für Konto 0886 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9587','KK9c','Anteil für Konto 0887 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9588','KK9c','Anteil für Konto 0888 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9589','KK9c','Anteil für Konto 0889 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9590','KK9c','Anteil für Konto 0890 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9591','KK9c','Anteil für Konto 0891 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9592','KK9c','Anteil für Konto 0892 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9593','KK9c','Anteil für Konto 0893 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9594','KK9c','Anteil für Konto 0894 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9595','KK9c','Anteil für Konto 0895 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9596','KK9c','Anteil für Konto 0896 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9597','KK9c','Anteil für Konto 0897 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9598','KK9c','Anteil für Konto 0898 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9599','KK9c','Anteil für Konto 0899 Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9600','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9601','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9602','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9603','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9604','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9605','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9606','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9607','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9608','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9609','KK9c','Name des Gesellschafters Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9610','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9611','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9612','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9613','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9614','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9615','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9616','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9617','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9618','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9619','KK9c','Tätigkeitsvergütung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9620','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9621','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9622','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9623','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9624','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9625','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9626','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9627','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9628','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9629','KK9c','Tantieme Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9630','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9631','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9632','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9633','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9634','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9635','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9636','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9637','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9638','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9639','KK9c','Darlehensverzinsung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9640','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9641','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9642','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9643','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9644','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9645','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9646','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9647','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9648','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9649','KK9c','Gebrauchsüberlassung Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9650','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9651','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9652','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9653','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9654','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9655','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9656','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9657','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9658','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9659','KK9c','Sonstige Vergütungen Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9690','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9691','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9692','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9693','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9694','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9695','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9696','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9697','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9698','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9699','KK9c','Restanteil Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9700','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9701','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9702','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9703','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9704','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9705','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9706','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9707','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9708','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9709','KK9c','Name des Gesellschafters Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9710','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9711','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9712','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9713','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9714','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9715','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9716','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9717','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9718','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9719','KK9c','Tätigkeitsvergütung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9720','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9721','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9722','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9723','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9724','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9725','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9726','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9727','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9728','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9729','KK9c','Tantieme Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9730','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9731','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9732','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9733','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9734','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9735','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9736','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9737','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9738','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9739','KK9c','Darlehensverzinsung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9740','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9741','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9742','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9743','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9744','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9745','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9746','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9747','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9748','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9749','KK9c','Gebrauchsüberlassung Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9750','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9751','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9752','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9753','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9754','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9755','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9756','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9757','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9758','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9759','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9760','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9761','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9762','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9763','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9764','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9765','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9766','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9767','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9768','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9769','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9770','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9771','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9772','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9773','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9774','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9775','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9776','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9777','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9778','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9779','KK9c','Sonstige Vergütungen Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9780','KK9c','Anteil für Konto 9840 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9781','KK9c','Anteil für Konto 9841 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9782','KK9c','Anteil für Konto 9842 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9783','KK9c','Anteil für Konto 9843 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9784','KK9c','Anteil für Konto 9844 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9785','KK9c','Anteil für Konto 9845 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9786','KK9c','Anteil für Konto 9846 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9787','KK9c','Anteil für Konto 9847 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9788','KK9c','Anteil für Konto 9848 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9789','KK9c','Anteil für Konto 9849 Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9790','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9791','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9792','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9793','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9794','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9795','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9796','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9797','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9798','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9799','KK9c','Restanteil Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9800','KK9c','Lösch- und Korrekturschlüssel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9801','KK9c','Lösch- und Korrekturschlüssel',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9d','KK9','Kapital Personenhandelsgesellschaft Vollhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9810','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9811','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9812','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9813','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9814','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9815','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9816','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9817','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9818','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9819','KK9d','Gesellschafter Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9820','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9821','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9822','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9823','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9824','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9825','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9826','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9827','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9828','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9829','KK9d','Verlust-/Vortragskonto',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9830','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9831','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9832','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9833','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9834','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9835','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9836','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9837','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9838','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9839','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9e','KK9','Kapital Personenhandelsgesellschaft Teilhafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9840','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9841','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9842','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9843','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9844','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9845','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9846','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9847','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9848','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9849','KK9e','Gesellschafter-Darlehen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9850','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9851','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9852','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9853','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9854','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9855','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9856','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9857','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9858','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9859','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9f','KK9','Einzahlungsverpflichtungen im Bereich der Forderungen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9860','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9861','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9862','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9863','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9864','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9865','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9866','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9867','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9868','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9869','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9870','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9871','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9872','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9873','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9874','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9875','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9876','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9877','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9878','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9879','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9g','KK9','Ausgleichsposten für aktivierte eigene Anteile und Bilanzierungshilfen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9880','KK9g','Ausgleichsposten für aktivierte eigene Anteile',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9882','KK9g','Ausgleichsposten für aktivierte Bilanzierungshilfen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9h','KK9','Nicht durch Vermögenseinlagen gedeckte Entnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9883','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9884','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9i','KK9','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9885','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9886','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9j','KK9','Steueraufwand der Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9887','KK9j','Steueraufwand der Gesellschafter',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9889','KK9j','Gegenkonto zu 9887',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','Owner''s Equity','KK9k','KK9','Statistische Konten für Gewinnzuschlag',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9890','KK9k','Statistische Konto für den Gewinnzuschlag nach §§6b 6c und 6g EStG (Haben-Buchung)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9891','KK9k','Statistische Konto für den Gewinnzuschlag - Gegenkonto zu 9890',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9l','KK9','Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9893','KK9l','Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9894','KK9l','Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9895','KK9l','Gegenkonto 9893 - 9894 für die Aufteilung der Umsatzsteuer (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9896','KK9l','Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9897','KK9l','Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9899','KK9l','Gegenkonto zu 9899 - 9897 für die Aufteilung der Vorsteuer (EüR)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9m','KK9','Statistische Konten zu § 4 (4a) EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9910','KK9m','Gegenkonto zur Minderung der Entnahmen § 4 (4a) EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9911','KK9m','Minderung der Entnahmen § 4 (4a) EStG (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9912','KK9m','Erhöhung der Entnahmen § 4 (4a) EStG',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9913','KK9m','Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9n','KK9','Statistische Konten für Kinderbetreuungskosten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9918','KK9n','Kinderbetreuungskosten (wie Betriebsausgaben steuerlich anzusetzender Betrag)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','XXXXX','9919','KK9n','Gegenkonto zu 9918 (Haben)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','0','XXXXX','KK9o','KK9','Ausstehende Einlagen',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9920','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9921','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9922','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9923','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9924','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9925','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9926','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9927','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9928','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9929','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9930','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9931','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9932','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9933','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9934','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9935','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9936','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9937','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9938','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9939','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9940','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9941','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9942','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9943','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9944','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9945','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9946','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9947','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9948','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9949','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9950','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9951','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9952','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9953','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9954','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9955','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9956','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9957','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9958','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Owner''s Equity','9959','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Memo','9900',NULL,'SO Commitment',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Memo','9910',NULL,'PO Commitment',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','9','Liability','9901',NULL,'Steuer Verbindlichkeiten',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Asset','6000',NULL,'Work In Process',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Asset','6001',NULL,'Floor Stock',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Expense','6002',NULL,'Cost Of Production',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','6','Expense','6003',NULL,'Scrap',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','51130',NULL,'Outside Processing (Subcontract)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58400',NULL,'Using Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58500',NULL,'Method Change Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58600',NULL,'Rate Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','5','Expense','58700',NULL,'Mix Variance',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83100',NULL,'Labor (Absorbed)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83200',NULL,'Burden (Absorbed)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83300',NULL,'Overhead (Applied)',1); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, xxxx, 'SKR03','8','Expense','83400',NULL,'Average Cost Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1000, 'SKR03','0','XXXXX','RAP',NULL,'Abgenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1001, 'SKR03','0','XXXXX','BV',NULL,'Bestandsveränderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1002, 'SKR03','0','XXXXX','AEL',NULL,'Andere aktivierte Eigenleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1003, 'SKR03','0','XXXXX','VSK',NULL,'Verrechnete Stoffkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1004, 'SKR03','0','Asset','BA',NULL,'Bilanz - Aktiva',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1005, 'SKR03','0','Liability','BP',NULL,'Bilanz - Passiva',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1006, 'SKR03','0','Expense','GVA',NULL,'Gewinn u. Verlust - Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1007, 'SKR03','0','Revenue','GVE',NULL,'Gewinn u. Verlust - Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1008, 'SKR03','0','Asset','K0BA','BA','Anlage- und Kapitalkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1009, 'SKR03','0','Asset','K1BA','BA','Finanz- und Privatkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1010, 'SKR03','0','Asset','K3BA','BA','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1011, 'SKR03','0','Asset','K7BA','BA','Bestände an Erzeugnissen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1012, 'SKR03','0','Liability','K0BP','BP','Anlage- und Kapitalkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1013, 'SKR03','0','Liability','K1BP','BP','Finanz- und Privatkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1014, 'SKR03','0','Expense','K2GVA','GVA','Abgrenzungskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1015, 'SKR03','0','Expense','K3GVA','GVA','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1016, 'SKR03','0','Expense','K4GVA','GVA','Betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1017, 'SKR03','0','Expense','K8GVA','GVA','Erlöskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1018, 'SKR03','0','Revenue','K2GVE','GVE','Abgrenzungskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1019, 'SKR03','0','Revenue','K3GVE','GVE','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1020, 'SKR03','0','Revenue','K8GVE','GVE','Erlöskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1021, 'SKR03','0','Asset','K0BA01','K0BA','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1022, 'SKR03','0','Asset','1','K0BA01','Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1023, 'SKR03','0','Asset','K0BA02','K0BA','Aufwendungen für die Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1024, 'SKR03','0','Asset','2','K0BA02','Aufwendungen für die Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1025, 'SKR03','0','Asset','K0BA1','K0BA','Immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1026, 'SKR03','0','Asset','K0BA11','K0BA1','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1027, 'SKR03','0','Asset','10','K0BA11','Konzessionen gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1028, 'SKR03','0','Asset','15','0010','Konzessionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1029, 'SKR03','0','Asset','20','0010','Gewerbliche Schutzrechte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1030, 'SKR03','0','Asset','25','0010','ähnliche Rechte und Werte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1031, 'SKR03','0','Asset','27','0010','EDV-Software',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1032, 'SKR03','0','Asset','30','0010','Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1033, 'SKR03','0','Asset','K0BA12','K0BA1','Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1034, 'SKR03','0','Asset','35','K0BA12','Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1035, 'SKR03','0','Asset','K0BA13','K0BA1','Geleistete Anzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1036, 'SKR03','0','Asset','38','K0BA13','Anzahlungen auf Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1037, 'SKR03','0','Asset','39','K0BA13','Anzahlungen auf immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1038, 'SKR03','0','Asset','K0BA14','K0BA1','Verschmelzungsmehrwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1039, 'SKR03','0','Asset','40','K0BA14','Verschmelzungsmehrwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1040, 'SKR03','0','Asset','K0BA2','K0BA','Sachanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1041, 'SKR03','0','Asset','K0BA21','K0BA2','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1042, 'SKR03','0','Asset','50','K0BA21','Grundstücke grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1043, 'SKR03','0','Asset','59','0050','Grundstücksanteil des häuslichen Arbeitszimmers.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1044, 'SKR03','0','Asset','60','K0BA21','Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1045, 'SKR03','0','Asset','65','0060','Unbebaute Grundstücke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1046, 'SKR03','0','Asset','70','0060','Grundstücksgleiche Rechte - (erbbaurecht Daürwohnrecht)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1047, 'SKR03','0','Asset','75','0060','Grundstücke mit Substanzverzehr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1048, 'SKR03','0','Asset','K0BA22','K0BA2','Geleistete Anzahlungen und Anlagen im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1049, 'SKR03','0','Asset','79','K0BA22','Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1050, 'SKR03','0','Asset','80','K0BA21','Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1051, 'SKR03','0','Asset','85','0080','Grundstückswerte eigener bebauter Grundstücke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1052, 'SKR03','0','Asset','90','0080','Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1053, 'SKR03','0','Asset','100','0080','Fabrikbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1054, 'SKR03','0','Asset','110','0080','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1055, 'SKR03','0','Asset','111','0080','Außenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1056, 'SKR03','0','Asset','112','0080','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1057, 'SKR03','0','Asset','113','0080','Einrichtung Fabrik- und Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1058, 'SKR03','0','Asset','115','0080','Andere Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1059, 'SKR03','0','Asset','120','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1060, 'SKR03','0','Asset','129','K0BA22','Anzahlungen auf Geshäfts- Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1061, 'SKR03','0','Asset','140','K0BA21','Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1062, 'SKR03','0','Asset','145','K0BA21','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1063, 'SKR03','0','Asset','146','K0BA21','Aussenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1064, 'SKR03','0','Asset','147','K0BA21','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1065, 'SKR03','0','Asset','148','K0BA21','Einrichtungen für Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1066, 'SKR03','0','Asset','149','K0BA21','Gebäudeteil des häuslichen Arbeitszimmers',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1067, 'SKR03','0','Asset','150','K0BA22','Wohnbauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1068, 'SKR03','0','Asset','159','K0BA22','Anzahlgen auf Wohnbauten auf eigenen Grundstücken und grundstücksgleichen Rechten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1069, 'SKR03','0','Asset','160','K0BA21','Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1070, 'SKR03','0','Asset','165','0160','Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1071, 'SKR03','0','Asset','170','0160','Fabrikbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1072, 'SKR03','0','Asset','175','0160','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1073, 'SKR03','0','Asset','176','0160','Aussenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1074, 'SKR03','0','Asset','177','0160','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1075, 'SKR03','0','Asset','178','0160','Einrichtung für Fabrik- und Geschäftsbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1076, 'SKR03','0','Asset','179','K0BA21','Andere Bauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1077, 'SKR03','0','Asset','180','K0BA22','Geschäfts- Fabrik- und andere Bauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1078, 'SKR03','0','Asset','189','K0BA22','Anzahlungen auf Geschäfts- Fabrik- und andere Bauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1079, 'SKR03','0','Asset','190','K0BA21','Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1080, 'SKR03','0','Asset','191','K0BA21','Garagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1081, 'SKR03','0','Asset','192','K0BA21','Aussenanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1082, 'SKR03','0','Asset','193','K0BA21','Hof- und Wegebefestigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1083, 'SKR03','0','Asset','194','K0BA21','Einrichtungen für Wohnbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1084, 'SKR03','0','Asset','195','K0BA22','Wohnbauten im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1085, 'SKR03','0','Asset','199','K0BA22','Anzahlungen a. Wohnbauten auf fremden Grundstücken',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1086, 'SKR03','0','Asset','K0BA23','K0BA2','Technische Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1087, 'SKR03','0','Asset','200','K0BA23','Technische Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1088, 'SKR03','0','Asset','210','0200','Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1089, 'SKR03','0','Asset','220','0200','Maschinengebundene Werkzeuge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1090, 'SKR03','0','Asset','240','0200','Maschinelle Anlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1091, 'SKR03','0','Asset','260','0200','Transportanlagen und ähnliches',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1092, 'SKR03','0','Asset','280','0200','Betriebsvorrichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1093, 'SKR03','0','Asset','290','K0BA22','Technische Anlagen und Maschinen im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1094, 'SKR03','0','Asset','299','K0BA22','Anzahlungen auf technische Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1095, 'SKR03','0','Asset','K0BA24','K0BA2','Andere Anlagen Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1096, 'SKR03','0','Asset','300','K0BA24','Andere Anlagen Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1097, 'SKR03','0','Asset','310','0300','Andere Anlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1098, 'SKR03','0','Asset','320','0300','PKW',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1099, 'SKR03','0','Asset','350','0300','LKW',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1100, 'SKR03','0','Asset','380','0300','Sonstige Transportmittel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1101, 'SKR03','0','Asset','400','0300','Betriebsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1102, 'SKR03','0','Asset','410','0300','Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1103, 'SKR03','0','Asset','420','0300','Büroeinrichtung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1104, 'SKR03','0','Asset','430','0300','Ladeneinrichtung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1105, 'SKR03','0','Asset','440','0300','Werkzeuge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1106, 'SKR03','0','Asset','450','0300','Einbauten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1107, 'SKR03','0','Asset','460','0300','Gerüst- und Schalungsmaterial',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1108, 'SKR03','0','Asset','480','0300','Geringwertige Wirtschaftsgüter bis 410 Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1109, 'SKR03','0','Asset','490','0300','Sonstige Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1110, 'SKR03','0','Asset','498','K0BA22','Andere Anlagen Betriebs- und Geschäftsausstattung im Bau',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1111, 'SKR03','0','Asset','499','K0BA22','Anzahlungen auf andere Anlagen Betriebs- und Geschäftsausstattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1112, 'SKR03','0','Asset','K0BA3','K0BA','Finanzanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1113, 'SKR03','0','Asset','K0BA31','K0BA3','Anteile an verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1114, 'SKR03','0','Asset','500','K0BA31','Anteile an verbundenen Unternehmen (Anlagevermögen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1115, 'SKR03','0','Asset','504','K0BA31','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1116, 'SKR03','0','Asset','K0BA32','K0BA3','Ausleihungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1117, 'SKR03','0','Asset','505','K0BA32','Ausleihungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1118, 'SKR03','0','Asset','K0BA33','K0BA3','Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1119, 'SKR03','0','Asset','510','K0BA33','Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1120, 'SKR03','0','Asset','513','0510','Typisch stille Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1121, 'SKR03','0','Asset','516','0510','Atypisch stille Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1122, 'SKR03','0','Asset','517','0510','Andere Beteiligungen an Kapitalgesellschaften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1123, 'SKR03','0','Asset','518','0510','Andere Beteiligungen an Personengesellschaften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1124, 'SKR03','0','Asset','519','0510','Beteiligung einer GmbH&Co.KG an einer Komplementär GmbH',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1125, 'SKR03','0','Asset','K0BA34','K0BA3','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1126, 'SKR03','0','Asset','520','K0BA34','Ausleihungen an Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1127, 'SKR03','0','Asset','K0BA35','K0BA3','Wertpapiere des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1128, 'SKR03','0','Asset','525','K0BA35','Wertpapiere des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1129, 'SKR03','0','Asset','530','0525','Wertpapiere mit Gewinnbeteiligungsansprüchen die dem Halbeinkünfteverfahren unterliegen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1130, 'SKR03','0','Asset','535','0525','Festverzinsliche Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1131, 'SKR03','0','Asset','K0BA36','K0BA3','Sonstige Ausleihungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1132, 'SKR03','0','Asset','540','K0BA36','Sonstige Ausleihungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1133, 'SKR03','0','Asset','550','0540','Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1134, 'SKR03','0','Asset','K0BA37','K0BA3','Genossenschaftsanteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1135, 'SKR03','0','Asset','570','K0BA37','Genossenschaftsanteile zum langfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1136, 'SKR03','0','Asset','580','K0BA36','Ausleihungen an Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1137, 'SKR03','0','Asset','590','K0BA36','Ausleihungen an nahe stehende Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1138, 'SKR03','0','Asset','K0BA38','K0BA3','Rückdeckungsansprüche aus Lebensversicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1139, 'SKR03','0','Asset','595','K0BA38','Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1140, 'SKR03','0','Liability','K0BP1','K0BP','Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1141, 'SKR03','0','Liability','K0BP11','K0BP1','Anleihen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1142, 'SKR03','0','Liability','600','K0BP11','Anleihen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1143, 'SKR03','0','Liability','601','0600','Anleihen nicht konvertibel (bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1144, 'SKR03','0','Liability','605','0600','Anleihen nicht konvertibel (1-5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1145, 'SKR03','0','Liability','610','0600','Anleihen nicht konvertibel (größer 5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1146, 'SKR03','0','Liability','615','0600','Anleihen konvertibel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1147, 'SKR03','0','Liability','616','0600','Anleihen konvertibel(bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1148, 'SKR03','0','Liability','620','0600','Anleihen konvertibel(1-5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1149, 'SKR03','0','Liability','625','0600','Anleihen konvertibel(größer 5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1150, 'SKR03','0','Liability','K0BP12','K0BP1','Verbindlichkeiten gegenüber Kreditinstituten oder Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1151, 'SKR03','0','Liability','630','K0BP12','Verbindlichkeiten gegenüber Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1152, 'SKR03','0','Liability','631','0630','Verbindlichkeiten gegenüber Kreditinstitut ( bis 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1153, 'SKR03','0','Liability','640','0630','Verbindlichkeiten gegenüber Kreditinstitut (1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1154, 'SKR03','0','Liability','650','0630','Verbindlichkeiten gegenüber Kreditinstitut (größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1155, 'SKR03','0','Liability','660','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1156, 'SKR03','0','Liability','661','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen ( bis 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1157, 'SKR03','0','Liability','670','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1158, 'SKR03','0','Liability','680','0630','Verbindlichkeit. gegenüber Kreditinstituten aus Teilzahlungsverträgen (größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1159, 'SKR03','0','Liability','690','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1160, 'SKR03','0','Liability','691','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1161, 'SKR03','0','Liability','692','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1162, 'SKR03','0','Liability','693','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1163, 'SKR03','0','Liability','694','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1164, 'SKR03','0','Liability','695','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1165, 'SKR03','0','Liability','696','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1166, 'SKR03','0','Liability','697','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1167, 'SKR03','0','Liability','698','0630','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1168, 'SKR03','0','Liability','K0BP13','K0BP1','Verbindlichkeiten gegenüber Kreditinstitut',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1169, 'SKR03','0','Liability','699','K0BP13','Gegenkonto 0630-0689 bei Aufteilung der Konten 0690-0698',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1170, 'SKR03','0','Liability','K0BP14','K0BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1171, 'SKR03','0','Liability','700','K0BP14','Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1172, 'SKR03','0','Liability','701','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1173, 'SKR03','0','Liability','705','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1174, 'SKR03','0','Liability','710','0700','Verbindlichkeiten gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1175, 'SKR03','0','Liability','K0BP15','K0BP1','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1176, 'SKR03','0','Liability','715','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1177, 'SKR03','0','Liability','716','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1178, 'SKR03','0','Liability','720','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1179, 'SKR03','0','Liability','725','K0BP15','Verbindlichkeit. gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1180, 'SKR03','0','Liability','K0BP16','K0BP1','Sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1181, 'SKR03','0','Liability','730','K0BP16','Verbindlichkeit gegenüber Gesellschaftern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1182, 'SKR03','0','Liability','731','0730','Verbindlichkeit gegenüber Gesellschaftern ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1183, 'SKR03','0','Liability','740','0730','Verbindlichkeit gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1184, 'SKR03','0','Liability','750','0730','Verbindlichkeit gegenüber Gesellschaftern ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1185, 'SKR03','0','Liability','755','0730','Verbindlichkeit gegenüber Gesellschaftern für offene Ausschüttungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1186, 'SKR03','0','Liability','760','0730','Darlehen typisch stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1187, 'SKR03','0','Liability','761','0730','Darlehen typisch stiller Gesellschafter ( bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1188, 'SKR03','0','Liability','764','0730','Darlehen typisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1189, 'SKR03','0','Liability','767','0730','Darlehen typisch stiller Gesellschafter ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1190, 'SKR03','0','Liability','770','0730','Darlehen atypisch stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1191, 'SKR03','0','Liability','771','0730','Darlehen atypisch stiller Gesellschafter ( bis 1 Jahr)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1192, 'SKR03','0','Liability','774','0730','Darlehen atypisch stiller Gesellschafter ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1193, 'SKR03','0','Liability','777','0730','Darlehen atypisch stiller Gesellschafter ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1194, 'SKR03','0','Liability','780','0730','Partiarische Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1195, 'SKR03','0','Liability','781','0730','Partiarische Darlehen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1196, 'SKR03','0','Liability','784','0730','Partiarische Darlehen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1197, 'SKR03','0','Liability','787','0730','Partiarische Darlehen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1198, 'SKR03','0','Liability','790','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1199, 'SKR03','0','Liability','791','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1200, 'SKR03','0','Liability','792','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1201, 'SKR03','0','Liability','793','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1202, 'SKR03','0','Liability','794','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1203, 'SKR03','0','Liability','795','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1204, 'SKR03','0','Liability','796','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1205, 'SKR03','0','Liability','797','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1206, 'SKR03','0','Liability','798','0730','(frei in Bilanz kein Restlaufzeitvermerk)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1207, 'SKR03','0','Liability','799','0730','Gegenkonto 0730 - 0789 bei Aufteilung der Konten 0790 - 0798',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1208, 'SKR03','0','Owner''s Equity','K0BP2','K0BP','Kapital Kapitalgesellschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1209, 'SKR03','0','Owner''s Equity','K0BP21','K0BP2','Gezeichnetes Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1210, 'SKR03','0','Owner''s Equity','800','K0BP21','Gezeichnetes Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1211, 'SKR03','0','Owner''s Equity','K0BP22','K0BP2','Ausstehende Einlagen auf das gezeichnete Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1212, 'SKR03','0','Owner''s Equity','801','K0BP22','Ausstehende Einlagen auf das gezeichnete Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1213, 'SKR03','0','Owner''s Equity','802','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1214, 'SKR03','0','Owner''s Equity','803','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1215, 'SKR03','0','Owner''s Equity','804','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1216, 'SKR03','0','Owner''s Equity','805','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1217, 'SKR03','0','Owner''s Equity','806','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1218, 'SKR03','0','Owner''s Equity','807','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1219, 'SKR03','0','Owner''s Equity','808','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1220, 'SKR03','0','Owner''s Equity','809','0801','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1221, 'SKR03','0','Owner''s Equity','810','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1222, 'SKR03','0','Owner''s Equity','811','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1223, 'SKR03','0','Owner''s Equity','812','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1224, 'SKR03','0','Owner''s Equity','813','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1225, 'SKR03','0','Owner''s Equity','814','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1226, 'SKR03','0','Owner''s Equity','815','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1227, 'SKR03','0','Owner''s Equity','816','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1228, 'SKR03','0','Owner''s Equity','817','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1229, 'SKR03','0','Owner''s Equity','818','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1230, 'SKR03','0','Owner''s Equity','819','0801','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert (Aktivausweis)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1231, 'SKR03','0','Owner''s Equity','K0BP23','K0BP2','Nicht eingeforderte ausstehende Einlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1232, 'SKR03','0','Owner''s Equity','820','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1233, 'SKR03','0','Owner''s Equity','821','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1234, 'SKR03','0','Owner''s Equity','822','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1235, 'SKR03','0','Owner''s Equity','823','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1236, 'SKR03','0','Owner''s Equity','824','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1237, 'SKR03','0','Owner''s Equity','825','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1238, 'SKR03','0','Owner''s Equity','826','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1239, 'SKR03','0','Owner''s Equity','827','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1240, 'SKR03','0','Owner''s Equity','828','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1241, 'SKR03','0','Owner''s Equity','829','K0BP23','Ausstehende Einlagen auf das gezeichnete Kapital nicht eingefordert (Passivausweis von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konten 0830 - 0838 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1242, 'SKR03','0','Owner''s Equity','K0BP24','K0BP2','Eingeforderte noch ausstehende Kapitaleinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1243, 'SKR03','0','Owner''s Equity','830','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1244, 'SKR03','0','Owner''s Equity','831','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1245, 'SKR03','0','Owner''s Equity','832','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1246, 'SKR03','0','Owner''s Equity','833','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1247, 'SKR03','0','Owner''s Equity','834','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1248, 'SKR03','0','Owner''s Equity','835','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1249, 'SKR03','0','Owner''s Equity','836','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1250, 'SKR03','0','Owner''s Equity','837','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1251, 'SKR03','0','Owner''s Equity','838','K0BP24','Ausstehende Einlagen auf das gezeichnete Kapital eingefordert ( Forderungen nicht eingeforderte ausstehende Einlagen s. Konten 0820 - 0829 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1252, 'SKR03','0','Owner''s Equity','K0BP25','K0BP2','Eingeforderte Nachschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1253, 'SKR03','0','Owner''s Equity','839','K0BP25','Eingeforderte Nachschüsse ( Forderungen Gegenkonto 0845 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1254, 'SKR03','0','Owner''s Equity','K0BP3','K0BP','Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1255, 'SKR03','0','Owner''s Equity','K0BP31','K0BP3','Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1256, 'SKR03','0','Owner''s Equity','840','K0BP31','Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1257, 'SKR03','0','Owner''s Equity','841','0840','Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1258, 'SKR03','0','Owner''s Equity','842','0840','Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1259, 'SKR03','0','Owner''s Equity','843','0840','Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1260, 'SKR03','0','Owner''s Equity','844','0840','Kapitalrücklage durch andere Zuzahlungen in das Eigenkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1261, 'SKR03','0','Owner''s Equity','845','0840','Eingefordertes Nachschusskapital ( Gegenkonto 0839 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1262, 'SKR03','0','Owner''s Equity','K0BP4','K0BP','Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1263, 'SKR03','0','Owner''s Equity','K0BP41','K0BP4','Gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1264, 'SKR03','0','Owner''s Equity','846','K0BP41','Gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1265, 'SKR03','0','Owner''s Equity','K0BP42','K0BP4','Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1266, 'SKR03','0','Owner''s Equity','850','K0BP42','Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1267, 'SKR03','0','Owner''s Equity','K0BP43','K0BP4','Satzungsmässige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1268, 'SKR03','0','Owner''s Equity','851','K0BP43','Satzungsmässige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1269, 'SKR03','0','Owner''s Equity','K0BP44','K0BP4','Andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1270, 'SKR03','0','Owner''s Equity','855','K0BP44','Andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1271, 'SKR03','0','Owner''s Equity','856','K0BP44','Eigenkapitalanteil von Wertaufholungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1272, 'SKR03','0','Owner''s Equity','K0BP45','K0BP4','Gewinnvortrag oder Verlustvortrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1273, 'SKR03','0','Owner''s Equity','860','K0BP45','Gewinnvortrag vor Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1274, 'SKR03','0','Owner''s Equity','868','K0BP45','Verlustvortrag vor Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1275, 'SKR03','0','Owner''s Equity','K0BP46','K0BP4','Vortrag auf neue Rechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1276, 'SKR03','0','Owner''s Equity','869','K0BP46','Vortrag auf neue Rechnung (Bilanz)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1277, 'SKR03','0','Owner''s Equity','K0BP5','K0BP','Kapital Personenhandelsgesellschaft vollhafter/Einzelunternehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1278, 'SKR03','0','Owner''s Equity','870','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1279, 'SKR03','0','Owner''s Equity','871','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1280, 'SKR03','0','Owner''s Equity','872','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1281, 'SKR03','0','Owner''s Equity','873','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1282, 'SKR03','0','Owner''s Equity','874','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1283, 'SKR03','0','Owner''s Equity','875','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1284, 'SKR03','0','Owner''s Equity','876','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1285, 'SKR03','0','Owner''s Equity','877','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1286, 'SKR03','0','Owner''s Equity','878','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1287, 'SKR03','0','Owner''s Equity','879','K0BP5','Festkapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1288, 'SKR03','0','Owner''s Equity','880','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1289, 'SKR03','0','Owner''s Equity','881','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1290, 'SKR03','0','Owner''s Equity','882','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1291, 'SKR03','0','Owner''s Equity','883','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1292, 'SKR03','0','Owner''s Equity','884','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1293, 'SKR03','0','Owner''s Equity','885','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1294, 'SKR03','0','Owner''s Equity','886','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1295, 'SKR03','0','Owner''s Equity','887','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1296, 'SKR03','0','Owner''s Equity','888','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1297, 'SKR03','0','Owner''s Equity','889','K0BP5','Variables Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1298, 'SKR03','0','Owner''s Equity','890','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1299, 'SKR03','0','Owner''s Equity','891','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1300, 'SKR03','0','Owner''s Equity','892','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1301, 'SKR03','0','Owner''s Equity','893','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1302, 'SKR03','0','Owner''s Equity','894','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1303, 'SKR03','0','Owner''s Equity','895','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1304, 'SKR03','0','Owner''s Equity','896','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1305, 'SKR03','0','Owner''s Equity','897','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1306, 'SKR03','0','Owner''s Equity','898','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1307, 'SKR03','0','Owner''s Equity','899','K0BP5','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1308, 'SKR03','0','Owner''s Equity','K0BP6','K0BP','Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1309, 'SKR03','0','Owner''s Equity','900','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1310, 'SKR03','0','Owner''s Equity','901','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1311, 'SKR03','0','Owner''s Equity','902','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1312, 'SKR03','0','Owner''s Equity','903','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1313, 'SKR03','0','Owner''s Equity','904','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1314, 'SKR03','0','Owner''s Equity','905','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1315, 'SKR03','0','Owner''s Equity','906','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1316, 'SKR03','0','Owner''s Equity','907','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1317, 'SKR03','0','Owner''s Equity','908','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1318, 'SKR03','0','Owner''s Equity','909','K0BP6','Kommandit-Kapital',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1319, 'SKR03','0','Owner''s Equity','910','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1320, 'SKR03','0','Owner''s Equity','911','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1321, 'SKR03','0','Owner''s Equity','912','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1322, 'SKR03','0','Owner''s Equity','913','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1323, 'SKR03','0','Owner''s Equity','914','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1324, 'SKR03','0','Owner''s Equity','915','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1325, 'SKR03','0','Owner''s Equity','916','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1326, 'SKR03','0','Owner''s Equity','917','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1327, 'SKR03','0','Owner''s Equity','918','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1328, 'SKR03','0','Owner''s Equity','919','K0BP6','Verlustausgleichskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1329, 'SKR03','0','Owner''s Equity','920','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1330, 'SKR03','0','Owner''s Equity','921','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1331, 'SKR03','0','Owner''s Equity','922','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1332, 'SKR03','0','Owner''s Equity','923','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1333, 'SKR03','0','Owner''s Equity','924','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1334, 'SKR03','0','Owner''s Equity','925','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1335, 'SKR03','0','Owner''s Equity','926','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1336, 'SKR03','0','Owner''s Equity','927','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1337, 'SKR03','0','Owner''s Equity','928','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1338, 'SKR03','0','Owner''s Equity','929','K0BP6','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1339, 'SKR03','0','Owner''s Equity','K0BP7','K0BP','Sonderposten mit Rücklageanteil',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1340, 'SKR03','0','Owner''s Equity','K0BP71','K0BP7','Sonderposten mit Rücklageanteil',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1341, 'SKR03','0','Owner''s Equity','930','K0BP71','Sonderposten mit Rücklageanteil steuerfreie Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1342, 'SKR03','0','Owner''s Equity','931','K0BP71','Sonderposten mit Rücklageanteil nach § 6b EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1343, 'SKR03','0','Owner''s Equity','932','K0BP71','Sonderposten mit Rücklageanteil nach Abschnitt 35 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1344, 'SKR03','0','Owner''s Equity','933','K0BP71','Sonderposten mit Rücklageanteil nach § 6d EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1345, 'SKR03','0','Owner''s Equity','934','K0BP71','Sonderposten mit Rücklageanteil nach § 1 EntwLStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1346, 'SKR03','0','Owner''s Equity','K0BP72','K0BP7','Sonderposten aus der Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1347, 'SKR03','0','Owner''s Equity','935','K0BP72','Sonderposten aus der Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1348, 'SKR03','0','Owner''s Equity','936','K0BP71','Sonderposten mit Rücklageanteil nach § 7 d EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1349, 'SKR03','0','Owner''s Equity','937','K0BP71','Sonderposten mit Rücklageanteil nach § 79 EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1350, 'SKR03','0','Owner''s Equity','938','K0BP71','Sonderposten mit Rücklageanteil nach § 80 EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1351, 'SKR03','0','Owner''s Equity','939','K0BP71','Sonderposten mit Rücklageanteil nach § 52 Abs.16 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1352, 'SKR03','0','Owner''s Equity','940','K0BP71','Sonderposten mit Rücklageanteil Sonderabschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1353, 'SKR03','0','Owner''s Equity','941','K0BP71','Sonderposten mit Rücklageanteil § 82 a EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1354, 'SKR03','0','Owner''s Equity','942','K0BP71','Sonderposten mit Rücklageanteil § 82 d EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1355, 'SKR03','0','Owner''s Equity','943','K0BP71','Sonderposten mit Rücklageanteil nach § 82 e EStDV',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1356, 'SKR03','0','Owner''s Equity','944','K0BP71','Sonderposten mit Rücklageanteil nach § 14 BerlinFG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1357, 'SKR03','0','Owner''s Equity','945','K0BP71','Sonderposten mit Rücklageanteil für Förderung nach § 3 Zonen-RFG/§ 4-6 FördergebietsG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1358, 'SKR03','0','Owner''s Equity','946','K0BP71','Sonderposten mit Rücklageanteil nach § 4d EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1359, 'SKR03','0','Owner''s Equity','947','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.1 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1360, 'SKR03','0','Owner''s Equity','948','K0BP71','Sonderposten mit Rücklageanteil nach § 7g Abs.3 u.7 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1361, 'SKR03','0','Owner''s Equity','K0BP73','K0BP7','Sonderposten für Zuschüsse und Zulagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1362, 'SKR03','0','Owner''s Equity','949','K0BP73','Sonderposten für Zuschüsse und Zulagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1363, 'SKR03','0','Liability','K0BP8','K0BP','Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1364, 'SKR03','0','Liability','K0BP81','K0BP8','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1365, 'SKR03','0','Liability','950','K0BP81','Rückstellungen für Pensionen und ähnliche Verpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1366, 'SKR03','0','Liability','K0BP82','K0BP8','Steuerrückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1367, 'SKR03','0','Liability','955','K0BP82','Steuerrückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1368, 'SKR03','0','Liability','957','0955','Gewerbesteuerrückstellung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1369, 'SKR03','0','Liability','963','0955','Körperschaftsteuerrückstellung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1370, 'SKR03','0','Liability','K0BP83','K0BP8','Sonstige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1371, 'SKR03','0','Liability','965','K0BP83','Rückstellungen für Personalkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1372, 'SKR03','0','Liability','966','K0BP83','Rückstellungen zur Erfüllung der Aufbewahrungspflichten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1373, 'SKR03','0','Liability','969','K0BP82','Rückstellung für latente Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1374, 'SKR03','0','Liability','970','K0BP83','Sonstige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1375, 'SKR03','0','Liability','971','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung in den ersten drei Monaten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1376, 'SKR03','0','Liability','972','K0BP83','Rückstellungen für unterlassene Aufwendungen für Instandhaltung Nachholung innerhalb des 4. bis 12. Monats',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1377, 'SKR03','0','Liability','973','K0BP83','Rückstellungen für Abraum- und Abfallbeseitigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1378, 'SKR03','0','Liability','974','K0BP83','Rückstellungen für Gewährleistungen ( Gegenkonto 4790 )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1379, 'SKR03','0','Liability','976','K0BP83','Rückstellungen für drohende Verluste aus schwebenden Geschäften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1380, 'SKR03','0','Liability','977','K0BP83','Rückstellungen für Abschluss- und Prüfungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1381, 'SKR03','0','Liability','978','K0BP83','Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1382, 'SKR03','0','Liability','979','K0BP83','Rückstellungen für Umweltschutz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1383, 'SKR03','0','Asset','K0BA4','K0BA','Abgenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1384, 'SKR03','0','Asset','K0BA41','K0BA4','Rechnungsabgrenzungsposten (Aktiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1385, 'SKR03','0','Asset','980','K0BA41','Aktive Rechnungsabgrenzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1386, 'SKR03','0','Asset','K0BA42','K0BA4','Abgrenzung latenter Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1387, 'SKR03','0','Asset','983','K0BA42','Abgrenzung aktive latente Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1388, 'SKR03','0','Liability','984','K0BA41','Als Aufwand berücksichtigte Zölle und Verbrauchsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1389, 'SKR03','0','Liability','985','K0BA41','Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1390, 'SKR03','0','Liability','986','K0BA41','Damnum / Disagio',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1391, 'SKR03','0','Liability','K0BP9','K0BP','Abgenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1392, 'SKR03','0','Liability','K0BP91','K0BP9','Rechnungsabgrenzungsposten (Passiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1393, 'SKR03','0','Liability','990','K0BP91','Passive Rechnungsabgrenzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1394, 'SKR03','0','XXXXX','RAP1','RAP','Sonstige Aktiva oder sonstige Passiva',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1395, 'SKR03','0','XXXXX','992','RAP1','Abgenzungsposten zur unterjährigen Kostenverrechnung für BWA',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1396, 'SKR03','0','XXXXX','RAP2','RAP','Forderungen aus Lieferungen und Leistungen H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1397, 'SKR03','0','XXXXX','996','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1398, 'SKR03','0','XXXXX','997','RAP2','Pauschalwertberichtigung auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1399, 'SKR03','0','XXXXX','998','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1400, 'SKR03','0','XXXXX','999','RAP2','Einzelwertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1401, 'SKR03','0','Asset','K1BA1','K1BA','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1402, 'SKR03','0','Asset','K1BA11','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1403, 'SKR03','1','Asset','1000','K1BA11','Kasse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1404, 'SKR03','1','Asset','1010','1000','Nebenkasse 1',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1405, 'SKR03','1','Asset','1020','1000','Nebenkasse 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1406, 'SKR03','0','Asset','K1BA12','K1BA1','Schecks Kassenbestand Bundesbank- und Postbankguthaben Guthaben bei Kreditinstituten und Schecks oder Verbindlichkeiten gegenüber Kreditinstituten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1407, 'SKR03','1','Asset','1100','K1BA12','Postbank',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1408, 'SKR03','1','Asset','1110','1100','Postbank 1',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1409, 'SKR03','1','Asset','1120','1100','Postbank 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1410, 'SKR03','1','Asset','1130','1100','Postbank 3',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1411, 'SKR03','1','Asset','1190','1100','LZB-Guthaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1412, 'SKR03','1','Asset','1195','1100','Bundesbankguthaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1413, 'SKR03','1','Asset','1200','K1BA12','Bank',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1414, 'SKR03','1','Asset','1201','1200','Bank Kontobewegung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1415, 'SKR03','1','Asset','1202','1200','Bank nicht identifizierte Zahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1416, 'SKR03','1','Asset','1203','1200','Bank nicht zugeordnete Zahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1417, 'SKR03','1','Asset','1210','1200','Bank 1',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1418, 'SKR03','1','Asset','1220','1200','Bank 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1419, 'SKR03','1','Asset','1230','1200','Bank 3',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1420, 'SKR03','1','Asset','1240','1200','Bank 4',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1421, 'SKR03','1','Asset','1250','1200','Bank 5',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1422, 'SKR03','1','Asset','1290','1200','Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1423, 'SKR03','1','Asset','1295','1200','Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1424, 'SKR03','0','Asset','K1BA13','K1BA1','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1425, 'SKR03','1','Asset','1300','K1BA13','Wechsel aus Lieferung und Leistung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1426, 'SKR03','1','Asset','1301','K1BA13','Wechsel aus Lieferung und Leistung bis 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1427, 'SKR03','1','Asset','1302','K1BA13','Wechsel aus Lieferung und Leistung größer 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1428, 'SKR03','1','Asset','1305','K1BA13','Wechsel aus Lieferung und Leistung Bundesbankfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1429, 'SKR03','0','Asset','K1BA14','K1BA1','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1430, 'SKR03','1','Asset','1310','K1BA14','Besitzwechsel gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1431, 'SKR03','1','Asset','1311','K1BA14','Besitzwechsel gegen verbundene Unternehmen bis 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1432, 'SKR03','1','Asset','1312','K1BA14','Besitzwechsel gegen verbundene Unternehmen größer 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1433, 'SKR03','1','Asset','1315','K1BA14','Besitzwechsel gegen verbundene Unternehmen Bundesbankfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1434, 'SKR03','0','Asset','K1BA15','K1BA1','Forderungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1435, 'SKR03','1','Asset','1320','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1436, 'SKR03','1','Asset','1321','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bis 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1437, 'SKR03','1','Asset','1322','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht größer 1 Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1438, 'SKR03','1','Asset','1325','K1BA15','Besitzwechsel gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht bundesbankfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1439, 'SKR03','0','Asset','K1BA16','K1BA1','Sonstige Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1440, 'SKR03','1','Asset','1327','K1BA16','Finanzwechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1441, 'SKR03','1','Asset','1329','K1BA16','Andere Wertpapiere mit unwesentlichen Wertschwankungen im Sinne Textziffer 18 DRS 2',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1442, 'SKR03','0','Asset','K1BA17','K1BA1','Kassenbestand Bundesbankguthaben Guthaben bei Kreditinstituten und Schecks',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1443, 'SKR03','1','Asset','1330','K1BA17','Schecks',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1444, 'SKR03','1','Liability','1332','K1BA17','Bezahlung selektiert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1445, 'SKR03','0','Asset','K1BA2','K1BA','Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1446, 'SKR03','0','Asset','K1BA21','K1BA2','Anteile an verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1447, 'SKR03','1','Asset','1340','K1BA21','Anteile an verbundenen Unternehmen (Umlaufvermögen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1448, 'SKR03','1','Asset','1344','K1BA21','Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1449, 'SKR03','0','Asset','K1BA22','K1BA2','Eingene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1450, 'SKR03','1','Asset','1345','K1BA22','Eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1451, 'SKR03','0','Asset','K1BA23','K1BA2','Sonstige Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1452, 'SKR03','1','Asset','1348','K1BA23','Sonstige Wertpapiere',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1453, 'SKR03','1','Asset','1349','K1BA23','Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1454, 'SKR03','0','Asset','K1BA3','K1BA','Forderungen und sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1455, 'SKR03','0','Asset','K1BA31','K1BA3','Sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1456, 'SKR03','1','Asset','1350','K1BA31','GmbH-Anteile zum kurzfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1457, 'SKR03','1','Asset','1352','K1BA31','Genossenschaftsanteile zum kurzfristigen Verbleib',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1458, 'SKR03','1','Asset','1355','K1BA31','Ansprüche aus Rückdeckungsversicherung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1459, 'SKR03','0','Asset','K1BA32','K1BA3','Sonstige Vermögensgegenstände oder sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1460, 'SKR03','1','Asset','1360','K1BA32','Geldtransit',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1461, 'SKR03','1','Asset','1370','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG ergebniswirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1462, 'SKR03','1','Asset','1371','K1BA32','Verrechnungskonto für Gewinnermittlung § 4/3 EStG nicht ergebniswirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1463, 'SKR03','1','Asset','1372','K1BA32','Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1464, 'SKR03','1','Asset','1380','K1BA32','überleitungskonto Kostenstelle',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1465, 'SKR03','1','Asset','1390','K1BA32','Verrechnungskonto Ist-Versteuerung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1466, 'SKR03','0','Asset','K1BA33','K1BA3','Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1467, 'SKR03','1','Asset','1400','K1BA33','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1468, 'SKR03','1','Liability','1401','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1469, 'SKR03','1','Liability','1402','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1470, 'SKR03','1','Liability','1403','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1471, 'SKR03','1','Liability','1404','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1472, 'SKR03','1','Liability','1405','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1473, 'SKR03','1','Liability','1406','1400','Forderungen aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1474, 'SKR03','1','Asset','1410','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1475, 'SKR03','1','Asset','1411','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1476, 'SKR03','1','Asset','1412','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1477, 'SKR03','1','Asset','1413','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1478, 'SKR03','1','Asset','1414','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1479, 'SKR03','1','Asset','1415','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1480, 'SKR03','1','Asset','1416','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1481, 'SKR03','1','Asset','1417','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1482, 'SKR03','1','Asset','1418','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1483, 'SKR03','1','Asset','1419','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1484, 'SKR03','1','Asset','1420','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1485, 'SKR03','1','Asset','1421','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1486, 'SKR03','1','Asset','1422','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1487, 'SKR03','1','Asset','1423','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1488, 'SKR03','1','Asset','1424','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1489, 'SKR03','1','Asset','1425','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1490, 'SKR03','1','Asset','1426','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1491, 'SKR03','1','Asset','1427','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1492, 'SKR03','1','Asset','1428','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1493, 'SKR03','1','Asset','1429','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1494, 'SKR03','1','Asset','1430','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1495, 'SKR03','1','Asset','1431','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1496, 'SKR03','1','Asset','1432','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1497, 'SKR03','1','Asset','1433','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1498, 'SKR03','1','Asset','1434','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1499, 'SKR03','1','Asset','1435','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1500, 'SKR03','1','Asset','1436','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1501, 'SKR03','1','Asset','1437','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1502, 'SKR03','1','Asset','1438','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1503, 'SKR03','1','Asset','1439','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1504, 'SKR03','1','Asset','1440','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1505, 'SKR03','1','Asset','1441','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1506, 'SKR03','1','Asset','1442','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1507, 'SKR03','1','Asset','1443','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1508, 'SKR03','1','Asset','1444','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1509, 'SKR03','1','Asset','1445','1400','Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmens (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1510, 'SKR03','1','Asset','1446','1400','Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1511, 'SKR03','1','Asset','1447','1400','Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1512, 'SKR03','1','Asset','1448','1400','Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1513, 'SKR03','1','Asset','1449','1400','Gegenkonto 1445-1448 bei Aufteilung der Forderungen nach Steuersätzen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1514, 'SKR03','1','Asset','1450','1400','Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1515, 'SKR03','1','Asset','1451','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1516, 'SKR03','1','Asset','1452','1400','Projekt Werte in Arbeit',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1517, 'SKR03','1','Asset','1455','1400','Forderungen aus Lieferungen und Leistungen ohne Kontokorrent ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1518, 'SKR03','1','Asset','1460','1400','Zweifelhafte Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1519, 'SKR03','1','Asset','1461','1400','Zweifelhafte Forderungen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1520, 'SKR03','1','Asset','1465','1400','Zweifelhafte Forderungen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1521, 'SKR03','0','Asset','K1BA34','K1BA3','Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1522, 'SKR03','1','Asset','1470','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1523, 'SKR03','1','Asset','1471','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1524, 'SKR03','1','Asset','1475','K1BA34','Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1525, 'SKR03','0','Asset','K1BA35','K1BA3','Forderungen gegen verbundene Unternehmen H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1526, 'SKR03','1','Asset','1478','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1527, 'SKR03','1','Asset','1479','K1BA35','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1528, 'SKR03','0','Asset','K1BA36','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1529, 'SKR03','1','Asset','1480','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1530, 'SKR03','1','Asset','1481','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1531, 'SKR03','1','Asset','1485','K1BA36','Forderungen aus Lieferungen und Leistungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1532, 'SKR03','0','Asset','K1BA37','K1BA3','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1533, 'SKR03','1','Asset','1488','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1534, 'SKR03','1','Asset','1489','K1BA37','Wertberichtigungen auf Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1535, 'SKR03','1','Asset','1490','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1536, 'SKR03','1','Asset','1491','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1537, 'SKR03','1','Asset','1495','K1BA33','Forderungen aus Lieferungen und Leistungen gegen Gesellschafter ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1538, 'SKR03','0','Asset','K1BA38','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1539, 'SKR03','1','Asset','1498','K1BA38','Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1540, 'SKR03','0','Asset','K1BA39','K1BA3','Forderungen aus Lieferungen und Leistungen H-Saldo oder sonstige Verbindlichkeiten S-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1541, 'SKR03','1','Asset','1499','K1BA39','Gegenkonto 1451 - 1497 bei Aufteilung Debitorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1542, 'SKR03','1','Asset','1500','K1BA31','Sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1543, 'SKR03','1','Asset','1501','1500','Sonstige Vermögensgegenstände ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1544, 'SKR03','1','Asset','1502','1500','Sonstige Vermögensgegenstände ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1545, 'SKR03','1','Asset','1503','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1546, 'SKR03','1','Asset','1504','1500','Forderungen gegen Vorstandsmitglieder und Geschäftsführer ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1547, 'SKR03','1','Asset','1505','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1548, 'SKR03','1','Asset','1506','1500','Forderungen gegen Aufsichtsrats- und Beiratsmitglieder ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1549, 'SKR03','1','Asset','1507','1500','Forderungen gegen Gesellschafter ( bis 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1550, 'SKR03','1','Asset','1508','1500','Forderungen gegen Gesellschafter ( größer 1Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1551, 'SKR03','0','Asset','K1BA3a','K1BA3','Geleistete Anzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1552, 'SKR03','1','Asset','1510','K1BA3a','Geleistete Anzahlungen auf Vorräte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1553, 'SKR03','1','Asset','1511','1510','Geleistete Anzahlungen 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1554, 'SKR03','1','Asset','1516','1510','Geleistete Anzahlungen 15% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1555, 'SKR03','1','Asset','1517','1510','Geleistete Anzahlungen 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1556, 'SKR03','1','Asset','1518','1510','Geleistete Anzahlungen 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1557, 'SKR03','1','Asset','1520',NULL,'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1558, 'SKR03','1','Asset','1521','K1BA31','Agenturwarenabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1559, 'SKR03','1','Asset','1525','K1BA32','Kautionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1560, 'SKR03','1','Asset','1526','K1BA33','Kautionen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1561, 'SKR03','1','Asset','1527','K1BA34','Kautionen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1562, 'SKR03','1','Asset','1528','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 2 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1563, 'SKR03','1','Asset','1529','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 2 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1564, 'SKR03','1','Asset','1530','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1565, 'SKR03','1','Asset','1531','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1566, 'SKR03','1','Asset','1537','K1BA31','Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1567, 'SKR03','1','Asset','1540','K1BA31','Steuerüberzahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1568, 'SKR03','1','Asset','1542','K1BA31','Steuererstattungsansprüche gegenüber anderen EG-Ländern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1569, 'SKR03','1','Asset','1543','K1BA31','Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1570, 'SKR03','1','Asset','1545','K1BA31','Umsatzsteuerforderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1571, 'SKR03','1','Asset','1547','K1BA31','Forderungen aus entrichteten Verbrauchsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1572, 'SKR03','1','Asset','1548','K1BA32','Vorsteuer im Folgejahr abziehbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1573, 'SKR03','1','Asset','1549','K1BA31','Körperschaftsteuerrückforderung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1574, 'SKR03','1','Asset','1550','K1BA31','Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1575, 'SKR03','1','Asset','1551','K1BA31','Darlehen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1576, 'SKR03','1','Asset','1555','K1BA31','Darlehen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1577, 'SKR03','1','Asset','1556','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1578, 'SKR03','1','Asset','1557','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG bewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1579, 'SKR03','1','Asset','1558','K1BA32','Nachträgliche abziehbare Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1580, 'SKR03','1','Asset','1559','K1BA32','Zurückzuzahlende Vorsteuer § 15a Abs. 1 UStG unbewegliche Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1581, 'SKR03','1','Asset','1560','K1BA32','Aufzuteilende Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1582, 'SKR03','1','Asset','1561','K1BA32','Aufzuteilende Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1583, 'SKR03','1','Asset','1562','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1584, 'SKR03','1','Asset','1563','K1BA32','Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1585, 'SKR03','1','Asset','1565','K1BA32','Aufzuteilende Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1586, 'SKR03','1','Asset','1566','K1BA32','Aufzuteilende Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1587, 'SKR03','1','Asset','1567','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1588, 'SKR03','1','Asset','1568','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 16 %',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1589, 'SKR03','1','Asset','1569','K1BA32','Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1590, 'SKR03','1','Asset','1570','K1BA32','Abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1591, 'SKR03','1','Asset','1571','K1BA32','Abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1592, 'SKR03','1','Asset','1572','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1593, 'SKR03','1','Asset','1573','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1594, 'SKR03','1','Asset','1574','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1595, 'SKR03','1','Asset','1575','K1BA32','Abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1596, 'SKR03','1','Asset','1576','K1BA32','Abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1597, 'SKR03','1','Asset','1577','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1598, 'SKR03','1','Asset','1578','K1BA32','Abziehbare Vorsteuer nach § 13b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1599, 'SKR03','1','Asset','1579','K1BA32','Abziehbare Vorsteuer nach § 13b UStG 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1600, 'SKR03','1','Asset','1580','K1BA32','Gegenkonto Vorsteuer § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1601, 'SKR03','1','Asset','1581','K1BA32','Auflösung Vorsteuer aus Vorjahr § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1602, 'SKR03','1','Asset','1582','K1BA32','Vorsteuer aus Investitionen § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1603, 'SKR03','1','Asset','1583','K1BA32','Gegenkonto für Vorsteuer nach Durchschnittssätzen für § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1604, 'SKR03','1','Asset','1584','K1BA32','Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferabten ohne Umsatzsteuer-Identifikationsnummer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1605, 'SKR03','1','Asset','1585','K1BA32','Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1606, 'SKR03','1','Asset','1587','K1BA32','Vorsteuer nach allgemeinen Durchschnittssätzen UStVA Kz. 63',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1607, 'SKR03','1','Asset','1588','K1BA32','Bezahlte Einfuhrumsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1608, 'SKR03','1','Asset','1590','K1BA32','Durchlaufende Posten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1609, 'SKR03','1','Asset','1591','K1BA32','Durchlaufende Posten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1610, 'SKR03','1','Asset','1592','K1BA32','Fremdgeld',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1611, 'SKR03','0','Asset','K1BA3b','K1BA3','Sonstige Verbindlichkeiten S-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1612, 'SKR03','1','Asset','1593','K1BA3b','Verrechnungskonto erhaltene Anzahlungen bei Buchung über Debitorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1613, 'SKR03','1','Asset','1594','K1BA34','Forderungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1614, 'SKR03','1','Asset','1595','1594','Forderungen gegen verbundene Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1615, 'SKR03','1','Asset','1596','1594','Forderungen gegen verbundene Unternehmen ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1616, 'SKR03','1','Asset','1597','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1617, 'SKR03','1','Asset','1598','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1618, 'SKR03','1','Asset','1599','K1BA36','Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1619, 'SKR03','0','Liability','K1BP1','K1BP','Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1620, 'SKR03','0','Liability','K1BP11','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen oder sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1621, 'SKR03','1','Liability','1600','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1622, 'SKR03','1','Liability','1601','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1623, 'SKR03','1','Liability','1602','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1624, 'SKR03','1','Liability','1603','1600','Verbindlichkeiten aus Lieferungen und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1625, 'SKR03','1','Liability','1605','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1626, 'SKR03','1','Liability','1606','1600','Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1627, 'SKR03','1','Liability','1607','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1628, 'SKR03','1','Liability','1609','1600','Gegenkonto 1605 - 1607 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1629, 'SKR03','1','Liability','1610','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1630, 'SKR03','1','Liability','1611','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1631, 'SKR03','1','Liability','1612','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1632, 'SKR03','1','Liability','1613','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1633, 'SKR03','1','Liability','1614','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1634, 'SKR03','1','Liability','1615','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1635, 'SKR03','1','Liability','1616','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1636, 'SKR03','1','Liability','1617','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1637, 'SKR03','1','Liability','1618','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1638, 'SKR03','1','Liability','1619','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1639, 'SKR03','1','Liability','1620','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1640, 'SKR03','1','Liability','1621','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1641, 'SKR03','1','Liability','1622','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1642, 'SKR03','1','Liability','1623','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1643, 'SKR03','1','Liability','1624','1600','Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1644, 'SKR03','1','Liability','1625','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1645, 'SKR03','1','Liability','1626','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1646, 'SKR03','1','Liability','1628','1600','Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1647, 'SKR03','0','Liability','K1BP12','K1BP1','Verbindlichkeiten gegenüber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1648, 'SKR03','1','Liability','1630','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1649, 'SKR03','1','Liability','1631','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1650, 'SKR03','1','Liability','1635','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1651, 'SKR03','1','Liability','1638','K1BP12','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1652, 'SKR03','0','Liability','K1BP13','K1BP1','Verbindlichkeiten gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht oder Forderungen gegen Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1653, 'SKR03','1','Liability','1640','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1654, 'SKR03','1','Liability','1641','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1655, 'SKR03','1','Liability','1645','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1656, 'SKR03','1','Liability','1648','K1BP13','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen mit denen ein Beteiligungsverhältnis besteht ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1657, 'SKR03','1','Liability','1650','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1658, 'SKR03','1','Liability','1651','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1659, 'SKR03','1','Liability','1655','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1660, 'SKR03','1','Liability','1658','K1BP11','Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1661, 'SKR03','0','Liability','K1BP14','K1BP1','Verbindlichkeiten aus Lieferungen und Leistungen S-Saldo oder sonstige Vermögensgegenstände H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1662, 'SKR03','1','Liability','1659','K1BP14','Gegenkonto 1625 - 1658 bei Aufteilung Kreditorenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1663, 'SKR03','0','Liability','K1BP15','K1BP1','Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1664, 'SKR03','1','Liability','1660','K1BP15','Schuldwechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1665, 'SKR03','1','Liability','1661','K1BP15','Schuldwechsel ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1666, 'SKR03','1','Liability','1680','K1BP15','Schuldwechsel ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1667, 'SKR03','1','Liability','1690','K1BP15','Schuldwechsel ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1668, 'SKR03','0','Liability','K1BP16','K1BP1','Sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1669, 'SKR03','1','Liability','1700','K1BP16','Sonstige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1670, 'SKR03','1','Liability','1701','1700','Sonstige Verbindlichkeiten ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1671, 'SKR03','1','Liability','1702','1700','Sonstige Verbindlichkeiten ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1672, 'SKR03','1','Liability','1703','1700','Sonstige Verbindlichkeiten ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1673, 'SKR03','1','Liability','1704','1700','Sonstige Verbindlichkeiten z.B. nach § 11 Abs. 2 Satz 2 EStG für 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1674, 'SKR03','1','Liability','1705','1700','Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1675, 'SKR03','1','Liability','1706','1700','Darlehen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1676, 'SKR03','1','Liability','1707','1700','Darlehen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1677, 'SKR03','1','Liability','1708','1700','Darlehen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1678, 'SKR03','0','Liability','K1BP17','K1BP1','Sonstige Verbindlichkeiten oder sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1679, 'SKR03','1','Liability','1709','K1BP17','Gewinnverfügungskonto stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1680, 'SKR03','0','Liability','K1BP18','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Passiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1681, 'SKR03','1','Liability','1710','K1BP18','Erhaltene Anzahlungen ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1682, 'SKR03','1','Liability','1711','1710','Erhaltene versteuerte Anzahlungen 7% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1683, 'SKR03','1','Liability','1716','1710','Erhaltene versteuerte Anzahlungen 15% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1684, 'SKR03','1','Liability','1717','1710','Erhaltene versteuerte Anzahlungen 16% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1685, 'SKR03','1','Liability','1718','1710','Erhaltene versteuerte Anzahlungen 19% USt ( Verbindlichkeiten )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1686, 'SKR03','1','Liability','1719','1710','Erhaltene Anzahlungen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1687, 'SKR03','1','Liability','1720','1710','Erhaltene Anzahlungen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1688, 'SKR03','1','Liability','1721','1710','Erhaltene Anzahlungen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1689, 'SKR03','0','Liability','K1BP19','K1BP1','Erhaltene Anzahlungen auf Bestellungen (Aktiva)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1690, 'SKR03','1','Liability','1722','K1BP19','Erhaltene Anzahlungen (von Vorräten offen abgesetzt)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1691, 'SKR03','1','Liability','1730','K1BP16','Kreditkartenabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1692, 'SKR03','1','Liability','1731','K1BP16','Agenturwarenabrechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1693, 'SKR03','1','Liability','1732','K1BP16','Erhaltene Kautionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1694, 'SKR03','1','Liability','1733','K1BP16','Erhaltene Kautionen ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1695, 'SKR03','1','Liability','1734','K1BP16','Erhaltene Kautionen ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1696, 'SKR03','1','Liability','1735','K1BP16','Erhaltene Kautionen ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1697, 'SKR03','1','Liability','1736','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1698, 'SKR03','1','Liability','1737','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1699, 'SKR03','1','Liability','1738','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1700, 'SKR03','1','Liability','1739','K1BP16','Verbindlichkeiten aus Betriebssteuern und -abgaben ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1701, 'SKR03','1','Liability','1740','K1BP16','Verbindlichkeiten aus Lohn und Gehalt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1702, 'SKR03','1','Liability','1741','K1BP17','Verbindlichkeiten aus Lohn- und Kirchensteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1703, 'SKR03','1','Liability','1742','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1704, 'SKR03','1','Liability','1743','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1705, 'SKR03','1','Liability','1744','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1706, 'SKR03','1','Liability','1745','K1BP16','Verbindlichkeiten im Rahmen der sozialen Sicherheit ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1707, 'SKR03','1','Liability','1746','K1BP16','Verbindlichkeiten aus Einbehaltungen ( KapESt und SolZ auf KapESt )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1708, 'SKR03','1','Liability','1747','K1BP16','Verbindlichkeiten für Verbrauchsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1709, 'SKR03','1','Liability','1748','K1BP16','Verbindlichkeiten für Einbehaltungen von Arbeitnehmern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1710, 'SKR03','1','Liability','1749','K1BP16','Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1711, 'SKR03','1','Liability','1750','K1BP16','Verbindlichkeiten aus Vermögensbildung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1712, 'SKR03','1','Liability','1751','K1BP16','Verbindlichkeiten aus Vermögensbildung ( bis 1 Jahr )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1713, 'SKR03','1','Liability','1752','K1BP16','Verbindlichkeiten aus Vermögensbildung ( 1 bis 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1714, 'SKR03','1','Liability','1753','K1BP16','Verbindlichkeiten aus Vermögensbildung ( größer 5 Jahre )',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1715, 'SKR03','1','Liability','1754','K1BP16','Steuerzahlungen an andere EG-Länder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1716, 'SKR03','1','Liability','1755','K1BP17','Lohn- und Gehaltsverrechnungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1717, 'SKR03','1','Liability','1756','1755','Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4/3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1718, 'SKR03','1','Liability','1759','1755','Voraussichtliche Beitragsschuld gegenüber den sozialversicherungsträgern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1719, 'SKR03','0','Liability','K1BP1a','K1BP1','Steuerrückstellungen oder sonstige Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1720, 'SKR03','1','Liability','1760','K1BP1a','Umsatzsteuer nicht fällig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1721, 'SKR03','1','Liability','1761','K1BP1a','Umsatzsteuer nicht fällig 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1722, 'SKR03','1','Liability','1762','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1723, 'SKR03','1','Liability','1763','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1724, 'SKR03','1','Liability','1764','K1BP1a','Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EG-Lieferant 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1725, 'SKR03','1','Liability','1765','K1BP1a','Umsatzsteuer nicht fällig 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1726, 'SKR03','1','Liability','1766','K1BP1a','Umsatzsteuer nicht fällig 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1727, 'SKR03','1','Liability','1767','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1728, 'SKR03','1','Liability','1768','K1BP16','Umsatzsteuer aus im anderen EG-Land steuerpflichtigen sonstigen Leistungen / Werklieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1729, 'SKR03','1','Liability','1769','K1BP17','Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1730, 'SKR03','1','Liability','1770','K1BP17','Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1731, 'SKR03','1','Liability','1771','K1BP17','Umsatzsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1732, 'SKR03','1','Liability','1772','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1733, 'SKR03','1','Liability','1773','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1734, 'SKR03','1','Liability','1774','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1735, 'SKR03','1','Liability','1775','K1BP17','Umsatzsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1736, 'SKR03','1','Liability','1776','K1BP17','Umsatzsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1737, 'SKR03','1','Liability','1777','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1738, 'SKR03','1','Liability','1778','K1BP17','Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1739, 'SKR03','1','Liability','1779','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb Vorsteuerabzug',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1740, 'SKR03','1','Liability','1780','K1BP17','Umsatzsteuer-Vorauszahlungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1741, 'SKR03','1','Liability','1781','K1BP17','Umsatzsteuer-Vorauszahlung 1/11',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1742, 'SKR03','1','Liability','1782','K1BP17','Nachsteuer UstVA Kz. 65',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1743, 'SKR03','1','Liability','1783','K1BP17','In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerveträge UstVA Kz. 69',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1744, 'SKR03','1','Liability','1784','K1BP17','Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1745, 'SKR03','1','Liability','1785','K1BP17','Umsatzsteuer nach § 13b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1746, 'SKR03','1','Liability','1786','K1BP17','Umsatzsteuer nach § 13b UStG 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1747, 'SKR03','1','Liability','1787','K1BP17','Umsatzsteuer nach § 13b UStG 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1748, 'SKR03','1','Liability','1788','K1BP17','Einfuhrumsatzsteuer aufgeschoben bis',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1749, 'SKR03','1','Liability','1789','K1BP17','Umsatzsteuer laufendes Jahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1750, 'SKR03','1','Liability','1790','K1BP17','Umsatzsteuer Vorjahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1751, 'SKR03','1','Liability','1791','K1BP17','Umsatzsteuer frühere Jahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1752, 'SKR03','1','Liability','1792','K1BP17','Sonstige Verrechnungskonten (Interimskonten)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1753, 'SKR03','0','Liability','K1BP1b','K1BP1','Sonstige Vermögensgegenstände H-Saldo',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1754, 'SKR03','1','Liability','1793','K1BP1b','Verrechnungskonto geleistete Anzahlungen bei Buchung über Kreditkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1755, 'SKR03','1','Liability','1795','K1BP1b','Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1756, 'SKR03','0','Owner''s Equity','K1BP2','K1BP','Privat Vollhafter / Einzelunternehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1757, 'SKR03','1','Owner''s Equity','1800','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1758, 'SKR03','1','Owner''s Equity','1801','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1759, 'SKR03','1','Owner''s Equity','1802','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1760, 'SKR03','1','Owner''s Equity','1803','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1761, 'SKR03','1','Owner''s Equity','1804','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1762, 'SKR03','1','Owner''s Equity','1805','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1763, 'SKR03','1','Owner''s Equity','1806','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1764, 'SKR03','1','Owner''s Equity','1807','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1765, 'SKR03','1','Owner''s Equity','1808','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1766, 'SKR03','1','Owner''s Equity','1809','K1BP2','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1767, 'SKR03','1','Owner''s Equity','1810','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1768, 'SKR03','1','Owner''s Equity','1811','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1769, 'SKR03','1','Owner''s Equity','1812','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1770, 'SKR03','1','Owner''s Equity','1813','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1771, 'SKR03','1','Owner''s Equity','1814','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1772, 'SKR03','1','Owner''s Equity','1815','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1773, 'SKR03','1','Owner''s Equity','1816','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1774, 'SKR03','1','Owner''s Equity','1817','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1775, 'SKR03','1','Owner''s Equity','1818','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1776, 'SKR03','1','Owner''s Equity','1819','K1BP2','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1777, 'SKR03','1','Owner''s Equity','1820','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1778, 'SKR03','1','Owner''s Equity','1821','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1779, 'SKR03','1','Owner''s Equity','1822','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1780, 'SKR03','1','Owner''s Equity','1823','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1781, 'SKR03','1','Owner''s Equity','1824','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1782, 'SKR03','1','Owner''s Equity','1825','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1783, 'SKR03','1','Owner''s Equity','1826','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1784, 'SKR03','1','Owner''s Equity','1827','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1785, 'SKR03','1','Owner''s Equity','1828','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1786, 'SKR03','1','Owner''s Equity','1829','K1BP2','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1787, 'SKR03','1','Owner''s Equity','1830','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1788, 'SKR03','1','Owner''s Equity','1831','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1789, 'SKR03','1','Owner''s Equity','1832','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1790, 'SKR03','1','Owner''s Equity','1833','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1791, 'SKR03','1','Owner''s Equity','1834','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1792, 'SKR03','1','Owner''s Equity','1835','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1793, 'SKR03','1','Owner''s Equity','1836','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1794, 'SKR03','1','Owner''s Equity','1837','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1795, 'SKR03','1','Owner''s Equity','1838','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1796, 'SKR03','1','Owner''s Equity','1839','K1BP2','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1797, 'SKR03','1','Owner''s Equity','1840','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1798, 'SKR03','1','Owner''s Equity','1841','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1799, 'SKR03','1','Owner''s Equity','1842','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1800, 'SKR03','1','Owner''s Equity','1843','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1801, 'SKR03','1','Owner''s Equity','1844','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1802, 'SKR03','1','Owner''s Equity','1845','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1803, 'SKR03','1','Owner''s Equity','1846','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1804, 'SKR03','1','Owner''s Equity','1847','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1805, 'SKR03','1','Owner''s Equity','1848','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1806, 'SKR03','1','Owner''s Equity','1849','K1BP2','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1807, 'SKR03','1','Owner''s Equity','1850','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1808, 'SKR03','1','Owner''s Equity','1851','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1809, 'SKR03','1','Owner''s Equity','1852','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1810, 'SKR03','1','Owner''s Equity','1853','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1811, 'SKR03','1','Owner''s Equity','1854','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1812, 'SKR03','1','Owner''s Equity','1855','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1813, 'SKR03','1','Owner''s Equity','1856','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1814, 'SKR03','1','Owner''s Equity','1857','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1815, 'SKR03','1','Owner''s Equity','1858','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1816, 'SKR03','1','Owner''s Equity','1859','K1BP2','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1817, 'SKR03','1','Owner''s Equity','1860','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1818, 'SKR03','1','Owner''s Equity','1861','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1819, 'SKR03','1','Owner''s Equity','1862','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1820, 'SKR03','1','Owner''s Equity','1863','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1821, 'SKR03','1','Owner''s Equity','1864','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1822, 'SKR03','1','Owner''s Equity','1865','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1823, 'SKR03','1','Owner''s Equity','1866','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1824, 'SKR03','1','Owner''s Equity','1867','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1825, 'SKR03','1','Owner''s Equity','1868','K1BP2','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1826, 'SKR03','1','Owner''s Equity','1869','K1BP2','Grundstücksaufwand (Umsatzsteuerschlüssel möglich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1827, 'SKR03','1','Owner''s Equity','1870','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1828, 'SKR03','1','Owner''s Equity','1871','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1829, 'SKR03','1','Owner''s Equity','1872','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1830, 'SKR03','1','Owner''s Equity','1873','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1831, 'SKR03','1','Owner''s Equity','1874','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1832, 'SKR03','1','Owner''s Equity','1875','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1833, 'SKR03','1','Owner''s Equity','1876','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1834, 'SKR03','1','Owner''s Equity','1877','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1835, 'SKR03','1','Owner''s Equity','1878','K1BP2','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1836, 'SKR03','1','Owner''s Equity','1879','K1BP2','Grundstücksertrag (Umsatzsteuerschlüssel möglich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1837, 'SKR03','1','Owner''s Equity','1880','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1838, 'SKR03','1','Owner''s Equity','1881','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1839, 'SKR03','1','Owner''s Equity','1882','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1840, 'SKR03','1','Owner''s Equity','1883','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1841, 'SKR03','1','Owner''s Equity','1884','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1842, 'SKR03','1','Owner''s Equity','1885','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1843, 'SKR03','1','Owner''s Equity','1886','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1844, 'SKR03','1','Owner''s Equity','1887','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1845, 'SKR03','1','Owner''s Equity','1888','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1846, 'SKR03','1','Owner''s Equity','1889','K1BP2','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1847, 'SKR03','1','Owner''s Equity','1890','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1848, 'SKR03','1','Owner''s Equity','1891','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1849, 'SKR03','1','Owner''s Equity','1892','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1850, 'SKR03','1','Owner''s Equity','1893','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1851, 'SKR03','1','Owner''s Equity','1894','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1852, 'SKR03','1','Owner''s Equity','1895','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1853, 'SKR03','1','Owner''s Equity','1896','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1854, 'SKR03','1','Owner''s Equity','1897','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1855, 'SKR03','1','Owner''s Equity','1898','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1856, 'SKR03','1','Owner''s Equity','1899','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1857, 'SKR03','1','Owner''s Equity','1900','K1BP2','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1858, 'SKR03','0','Owner''s Equity','K1BP3','K1BP','Privat Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1859, 'SKR03','1','Owner''s Equity','1900','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1860, 'SKR03','1','Owner''s Equity','1901','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1861, 'SKR03','1','Owner''s Equity','1902','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1862, 'SKR03','1','Owner''s Equity','1903','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1863, 'SKR03','1','Owner''s Equity','1904','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1864, 'SKR03','1','Owner''s Equity','1905','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1865, 'SKR03','1','Owner''s Equity','1906','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1866, 'SKR03','1','Owner''s Equity','1907','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1867, 'SKR03','1','Owner''s Equity','1908','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1868, 'SKR03','1','Owner''s Equity','1909','K1BP3','Privatentnahmen allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1869, 'SKR03','1','Owner''s Equity','1910','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1870, 'SKR03','1','Owner''s Equity','1911','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1871, 'SKR03','1','Owner''s Equity','1912','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1872, 'SKR03','1','Owner''s Equity','1913','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1873, 'SKR03','1','Owner''s Equity','1914','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1874, 'SKR03','1','Owner''s Equity','1915','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1875, 'SKR03','1','Owner''s Equity','1916','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1876, 'SKR03','1','Owner''s Equity','1917','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1877, 'SKR03','1','Owner''s Equity','1918','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1878, 'SKR03','1','Owner''s Equity','1919','K1BP3','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1879, 'SKR03','1','Owner''s Equity','1920','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1880, 'SKR03','1','Owner''s Equity','1921','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1881, 'SKR03','1','Owner''s Equity','1922','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1882, 'SKR03','1','Owner''s Equity','1923','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1883, 'SKR03','1','Owner''s Equity','1924','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1884, 'SKR03','1','Owner''s Equity','1925','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1885, 'SKR03','1','Owner''s Equity','1926','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1886, 'SKR03','1','Owner''s Equity','1927','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1887, 'SKR03','1','Owner''s Equity','1928','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1888, 'SKR03','1','Owner''s Equity','1929','K1BP3','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1889, 'SKR03','1','Owner''s Equity','1930','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1890, 'SKR03','1','Owner''s Equity','1931','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1891, 'SKR03','1','Owner''s Equity','1932','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1892, 'SKR03','1','Owner''s Equity','1933','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1893, 'SKR03','1','Owner''s Equity','1934','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1894, 'SKR03','1','Owner''s Equity','1935','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1895, 'SKR03','1','Owner''s Equity','1936','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1896, 'SKR03','1','Owner''s Equity','1937','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1897, 'SKR03','1','Owner''s Equity','1938','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1898, 'SKR03','1','Owner''s Equity','1939','K1BP3','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1899, 'SKR03','1','Owner''s Equity','1940','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1900, 'SKR03','1','Owner''s Equity','1941','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1901, 'SKR03','1','Owner''s Equity','1942','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1902, 'SKR03','1','Owner''s Equity','1943','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1903, 'SKR03','1','Owner''s Equity','1944','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1904, 'SKR03','1','Owner''s Equity','1945','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1905, 'SKR03','1','Owner''s Equity','1946','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1906, 'SKR03','1','Owner''s Equity','1947','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1907, 'SKR03','1','Owner''s Equity','1948','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1908, 'SKR03','1','Owner''s Equity','1949','K1BP3','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1909, 'SKR03','1','Owner''s Equity','1950','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1910, 'SKR03','1','Owner''s Equity','1951','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1911, 'SKR03','1','Owner''s Equity','1952','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1912, 'SKR03','1','Owner''s Equity','1953','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1913, 'SKR03','1','Owner''s Equity','1954','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1914, 'SKR03','1','Owner''s Equity','1955','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1915, 'SKR03','1','Owner''s Equity','1956','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1916, 'SKR03','1','Owner''s Equity','1957','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1917, 'SKR03','1','Owner''s Equity','1958','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1918, 'SKR03','1','Owner''s Equity','1959','K1BP3','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1919, 'SKR03','1','Owner''s Equity','1960','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1920, 'SKR03','1','Owner''s Equity','1961','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1921, 'SKR03','1','Owner''s Equity','1962','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1922, 'SKR03','1','Owner''s Equity','1963','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1923, 'SKR03','1','Owner''s Equity','1964','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1924, 'SKR03','1','Owner''s Equity','1965','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1925, 'SKR03','1','Owner''s Equity','1966','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1926, 'SKR03','1','Owner''s Equity','1967','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1927, 'SKR03','1','Owner''s Equity','1968','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1928, 'SKR03','1','Owner''s Equity','1969','K1BP3','Grundstücksaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1929, 'SKR03','1','Owner''s Equity','1970','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1930, 'SKR03','1','Owner''s Equity','1971','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1931, 'SKR03','1','Owner''s Equity','1972','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1932, 'SKR03','1','Owner''s Equity','1973','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1933, 'SKR03','1','Owner''s Equity','1974','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1934, 'SKR03','1','Owner''s Equity','1975','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1935, 'SKR03','1','Owner''s Equity','1976','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1936, 'SKR03','1','Owner''s Equity','1977','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1937, 'SKR03','1','Owner''s Equity','1978','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1938, 'SKR03','1','Owner''s Equity','1979','K1BP3','Grundstücksertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1939, 'SKR03','1','Owner''s Equity','1980','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1940, 'SKR03','1','Owner''s Equity','1981','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1941, 'SKR03','1','Owner''s Equity','1982','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1942, 'SKR03','1','Owner''s Equity','1983','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1943, 'SKR03','1','Owner''s Equity','1984','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1944, 'SKR03','1','Owner''s Equity','1985','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1945, 'SKR03','1','Owner''s Equity','1986','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1946, 'SKR03','1','Owner''s Equity','1987','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1947, 'SKR03','1','Owner''s Equity','1988','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1948, 'SKR03','1','Owner''s Equity','1989','K1BP3','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1949, 'SKR03','1','Owner''s Equity','1990','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1950, 'SKR03','1','Owner''s Equity','1991','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1951, 'SKR03','1','Owner''s Equity','1992','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1952, 'SKR03','1','Owner''s Equity','1993','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1953, 'SKR03','1','Owner''s Equity','1994','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1954, 'SKR03','1','Owner''s Equity','1995','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1955, 'SKR03','1','Owner''s Equity','1996','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1956, 'SKR03','1','Owner''s Equity','1997','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1957, 'SKR03','1','Owner''s Equity','1998','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1958, 'SKR03','1','Owner''s Equity','1999','K1BP3','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1959, 'SKR03','0','Expense','K2GVA1','K2GVA','Außerordentliche Aufwendungen i.S.d. BiRiLiG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1960, 'SKR03','0','Expense','K2GVA11','K2GVA1','Außerordentliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1961, 'SKR03','2','Expense','2000','K2GVA11','Außerordentliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1962, 'SKR03','2','Expense','2001','K2GVA11','Außerordentliche Aufwendungen finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1963, 'SKR03','2','Expense','2005','K2GVA11','Außerordentliche Aufwendungen nicht finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1964, 'SKR03','0','Expense','K2GVA2','K2GVA','Betriebsfremde und periodenfremde Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1965, 'SKR03','0','Expense','K2GVA21','K2GVA2','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1966, 'SKR03','2','Expense','2010','K2GVA21','Betriebsfremde Aufwendungen (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1967, 'SKR03','2','Expense','2020','K2GVA21','Periodenfremde Aufwendungen (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1968, 'SKR03','0','Expense','K2GVA3','K2GVA','Zinsen und ähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1969, 'SKR03','0','Expense','K2GVA31','K2GVA3','Zinsen und ähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1970, 'SKR03','2','Expense','2100','K2GVA31','Zinsen und ähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1971, 'SKR03','2','Expense','2103','2100','Steuerlich abzugsfähige andere Nebenleistungen zu steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1972, 'SKR03','2','Expense','2104','2100','Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1973, 'SKR03','2','Expense','2107','2100','Zinsaufwendungen § 233a AO betriebliche Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1974, 'SKR03','2','Expense','2108','2100','Zinsaufwendungen §§ 233a bis 237 AO Personensteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1975, 'SKR03','2','Expense','2109','2100','Zinsaufwendungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1976, 'SKR03','2','Expense','2110','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1977, 'SKR03','2','Expense','2113','2100','Nicht abzugsfähige Schuldzinsen gemäß § 4 Abs. 4a EStG (Hinzurechnungsbetrag)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1978, 'SKR03','2','Expense','2115','2100','Zinsen und ähnliche Aufwendungen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1979, 'SKR03','2','Expense','2116','2100','Zinsen und ähnliche Aufwendungen an verbundene Unternehmen 100% / 50% nicht abzugsfähig (inländiche Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1980, 'SKR03','2','Expense','2118','2100','In Dauerschuldzinsen umqualifizierte Zinsen auf kurzfristige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1981, 'SKR03','2','Expense','2119','2100','Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1982, 'SKR03','2','Expense','2120','2100','Zinsaufwendungen für langfristige Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1983, 'SKR03','2','Expense','2125','2100','Zinsaufwendungen für Gebäude die zum Betriebsvermögen gehören',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1984, 'SKR03','2','Expense','2126','2100','Zinsen zur Finanzierung des Anlagevermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1985, 'SKR03','2','Expense','2127','2100','Renten und dauernde Lasten aus Gründung / Erwerb §8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1986, 'SKR03','2','Expense','2128','2100','Zinsaufwendungen an Mitunternehmer für die Hingabe von Kapital § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1987, 'SKR03','2','Expense','2129','2100','Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1988, 'SKR03','2','Expense','2130','2100','Diskontaufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1989, 'SKR03','2','Expense','2139','2100','Diskontaufwendungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1990, 'SKR03','2','Expense','2140','2100','Zinsähnliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1991, 'SKR03','2','Expense','2149','2100','Zinsähnliche Aufwendungen an verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1992, 'SKR03','0','Expense','K2GVA32','K2GVA3','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1993, 'SKR03','2','Expense','2150','K2GVA32','Aufwendungen aus Kursdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1994, 'SKR03','2','Expense','2166','K2GVA32','Aufwendungen Bewertung Finanzmittelfonds',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1995, 'SKR03','2','Expense','2170','K2GVA32','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1996, 'SKR03','2','Expense','2171','K2GVA32','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1997, 'SKR03','2','Expense','2175','K2GVA32','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1998, 'SKR03','2','Expense','2176','K2GVA33','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 1999, 'SKR03','0','Expense','K2GVA4','K2GVA','Steueraufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2000, 'SKR03','0','Expense','K2GVA41','K2GVA4','Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2001, 'SKR03','2','Expense','2200','K2GVA41','Körperschaftsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2002, 'SKR03','2','Expense','2203','K2GVA41','Körperschaftsteuer für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2003, 'SKR03','2','Expense','2204','K2GVA41','Körperschaftsteuererstattungen für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2004, 'SKR03','2','Expense','2208','K2GVA41','Solidaritätszuschlag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2005, 'SKR03','2','Expense','2209','K2GVA41','Solidaritätszuschlag für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2006, 'SKR03','2','Expense','2210','K2GVA41','Solidaritätszuschlag für Vorjahre für Vorjahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2007, 'SKR03','2','Expense','2212','K2GVA41','Kapitalertragsteuer 20%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2008, 'SKR03','2','Expense','2213','K2GVA41','Kapitalertragsteuer 25%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2009, 'SKR03','2','Expense','2214','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 20%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2010, 'SKR03','2','Expense','2215','K2GVA41','Zinsabschlagsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2011, 'SKR03','2','Expense','2216','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2012, 'SKR03','2','Expense','2218','K2GVA41','Anrechenbarer Solidaritätszuschlag auf Zinsabschlagsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2013, 'SKR03','2','Expense','2219','K2GVA41','Ausländische Quellensteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2014, 'SKR03','2','Expense','2280','K2GVA41','Steuernachzahlungen Vorjahre für Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2015, 'SKR03','2','Expense','2282','K2GVA41','Steuererstattungen Vorjahre für Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2016, 'SKR03','2','Expense','2284','K2GVA41','Erträge aus der Auflösung von Rückstellungen für Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2017, 'SKR03','0','Expense','K2GVA42','K2GVA4','Sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2018, 'SKR03','2','Expense','2285','K2GVA41','Steuernachzahlungen Vorjahre für sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2019, 'SKR03','2','Expense','2287','K2GVA41','Steuererstattungen Vorjahre für sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2020, 'SKR03','2','Expense','2289','K2GVA41','Erträge aus der Auflösung von Rückstellungen für sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2021, 'SKR03','0','Expense','K2GVA5','K2GVA','Sonstige Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2022, 'SKR03','0','Expense','K2GVA51','K2GVA5','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2023, 'SKR03','2','Expense','2300','K2GVA51','Sonstige Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2024, 'SKR03','2','Expense','2307','2300','Sonstige Aufwendungen betriebsfremde und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2025, 'SKR03','2','Expense','2309','2300','Sonstige Aufwendungen unregelmässig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2026, 'SKR03','2','Expense','2310','2300','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2027, 'SKR03','2','Expense','2311','2300','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2028, 'SKR03','2','Expense','2312','2300','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2029, 'SKR03','2','Expense','2313','2300','Anlagenabgänge Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Restbuchwert bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2030, 'SKR03','0','Expense','K2GVA52','K2GVA5','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2031, 'SKR03','2','Expense','2315','K2GVA52','Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2032, 'SKR03','2','Expense','2316','K2GVA52','Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2033, 'SKR03','2','Expense','2317','K2GVA52','Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2034, 'SKR03','2','Expense','2318','K2GVA52','Anlagenabgänge Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Restbuchwert bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2035, 'SKR03','2','Expense','2320','K2GVA51','Verluste aus dem Abgang von Gegenständen des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2036, 'SKR03','2','Expense','2323','K2GVA51','Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2037, 'SKR03','2','Expense','2325','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2038, 'SKR03','2','Expense','2326','K2GVA51','Verluste aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2039, 'SKR03','2','Expense','2327','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens nach §4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2040, 'SKR03','2','Expense','2328','K2GVA51','Abgang von Wirtschaftsgütern des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) nach §4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2041, 'SKR03','2','Expense','2340','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2042, 'SKR03','2','Expense','2341','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2043, 'SKR03','2','Expense','2342','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2044, 'SKR03','2','Expense','2345','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2045, 'SKR03','2','Expense','2346','K2GVA51','Einstellungen in Sonderposten mit Rücklageanteil (§ 52 Abs. 16 EStG)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2046, 'SKR03','2','Expense','2348','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2047, 'SKR03','2','Expense','2349','K2GVA51','Aufwendungen aus der Zuschreibung von steuerlich niedriger bewerteten Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2048, 'SKR03','2','Expense','2350','K2GVA51','Grundstücksaufwendungen neutral',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2049, 'SKR03','0','Expense','K2GVA53','K2GVA5','Sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2050, 'SKR03','2','Expense','2375','K2GVA53','Grundsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2051, 'SKR03','2','Expense','2380','K2GVA51','Zuwendungen Spenden steuerlich nicht abziehbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2052, 'SKR03','2','Expense','2381','K2GVA51','Zuwendungen Spenden für wissenschaftliche und kulturelle Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2053, 'SKR03','2','Expense','2382','K2GVA51','Zuwendungen Spenden für mildtätige Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2054, 'SKR03','2','Expense','2383','K2GVA51','Zuwendungen Spenden für kirchliche religiöse und gemeinnützige Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2055, 'SKR03','2','Expense','2384','K2GVA51','Zuwendungen Spenden an politische Parteien',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2056, 'SKR03','2','Expense','2385','K2GVA51','Nicht abziehbare Hälfte der Aufsichtsratsvergütungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2057, 'SKR03','2','Expense','2386','K2GVA51','Abziehbare Aufsichtsratsvergütung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2058, 'SKR03','2','Expense','2387','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 1-3 AO',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2059, 'SKR03','2','Expense','2388','K2GVA51','Zuwendungen Spenden an Stiftungen für gemeinnützige Zwecke i. S. d. § 52 Abs. 2 Nr. 4 AO',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2060, 'SKR03','2','Expense','2389','K2GVA51','Zuwendungen Spenden an Stiftungen für kirchliche religiöse und gemeinnützige Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2061, 'SKR03','2','Expense','2390','K2GVA51','Zuwendungen Spenden an Stiftungen für wissenschaftliche mildtätige kulturelle Zwecke',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2062, 'SKR03','2','Expense','2400','K2GVA51','Forderungsverluste (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2063, 'SKR03','2','Expense','2401','2400','Forderungsverluste 7% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2064, 'SKR03','2','Expense','2402','2400','Forderungsverluste aus steuerfreien EG-Lieferungen (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2065, 'SKR03','2','Expense','2403','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 7% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2066, 'SKR03','2','Expense','2404','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 16% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2067, 'SKR03','2','Expense','2405','2400','Forderungsverluste 16% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2068, 'SKR03','2','Expense','2406','2400','Forderungsverluste 19% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2069, 'SKR03','2','Expense','2407','2400','Forderungsverluste 15% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2070, 'SKR03','2','Expense','2408','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 19% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2071, 'SKR03','2','Expense','2409','2400','Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 15% USt (übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2072, 'SKR03','0','Expense','K2GVA54','K2GVA5','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2073, 'SKR03','2','Expense','2430','K2GVA54','Forderungsverluste unüblich hoch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2074, 'SKR03','2','Expense','2450','K2GVA51','Einstellung in die Pauschalwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2075, 'SKR03','2','Expense','2451','K2GVA51','Einstellung in die Einzelwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2076, 'SKR03','0','Expense','K2GVA55','K2GVA5','Aufwendungen aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2077, 'SKR03','2','Expense','2490','K2GVA55','Aufwendungen aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2078, 'SKR03','0','Expense','K2GVA56','K2GVA5','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2079, 'SKR03','2','Expense','2492','K2GVA56','Abgeführte Gewinne auf Grund einer Gewinngemeinschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2080, 'SKR03','2','Expense','2493','K2GVA56','Abgeführte Gewinnanteile an stille Gesellschafter § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2081, 'SKR03','2','Expense','2494','K2GVA56','Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2082, 'SKR03','0','Expense','K2GVA57','K2GVA5','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2083, 'SKR03','2','Expense','2495','K2GVA57','Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2084, 'SKR03','0','Expense','K2GVA58','K2GVA5','Einstellung in Gewinnrücklagen in die gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2085, 'SKR03','2','Expense','2496','K2GVA58','Einstellung in die gesetzliche Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2086, 'SKR03','0','Expense','K2GVA59','K2GVA5','Einstellung in Gewinnrücklagen in satzungsmäßige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2087, 'SKR03','2','Expense','2497','K2GVA59','Einstellungen in satzungsmäßige Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2088, 'SKR03','0','Expense','K2GVA5a','K2GVA5','Einstellung in Gewinnrücklagen in die Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2089, 'SKR03','2','Expense','2498','K2GVA5a','Einstellung in die Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2090, 'SKR03','0','Expense','K2GVA5b','K2GVA5','Einstellung in Gewinnrücklagen in andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2091, 'SKR03','2','Expense','2499','K2GVA5b','Einstellung in andere Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2092, 'SKR03','0','Revenue','K2GVE1','K2GVE','Außerordentliche Erträge i. S. d. BiRiLiG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2093, 'SKR03','0','Revenue','K2GVE11','K2GVE1','Außerordentliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2094, 'SKR03','2','Revenue','2500','K2GVE11','Außerordentliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2095, 'SKR03','2','Revenue','2501','K2GVE11','Außerordentliche Erträge finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2096, 'SKR03','2','Revenue','2505','K2GVE11','Außerordentliche Erträge nicht finanzwirksam',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2097, 'SKR03','0','Revenue','K2GVE2','K2GVE','Betriebsfremde und periodenfremde Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2098, 'SKR03','0','Revenue','K2GVE21','K2GVE2','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2099, 'SKR03','2','Revenue','2510','K2GVE21','Betriebsfremde Erträge (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2100, 'SKR03','2','Revenue','2520','K2GVE21','Periodenfremde Erträge (soweit nicht außerordentlich)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2101, 'SKR03','0','Revenue','K2GVE3','K2GVE','Zinsertäge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2102, 'SKR03','0','Revenue','K2GVE31','K2GVE3','Erträge aus Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2103, 'SKR03','2','Revenue','2600','K2GVE31','Erträge aus Beteiligungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2104, 'SKR03','2','Revenue','2615','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung 100% / 50% steuerfrei) (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2105, 'SKR03','2','Revenue','2616','2600','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2106, 'SKR03','2','Revenue','2617','2600','Gewinne aus Anteilen an nicht steuerbefreiten inländischen Kapitalgesellschaften § 9 Nr. 2a GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2107, 'SKR03','2','Revenue','2618','2600','Gewinnanteile aus Mitunternehmerschaften § 9 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2108, 'SKR03','2','Revenue','2619','2600','Erträge aus Beteiligungen an verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2109, 'SKR03','0','Revenue','K2GVE32','K2GVE3','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2110, 'SKR03','2','Revenue','2620','K2GVA32','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2111, 'SKR03','2','Revenue','2625','2620','laufende Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2112, 'SKR03','2','Revenue','2626','2620','Laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2113, 'SKR03','2','Revenue','2649','2620','Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögen aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2114, 'SKR03','0','Revenue','K2GVE33','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2115, 'SKR03','2','Revenue','2650','K2GVA33','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2116, 'SKR03','2','Revenue','2655','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2117, 'SKR03','2','Revenue','2656','2650','laufende Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2118, 'SKR03','2','Revenue','2657','2650','Zinserträge § 233a AO',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2119, 'SKR03','2','Revenue','2658','2650','Zinserträge § 233a AO Sonderfall Anlage A KSt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2120, 'SKR03','2','Revenue','2659','2650','Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2121, 'SKR03','0','Revenue','K2GVE34','K2GVE3','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2122, 'SKR03','2','Revenue','2660','K2GVA34','Erträge aus Kursdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2123, 'SKR03','2','Revenue','2661','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2124, 'SKR03','2','Revenue','2662','K2GVA34','Realisierte Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2125, 'SKR03','2','Revenue','2663','K2GVA34','Produkt Rechnung Preisdifferenz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2126, 'SKR03','2','Revenue','2664','K2GVA34','Realisierte Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2127, 'SKR03','2','Revenue','2665','K2GVA34','Erträge a. Währungsumstellung auf Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2128, 'SKR03','2','Revenue','2666','K2GVA34','Erträge aus Bewertung Finanzmittelfonds',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2129, 'SKR03','2','Revenue','2667','K2GVA34','Bank Währungsverlust (Konto)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2130, 'SKR03','2','Revenue','2668','K2GVA34','Währungsdifferenz zum Kontenausgleich',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2131, 'SKR03','2','Revenue','2669','K2GVA34','Nicht realisierbare Währungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2132, 'SKR03','0','Revenue','K2GVE35','K2GVE3','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2133, 'SKR03','2','Revenue','2670','K2GVA35','Diskonterträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2134, 'SKR03','2','Revenue','2671','K2GVA35','Bank Bewertungsertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2135, 'SKR03','2','Revenue','2672','K2GVA35','Rundungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2136, 'SKR03','2','Revenue','2673','K2GVA35','Kassendifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2137, 'SKR03','2','Revenue','2679','K2GVA35','Diskonterträge verbundene Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2138, 'SKR03','2','Revenue','2680','K2GVA35','Zinsähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2139, 'SKR03','2','Revenue','2689','K2GVA35','Zinsähnliche Erträge aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2140, 'SKR03','0','Revenue','K2GVE4','K2GVE','Sonstige Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2141, 'SKR03','0','Revenue','K2GVE41','K2GVE4','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2142, 'SKR03','2','Revenue','2700','K2GVA41','Sonstige Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2143, 'SKR03','2','Revenue','2705','2700','Sonstige Erträge betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2144, 'SKR03','2','Revenue','2707','2700','Sonstige Erträge betriebsfremd und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2145, 'SKR03','2','Revenue','2709','2700','Sonstige Erträge unregelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2146, 'SKR03','2','Revenue','2710','2700','Erträge aus Zuschreibungen des Sachanlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2147, 'SKR03','2','Revenue','2711','2700','Erträge aus Zuschreibungen des immateriellen Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2148, 'SKR03','2','Revenue','2712','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2149, 'SKR03','2','Revenue','2713','2700','Erträge aus Zuschreibungen des Finanzanlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2150, 'SKR03','2','Revenue','2714','2700','Erträge aus Zuschreibungen des anderen Anlagevermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2151, 'SKR03','2','Revenue','2715','2700','Erträge aus Zuschreibungen des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2152, 'SKR03','2','Revenue','2716','2700','Erträge aus Zuschreibungen des Umlaufvermögens 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2153, 'SKR03','2','Revenue','2720','2700','Erträge aus dem Abgang von Gegenständen des Anlagevermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2154, 'SKR03','2','Revenue','2723','2700','Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2155, 'SKR03','2','Revenue','2725','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2156, 'SKR03','2','Revenue','2726','2700','Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) 100% / 50% steuerfrei ( inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2157, 'SKR03','2','Revenue','2730','2700','Erträge aus Herabsetzung der Pauschalwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2158, 'SKR03','2','Revenue','2731','2700','Erträge aus Herabsetzung der Einzelwertberichtigung zu Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2159, 'SKR03','2','Revenue','2732','2700','Erträge aus abgeschriebenen Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2160, 'SKR03','2','Revenue','2733','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Existenzgründerrücklage)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2161, 'SKR03','2','Revenue','2734','2700','Erträge aus der steuerlich niedrigeren Bewertung von Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2162, 'SKR03','2','Revenue','2735','2700','Erträge aus der Auflösung von Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2163, 'SKR03','2','Revenue','2736','2700','Erträge aus der steuerlich niedrigeren Bewertung von Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2164, 'SKR03','2','Revenue','2737','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (aus der Währungsumstellung auf den Euro)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2165, 'SKR03','2','Revenue','2738','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2166, 'SKR03','2','Revenue','2739','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Ansparabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2167, 'SKR03','2','Revenue','2740','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (steuerfreie Rücklagen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2168, 'SKR03','2','Revenue','2741','2700','Erträge aus der Auflösung von Sonderposten mit Rücklageanteil (Sonderabschreibungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2169, 'SKR03','2','Revenue','2742','2700','Versicherungsentschädigungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2170, 'SKR03','2','Revenue','2743','2700','Investitionszuschüsse (steuerpflichtig)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2171, 'SKR03','2','Revenue','2744','2700','Investitionszulagen (steuerfrei)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2172, 'SKR03','0','Revenue','K2GVE42','K2GVE4','Erträge aus Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2173, 'SKR03','2','Revenue','2745','K2GVE42','Erträge aus Kapitalherabsetzung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2174, 'SKR03','2','Revenue','2746','K2GVE41','Steuerfreie Erträge aus der Auflösung von Sonderposten mit Rücklageanteil',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2175, 'SKR03','2','Revenue','2747','K2GVE41','Sonstige steuerfreie Betriebseinnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2176, 'SKR03','0','Revenue','2749','K2GVE41','Erstattungen Aufwendungsausgleichsgesetz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2177, 'SKR03','2','Revenue','2750','K2GVE41','Grundstückserträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2178, 'SKR03','0','Revenue','K2GVE43','K2GVE4','Erträge aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2179, 'SKR03','2','Revenue','2790','K2GVE43','Erträge aus Verlustübernahme',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2180, 'SKR03','0','Revenue','K2GVE44','K2GVE4','Auf Grund einer Gewinngemeinschaft eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2181, 'SKR03','2','Revenue','2792','K2GVE44','Erhaltene Gewinne auf Grund einer Gewinngemeinschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2182, 'SKR03','2','Revenue','2794','K2GVE44','Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvetrags',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2183, 'SKR03','0','Revenue','K2GVE45','K2GVE4','Entnahmen aus der Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2184, 'SKR03','2','Revenue','2795','K2GVE45','Entnahmen aus der Kapitalrücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2185, 'SKR03','0','Revenue','K2GVE46','K2GVE4','Entnahmen aus Gewinnrücklagen aus der gesetzlichen Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2186, 'SKR03','2','Revenue','2796','K2GVE46','Entnahmen aus der gesetzlichen Rücklage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2187, 'SKR03','0','Revenue','K2GVE47','K2GVE4','Entnahmen aus Gewinnrücklagen aus satzungsmäßigen Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2188, 'SKR03','2','Revenue','2797','K2GVE47','Entnahmen aus satzungsmäßigen Rücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2189, 'SKR03','0','Revenue','K2GVE48','K2GVE4','Entnahmen aus Gewinnrücklagen aus der Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2190, 'SKR03','2','Revenue','2798','K2GVE48','Entnahmen aus der Rücklage für eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2191, 'SKR03','0','Revenue','K2GVE49','K2GVE4','Entnahmen aus Gewinnrücklagen aus anderen Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2192, 'SKR03','2','Revenue','2799','K2GVE49','Entnahmen aus anderen Gewinnrücklagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2193, 'SKR03','0','Revenue','K2GVE4a','K2GVE4','Gewinnvortrag oder Verlustvortrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2194, 'SKR03','2','Revenue','2860','K2GVE4a','Gewinnvortrag nach Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2195, 'SKR03','2','Revenue','2868','K2GVE4a','Verlustvortrag nach Verwendung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2196, 'SKR03','0','Revenue','K2GVE4b','K2GVE4','Vortrag auf neue Rechnung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2197, 'SKR03','2','Revenue','2869','K2GVE4b','Vortrag auf neue Rechnung (GuV)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2198, 'SKR03','0','Revenue','K2GVE4c','K2GVE4','Ausschüttung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2199, 'SKR03','2','Revenue','2870','K2GVE4c','Vorabausschüttung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2200, 'SKR03','0','Revenue','K2GVE5','K2GVE','Verrechnete kalkulatorische Kosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2201, 'SKR03','0','Revenue','K2GVE51','K2GVE5','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2202, 'SKR03','2','Revenue','2890','K2GVE51','Verrechneter kalkulatorischer Unternehmerlohn',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2203, 'SKR03','2','Revenue','2891','K2GVE51','Verrechnete kalkulatorische Miete und Pacht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2204, 'SKR03','2','Revenue','2892','K2GVE51','Verrechnete kalkulatorische Zinsen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2205, 'SKR03','2','Revenue','2893','K2GVE51','Verrechnete kalkulatorische Abschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2206, 'SKR03','2','Revenue','2894','K2GVE51','Verrechnete kalkulatorische Wagnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2207, 'SKR03','2','Revenue','2895','K2GVE51','Verrechneter kalkulatorische Lohn für unentgeltliche Mitarbeiter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2208, 'SKR03','0','Revenue','K2GVE52','K2GVE5','Sonstige betriebliche Erträge oder sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2209, 'SKR03','2','Revenue','2990','K2GVE52','Aufwendungen/Erträge aus Umrechnungsdifferenzen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2210, 'SKR03','0','Expense','K3GVA1','K3GVA','Materialaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2211, 'SKR03','0','Expense','K3GVA11','K3GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2212, 'SKR03','3','Expense','3000','K3GVA11','Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2213, 'SKR03','3','Expense','3090','K3GVA11','Energiestoffe (Fertigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2214, 'SKR03','0','Expense','K3GVA12','K3GVA1','Aufwendungen für bezogene Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2215, 'SKR03','3','Expense','3100','K3GVA12','Fremdleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2216, 'SKR03','0','Expense','K3GVA2','K3GVA','Umsätze für die als Leistungsemfänger die Steuer nach § 13b Abs. 2 UStG geschuldet wird',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2217, 'SKR03','0','Expense','K3GVA21','K3GVA2','Aufwendungen für bezogene Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2218, 'SKR03','0','Expense','3106','K3GVA12','Fremdleistungen 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2219, 'SKR03','3','Expense','3110','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2220, 'SKR03','3','Expense','3115','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2221, 'SKR03','3','Expense','3120','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2222, 'SKR03','3','Expense','3121','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2223, 'SKR03','3','Expense','3122','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2224, 'SKR03','3','Expense','3125','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2225, 'SKR03','3','Expense','3126','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2226, 'SKR03','3','Expense','3127','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2227, 'SKR03','3','Expense','3130','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2228, 'SKR03','3','Expense','3135','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2229, 'SKR03','3','Expense','3140','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2230, 'SKR03','3','Expense','3141','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2231, 'SKR03','3','Expense','3142','K3GVA21','Bauleistungen eines im Inland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2232, 'SKR03','3','Expense','3145','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2233, 'SKR03','3','Expense','3146','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2234, 'SKR03','3','Expense','3147','K3GVA21','Leistungen eines im Ausland ansässigen Unternehmens ohne Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2235, 'SKR03','3','Expense','3150','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2236, 'SKR03','3','Expense','3151','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2237, 'SKR03','3','Expense','3152','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2238, 'SKR03','3','Expense','3153','K3GVA21','Erhaltene Skonti aus Leistungen für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2239, 'SKR03','0','Expense','K3GVA22','K3GVA2','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2240, 'SKR03','3','Expense','3200','K3GVA22','Wareneingang',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2241, 'SKR03','3','Expense','3300','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2242, 'SKR03','3','Expense','3301','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2243, 'SKR03','3','Expense','3302','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2244, 'SKR03','3','Expense','3303','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2245, 'SKR03','3','Expense','3304','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2246, 'SKR03','3','Expense','3305','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2247, 'SKR03','3','Expense','3306','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2248, 'SKR03','3','Expense','3307','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2249, 'SKR03','3','Expense','3308','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2250, 'SKR03','3','Expense','3309','3200','Wareneingang 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2251, 'SKR03','3','Expense','3340','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2252, 'SKR03','3','Expense','3341','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2253, 'SKR03','3','Expense','3342','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2254, 'SKR03','3','Expense','3343','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2255, 'SKR03','3','Expense','3344','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2256, 'SKR03','3','Expense','3345','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2257, 'SKR03','3','Expense','3346','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2258, 'SKR03','3','Expense','3347','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2259, 'SKR03','3','Expense','3348','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2260, 'SKR03','3','Expense','3349','3200','Wareneingang 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2261, 'SKR03','3','Expense','3400','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2262, 'SKR03','3','Expense','3401','3200','Produkt Ausgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2263, 'SKR03','3','Expense','3402','3200','Produkt Vertriebsausgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2264, 'SKR03','3','Expense','3403','3200','Konto Kasse Aufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2265, 'SKR03','3','Expense','3404','3200','Einstandskosten Verrechnungskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2266, 'SKR03','3','Expense','3405','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2267, 'SKR03','3','Expense','3406','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2268, 'SKR03','3','Expense','3407','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2269, 'SKR03','3','Expense','3408','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2270, 'SKR03','3','Expense','3409','3200','Wareneingang 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2271, 'SKR03','3','Expense','3420','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2272, 'SKR03','3','Expense','3421','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2273, 'SKR03','3','Expense','3422','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2274, 'SKR03','3','Expense','3423','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2275, 'SKR03','3','Expense','3424','3200','Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2276, 'SKR03','3','Expense','3425','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2277, 'SKR03','3','Expense','3426','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2278, 'SKR03','3','Expense','3427','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2279, 'SKR03','3','Expense','3428','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2280, 'SKR03','3','Expense','3429','3200','Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2281, 'SKR03','3','Expense','3430','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2282, 'SKR03','3','Expense','3433','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2283, 'SKR03','3','Expense','3434','3200','Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2284, 'SKR03','3','Expense','3435','3200','Innergemeinschaftlicher Erwerb ohne Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2285, 'SKR03','3','Expense','3440','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2286, 'SKR03','3','Expense','3441','3200','Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2287, 'SKR03','3','Expense','3500','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2288, 'SKR03','3','Expense','3501','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2289, 'SKR03','3','Expense','3502','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2290, 'SKR03','3','Expense','3503','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2291, 'SKR03','3','Expense','3504','3200','Wareneingang 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2292, 'SKR03','3','Expense','3505','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2293, 'SKR03','3','Expense','3506','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2294, 'SKR03','3','Expense','3507','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2295, 'SKR03','3','Expense','3508','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2296, 'SKR03','3','Expense','3509','3200','Wareneingang 5 5% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2297, 'SKR03','3','Expense','3530','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2298, 'SKR03','3','Expense','3531','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2299, 'SKR03','3','Expense','3532','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2300, 'SKR03','3','Expense','3533','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2301, 'SKR03','3','Expense','3534','3200','Wareneingang 9% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2302, 'SKR03','3','Expense','3540','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2303, 'SKR03','3','Expense','3541','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2304, 'SKR03','3','Expense','3542','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2305, 'SKR03','3','Expense','3543','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2306, 'SKR03','3','Expense','3544','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2307, 'SKR03','3','Expense','3545','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2308, 'SKR03','3','Expense','3546','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2309, 'SKR03','3','Expense','3547','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2310, 'SKR03','3','Expense','3548','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2311, 'SKR03','3','Expense','3549','3200','Wareneingang 10 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2312, 'SKR03','3','Expense','3550','3200','steuerfreier innergemeinschaftlicher Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2313, 'SKR03','3','Expense','3551','3200','Wareneingang im Drittland steuerbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2314, 'SKR03','3','Expense','3559','3200','Steuerfreier Einfuhren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2315, 'SKR03','3','Expense','3558','3200','Wareneingang I.a. EG-Land steuerbar',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2316, 'SKR03','3','Expense','3560','3200','waren aus einem Umsatzsteuerlager § 13a UStG 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2317, 'SKR03','3','Expense','3565','3200','waren aus einem Umsatzsteuerlager § 13a UStG 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2318, 'SKR03','3','Expense','3566','3200','waren aus einem Umsatzsteuerlager § 13a UStG 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2319, 'SKR03','3','Expense','3600','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2320, 'SKR03','3','Expense','3601','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2321, 'SKR03','3','Expense','3602','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2322, 'SKR03','3','Expense','3603','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2323, 'SKR03','3','Expense','3604','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2324, 'SKR03','3','Expense','3605','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2325, 'SKR03','3','Expense','3606','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2326, 'SKR03','3','Expense','3607','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2327, 'SKR03','3','Expense','3608','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2328, 'SKR03','3','Expense','3609','3200','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2329, 'SKR03','3','Expense','3610','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2330, 'SKR03','3','Expense','3611','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2331, 'SKR03','3','Expense','3612','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2332, 'SKR03','3','Expense','3613','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2333, 'SKR03','3','Expense','3614','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2334, 'SKR03','3','Expense','3615','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2335, 'SKR03','3','Expense','3616','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2336, 'SKR03','3','Expense','3617','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2337, 'SKR03','3','Expense','3618','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2338, 'SKR03','3','Expense','3619','3200','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2339, 'SKR03','3','Expense','3650','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2340, 'SKR03','3','Expense','3651','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2341, 'SKR03','3','Expense','3652','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2342, 'SKR03','3','Expense','3653','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2343, 'SKR03','3','Expense','3654','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2344, 'SKR03','3','Expense','3655','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2345, 'SKR03','3','Expense','3656','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2346, 'SKR03','3','Expense','3657','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2347, 'SKR03','3','Expense','3658','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2348, 'SKR03','3','Expense','3659','3200','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2349, 'SKR03','3','Expense','3660','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2350, 'SKR03','3','Expense','3661','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2351, 'SKR03','3','Expense','3662','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2352, 'SKR03','3','Expense','3663','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2353, 'SKR03','3','Expense','3664','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2354, 'SKR03','3','Expense','3665','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2355, 'SKR03','3','Expense','3666','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2356, 'SKR03','3','Expense','3667','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2357, 'SKR03','3','Expense','3668','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2358, 'SKR03','3','Expense','3669','3200','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2359, 'SKR03','3','Expense','3700','3200','Nachlässe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2360, 'SKR03','3','Expense','3710','3200','Nachlässe 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2361, 'SKR03','3','Expense','3711','3200','Nachlässe 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2362, 'SKR03','3','Expense','3720','3200','Nachlässe 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2363, 'SKR03','3','Expense','3721','3200','Nachlässe 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2364, 'SKR03','3','Expense','3722','3200','Nachlässe 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2365, 'SKR03','3','Expense','3723','3200','Nachlässe 15% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2366, 'SKR03','3','Expense','3724','3200','Nachlässe aus innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2367, 'SKR03','3','Expense','3725','3200','Nachlässe aus innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2368, 'SKR03','3','Expense','3726','3200','Nachlässe aus innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2369, 'SKR03','3','Expense','3727','3200','Nachlässe aus innergemeinschaftlichem Erwerb 15% Vorsteuer und 15% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2370, 'SKR03','0','Revenue','K3GVE1','K3GVE','Wareneingang',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2371, 'SKR03','0','Revenue','K3GVE11','K3GVE1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2372, 'SKR03','3','Revenue','3730','K3GVE11','Erhaltene Skonti',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2373, 'SKR03','3','Revenue','3731','3730','Erhaltene Skonti 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2374, 'SKR03','3','Revenue','3735','3730','Erhaltene Skonti 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2375, 'SKR03','3','Revenue','3736','3730','Erhaltene Skonti 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2376, 'SKR03','3','Revenue','3745','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2377, 'SKR03','3','Revenue','3746','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2378, 'SKR03','3','Revenue','3748','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2379, 'SKR03','3','Revenue','3749','3730','Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2380, 'SKR03','3','Revenue','3750','3769','Erhaltene Boni 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2381, 'SKR03','3','Revenue','3751','3769','Erhaltene Boni 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2382, 'SKR03','3','Revenue','3760','3769','Erhaltene Boni 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2383, 'SKR03','3','Revenue','3761','3769','Erhaltene Boni 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2384, 'SKR03','3','Revenue','3764','3769','Erhaltene Boni 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2385, 'SKR03','3','Revenue','3765','3769','Erhaltene Boni 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2386, 'SKR03','3','Revenue','3769','K3GVE11','Erhaltene Boni',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2387, 'SKR03','3','Revenue','3770','K3GVE11','Erhaltene Rabatte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2388, 'SKR03','3','Revenue','3780','3770','Erhaltene Rabatte 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2389, 'SKR03','3','Revenue','3781','3770','Erhaltene Rabatte 7% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2390, 'SKR03','3','Revenue','3790','3770','Erhaltene Rabatte 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2391, 'SKR03','3','Revenue','3791','3770','Erhaltene Rabatte 19% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2392, 'SKR03','3','Revenue','3794','3770','Erhaltene Rabatte 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2393, 'SKR03','3','Revenue','3795','3770','Erhaltene Rabatte 16% Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2394, 'SKR03','3','Expense','3800','3200','Bezugsnebenkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2395, 'SKR03','3','Expense','3830','3200','Leergut',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2396, 'SKR03','3','Expense','3850','3200','Zölle und Einfuhrabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2397, 'SKR03','0','XXXXX','BV3','BV','Wareneingangs- und Bestandskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2398, 'SKR03','0','XXXXX','BV31','BV3','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2399, 'SKR03','3','XXXXX','3960','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2400, 'SKR03','3','XXXXX','3961','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2401, 'SKR03','3','XXXXX','3962','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2402, 'SKR03','3','XXXXX','3963','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2403, 'SKR03','3','XXXXX','3964','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2404, 'SKR03','3','XXXXX','3965','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2405, 'SKR03','3','XXXXX','3966','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2406, 'SKR03','3','XXXXX','3967','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2407, 'SKR03','3','XXXXX','3968','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2408, 'SKR03','3','XXXXX','3969','BV31','Bestandsveränderungen Roh- Hilfs- und Betriebsstoffe sowie bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2409, 'SKR03','0','Asset','K3BA1','K3BA','Bestand an Vorräte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2410, 'SKR03','0','Asset','K3BA11','K3BA1','Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2411, 'SKR03','3','Asset','3970','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2412, 'SKR03','3','Asset','3971','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2413, 'SKR03','3','Asset','3972','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2414, 'SKR03','3','Asset','3973','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2415, 'SKR03','3','Asset','3974','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2416, 'SKR03','3','Asset','3975','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2417, 'SKR03','3','Asset','3976','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2418, 'SKR03','3','Asset','3977','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2419, 'SKR03','3','Asset','3978','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2420, 'SKR03','3','Asset','3979','K3BA11','Bestand Roh- Hilfs- und Betriebsstoffe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2421, 'SKR03','0','Asset','K3BA12','K3BA1','Fertige Erzeugnisse und Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2422, 'SKR03','3','Asset','3980','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2423, 'SKR03','3','Asset','3981','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2424, 'SKR03','3','Asset','3982','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2425, 'SKR03','3','Asset','3983','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2426, 'SKR03','3','Asset','3984','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2427, 'SKR03','3','Asset','3985','K3BA12','Lager Bestandswert Korrektur',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2428, 'SKR03','3','Expense','3986','K3BA12','Lager Differenzkorrektur Gewinn / Verlust',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2429, 'SKR03','3','Expense','3987','K3BA12','Lager Differenzkorrektur Marktwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2430, 'SKR03','3','Asset','3988','K3BA12','Lager Bestand Zwischenkonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2431, 'SKR03','3','Asset','3989','K3BA12','Bestand Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2432, 'SKR03','0','XXXXX','VSK3','VSK','Verrechnete Stoffkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2433, 'SKR03','0','XXXXX','VSK31','VSK3','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2434, 'SKR03','3','Expense','3990','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2435, 'SKR03','3','XXXXX','3991','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2436, 'SKR03','3','XXXXX','3992','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2437, 'SKR03','3','XXXXX','3993','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2438, 'SKR03','3','XXXXX','3994','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2439, 'SKR03','3','XXXXX','3995','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2440, 'SKR03','3','XXXXX','3996','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2441, 'SKR03','3','XXXXX','3997','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2442, 'SKR03','3','XXXXX','3998','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2443, 'SKR03','3','XXXXX','3999','VSK31','Verrechnete Stoffkosten (Gegenkonto zu 4000-99)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2444, 'SKR03','0','Expense','K4GVA1','K4GVA','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2445, 'SKR03','0','Expense','K4GVA11','K4GVA1','Aufwendungen für Roh- Hilfs- und Betriebsstoffe und für bezogene Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2446, 'SKR03','4','Expense','4000','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2447, 'SKR03','4','Expense','4001','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2448, 'SKR03','4','Expense','4002','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2449, 'SKR03','4','Expense','4003','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2450, 'SKR03','4','Expense','4004','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2451, 'SKR03','4','Expense','4005','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2452, 'SKR03','4','Expense','4006','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2453, 'SKR03','4','Expense','4007','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2454, 'SKR03','4','Expense','4008','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2455, 'SKR03','4','Expense','4009','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2456, 'SKR03','4','Expense','4010','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2457, 'SKR03','4','Expense','4011','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2458, 'SKR03','4','Expense','4012','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2459, 'SKR03','4','Expense','4013','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2460, 'SKR03','4','Expense','4014','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2461, 'SKR03','4','Expense','4015','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2462, 'SKR03','4','Expense','4016','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2463, 'SKR03','4','Expense','4017','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2464, 'SKR03','4','Expense','4018','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2465, 'SKR03','4','Expense','4019','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2466, 'SKR03','4','Expense','4020','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2467, 'SKR03','4','Expense','4021','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2468, 'SKR03','4','Expense','4022','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2469, 'SKR03','4','Expense','4023','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2470, 'SKR03','4','Expense','4024','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2471, 'SKR03','4','Expense','4025','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2472, 'SKR03','4','Expense','4026','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2473, 'SKR03','4','Expense','4027','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2474, 'SKR03','4','Expense','4028','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2475, 'SKR03','4','Expense','4029','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2476, 'SKR03','4','Expense','4030','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2477, 'SKR03','4','Expense','4031','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2478, 'SKR03','4','Expense','4032','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2479, 'SKR03','4','Expense','4033','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2480, 'SKR03','4','Expense','4034','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2481, 'SKR03','4','Expense','4035','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2482, 'SKR03','4','Expense','4036','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2483, 'SKR03','4','Expense','4037','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2484, 'SKR03','4','Expense','4038','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2485, 'SKR03','4','Expense','4039','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2486, 'SKR03','4','Expense','4040','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2487, 'SKR03','4','Expense','4041','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2488, 'SKR03','4','Expense','4042','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2489, 'SKR03','4','Expense','4043','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2490, 'SKR03','4','Expense','4044','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2491, 'SKR03','4','Expense','4045','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2492, 'SKR03','4','Expense','4046','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2493, 'SKR03','4','Expense','4047','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2494, 'SKR03','4','Expense','4048','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2495, 'SKR03','4','Expense','4049','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2496, 'SKR03','4','Expense','4050','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2497, 'SKR03','4','Expense','4051','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2498, 'SKR03','4','Expense','4052','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2499, 'SKR03','4','Expense','4053','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2500, 'SKR03','4','Expense','4054','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2501, 'SKR03','4','Expense','4055','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2502, 'SKR03','4','Expense','4056','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2503, 'SKR03','4','Expense','4057','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2504, 'SKR03','4','Expense','4058','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2505, 'SKR03','4','Expense','4059','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2506, 'SKR03','4','Expense','4060','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2507, 'SKR03','4','Expense','4061','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2508, 'SKR03','4','Expense','4062','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2509, 'SKR03','4','Expense','4063','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2510, 'SKR03','4','Expense','4064','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2511, 'SKR03','4','Expense','4065','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2512, 'SKR03','4','Expense','4066','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2513, 'SKR03','4','Expense','4067','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2514, 'SKR03','4','Expense','4068','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2515, 'SKR03','4','Expense','4069','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2516, 'SKR03','4','Expense','4070','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2517, 'SKR03','4','Expense','4071','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2518, 'SKR03','4','Expense','4072','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2519, 'SKR03','4','Expense','4073','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2520, 'SKR03','4','Expense','4074','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2521, 'SKR03','4','Expense','4075','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2522, 'SKR03','4','Expense','4076','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2523, 'SKR03','4','Expense','4077','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2524, 'SKR03','4','Expense','4078','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2525, 'SKR03','4','Expense','4079','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2526, 'SKR03','4','Expense','4080','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2527, 'SKR03','4','Expense','4081','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2528, 'SKR03','4','Expense','4082','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2529, 'SKR03','4','Expense','4083','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2530, 'SKR03','4','Expense','4084','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2531, 'SKR03','4','Expense','4085','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2532, 'SKR03','4','Expense','4086','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2533, 'SKR03','4','Expense','4087','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2534, 'SKR03','4','Expense','4088','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2535, 'SKR03','4','Expense','4089','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2536, 'SKR03','4','Expense','4090','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2537, 'SKR03','4','Expense','4091','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2538, 'SKR03','4','Expense','4092','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2539, 'SKR03','4','Expense','4093','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2540, 'SKR03','4','Expense','4094','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2541, 'SKR03','4','Expense','4095','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2542, 'SKR03','4','Expense','4096','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2543, 'SKR03','4','Expense','4097','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2544, 'SKR03','4','Expense','4098','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2545, 'SKR03','4','Expense','4099','K4GVA11','Material-und Stoffverbrauch',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2546, 'SKR03','0','Expense','K4GVA2','K4GVA','Personalaufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2547, 'SKR03','0','Expense','K4GVA21','K4GVA2','Löhne und Gehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2548, 'SKR03','4','Expense','4100','K4GVA21','Löhne und Gehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2549, 'SKR03','4','Expense','4110','K4GVA21','Löhne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2550, 'SKR03','4','Expense','4120','K4GVA21','Gehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2551, 'SKR03','4','Expense','4124','K4GVA21','Geschäftsführergehälter GmbH-Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2552, 'SKR03','4','Expense','4125','K4GVA21','Ehegattengehalt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2553, 'SKR03','4','Expense','4126','K4GVA21','Tantiemen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2554, 'SKR03','4','Expense','4127','K4GVA21','Geschäftsführergehälter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2555, 'SKR03','4','Expense','4128','K4GVA21','Vergütungen an angestellte Mitunternehmer §15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2556, 'SKR03','0','Expense','K4GVA22','K4GVA2','Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2557, 'SKR03','4','Expense','4130','K4GVA22','Gesetzliche Soziale Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2558, 'SKR03','4','Expense','4137','K4GVA22','Gesetzliche soziale Aufwendungen für Mitunternehmer §15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2559, 'SKR03','4','Expense','4138','K4GVA22','Beiträge zur Berufsgenossenschaft',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2560, 'SKR03','0','Expense','K4GVA23','K4GVA2','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2561, 'SKR03','4','Expense','4139','K4GVA23','Ausgleichsabgabe i. S. d. Schwerbehindertengesetz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2562, 'SKR03','4','Expense','4140','K4GVA22','Freiwillige soziale Aufwendungen lohnsteuerfrei',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2563, 'SKR03','4','Expense','4145','K4GVA21','Freiwillige soziale Aufwendungen lohnsteuerpflichtig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2564, 'SKR03','4','Expense','4149','K4GVA21','Pauschale Steuer auf sonstige Bezüge (z.B. Fahrkostenzuschüsse)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2565, 'SKR03','4','Expense','4150','K4GVA21','Krankengeldzuschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2566, 'SKR03','4','Expense','4155','K4GVA21','Zuschüsse der Agenturen für Arbeit (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2567, 'SKR03','4','Expense','4160','K4GVA22','Versorgungskassen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2568, 'SKR03','4','Expense','4165','K4GVA22','Aufwendungen für Altersversorgung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2569, 'SKR03','4','Expense','4167','K4GVA22','Pauschale Steuer auf sonstige Bezüge (z.B. Direktversicherungen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2570, 'SKR03','4','Expense','4168','K4GVA22','Aufwendungen für Altersversorgung für Mitunternehmer §15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2571, 'SKR03','4','Expense','4169','K4GVA22','Aufwendungen für Unterstützung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2572, 'SKR03','4','Expense','4170','K4GVA21','Vermögenswirksame Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2573, 'SKR03','4','Expense','4175','K4GVA21','Fahrtkostenerstattung Wohnung/Arbeitsstätte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2574, 'SKR03','4','Expense','4180','K4GVA21','Bedienungsgelder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2575, 'SKR03','4','Expense','4190','K4GVA21','Aushilfslöhne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2576, 'SKR03','4','Expense','4199','K4GVA21','Pauschale Steuer für Aushilfen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2577, 'SKR03','0','Expense','K4GVA3','K4GVA','Sonstige betriebliche Aufwendungen und Abschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2578, 'SKR03','0','Expense','K4GVA31','K4GVA3','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2579, 'SKR03','4','Expense','4200','K4GVA31','Raumkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2580, 'SKR03','4','Expense','4210','K4GVA31','Miete',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2581, 'SKR03','4','Expense','4218','K4GVA31','Gewerbesteuerlich zu berücksichtigende Miete §8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2582, 'SKR03','4','Expense','4219','K4GVA31','Vergütung Mitunternehmer für die mieteweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2583, 'SKR03','4','Expense','4220','K4GVA31','Pacht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2584, 'SKR03','4','Expense','4228','K4GVA31','Gewerbesteuerlich zu berücksichtigende Pacht §8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2585, 'SKR03','4','Expense','4229','K4GVA31','Vergütung an Mitunternehmer für die pachtweise überlassung ihrer Wirtschaftsgüter § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2586, 'SKR03','4','Expense','4230','K4GVA31','Heizung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2587, 'SKR03','4','Expense','4240','K4GVA31','Gas Strom Wasser',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2588, 'SKR03','4','Expense','4250','K4GVA31','Reinigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2589, 'SKR03','4','Expense','4260','K4GVA31','Instandhaltung betrieblicher Räume',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2590, 'SKR03','4','Expense','4270','K4GVA31','Abgaben für betrieblich genutzten Grundbesitz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2591, 'SKR03','4','Expense','4280','K4GVA31','Sonstige Raumkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2592, 'SKR03','4','Expense','4288','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2593, 'SKR03','4','Expense','4289','K4GVA31','Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2594, 'SKR03','4','Expense','4290','K4GVA31','Grundstücksaufwendungen betrieblich',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2595, 'SKR03','4','Expense','4300','K4GVA31','Nicht abziehbare Vorsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2596, 'SKR03','4','Expense','4301','K4GVA31','Nicht abziehbare Vorsteuer 7%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2597, 'SKR03','4','Expense','4305','K4GVA31','Nicht abziehbare Vorsteuer 16%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2598, 'SKR03','4','Expense','4306','K4GVA31','Nicht abziehbare Vorsteuer 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2599, 'SKR03','0','Expense','K4GVA32','K4GVA3','Steuern vom Einkommen und Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2600, 'SKR03','4','Expense','4320','K4GVA32','Gewerbesteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2601, 'SKR03','0','Expense','K4GVA33','K4GVA3','Sonstige Steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2602, 'SKR03','4','Expense','4340','K4GVA33','Sonstige Betriebssteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2603, 'SKR03','4','Expense','4350','K4GVA33','Verbrauchsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2604, 'SKR03','4','Expense','4355','K4GVA33','ökosteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2605, 'SKR03','4','Expense','4360','K4GVA31','Versicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2606, 'SKR03','4','Expense','4366','K4GVA31','Versicherungen für Gebäude',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2607, 'SKR03','4','Expense','4370','K4GVA31','Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2608, 'SKR03','4','Expense','4380','K4GVA31','Beiträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2609, 'SKR03','4','Expense','4390','K4GVA31','Sonstige Abgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2610, 'SKR03','4','Expense','4396','K4GVA31','Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2611, 'SKR03','4','Expense','4397','K4GVA31','Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2612, 'SKR03','4','Expense','4400','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2613, 'SKR03','4','Expense','4401','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2614, 'SKR03','4','Expense','4402','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2615, 'SKR03','4','Expense','4403','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2616, 'SKR03','4','Expense','4404','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2617, 'SKR03','4','Expense','4405','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2618, 'SKR03','4','Expense','4406','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2619, 'SKR03','4','Expense','4407','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2620, 'SKR03','4','Expense','4408','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2621, 'SKR03','4','Expense','4409','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2622, 'SKR03','4','Expense','4410','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2623, 'SKR03','4','Expense','4411','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2624, 'SKR03','4','Expense','4412','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2625, 'SKR03','4','Expense','4413','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2626, 'SKR03','4','Expense','4414','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2627, 'SKR03','4','Expense','4415','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2628, 'SKR03','4','Expense','4416','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2629, 'SKR03','4','Expense','4417','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2630, 'SKR03','4','Expense','4418','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2631, 'SKR03','4','Expense','4419','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2632, 'SKR03','4','Expense','4420','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2633, 'SKR03','4','Expense','4421','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2634, 'SKR03','4','Expense','4422','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2635, 'SKR03','4','Expense','4423','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2636, 'SKR03','4','Expense','4424','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2637, 'SKR03','4','Expense','4425','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2638, 'SKR03','4','Expense','4426','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2639, 'SKR03','4','Expense','4427','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2640, 'SKR03','4','Expense','4428','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2641, 'SKR03','4','Expense','4429','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2642, 'SKR03','4','Expense','4430','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2643, 'SKR03','4','Expense','4431','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2644, 'SKR03','4','Expense','4432','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2645, 'SKR03','4','Expense','4433','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2646, 'SKR03','4','Expense','4434','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2647, 'SKR03','4','Expense','4435','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2648, 'SKR03','4','Expense','4436','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2649, 'SKR03','4','Expense','4437','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2650, 'SKR03','4','Expense','4438','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2651, 'SKR03','4','Expense','4439','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2652, 'SKR03','4','Expense','4440','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2653, 'SKR03','4','Expense','4441','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2654, 'SKR03','4','Expense','4442','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2655, 'SKR03','4','Expense','4443','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2656, 'SKR03','4','Expense','4444','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2657, 'SKR03','4','Expense','4445','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2658, 'SKR03','4','Expense','4446','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2659, 'SKR03','4','Expense','4447','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2660, 'SKR03','4','Expense','4448','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2661, 'SKR03','4','Expense','4449','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2662, 'SKR03','4','Expense','4450','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2663, 'SKR03','4','Expense','4451','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2664, 'SKR03','4','Expense','4452','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2665, 'SKR03','4','Expense','4453','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2666, 'SKR03','4','Expense','4454','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2667, 'SKR03','4','Expense','4455','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2668, 'SKR03','4','Expense','4456','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2669, 'SKR03','4','Expense','4457','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2670, 'SKR03','4','Expense','4458','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2671, 'SKR03','4','Expense','4459','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2672, 'SKR03','4','Expense','4460','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2673, 'SKR03','4','Expense','4461','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2674, 'SKR03','4','Expense','4462','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2675, 'SKR03','4','Expense','4463','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2676, 'SKR03','4','Expense','4464','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2677, 'SKR03','4','Expense','4465','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2678, 'SKR03','4','Expense','4466','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2679, 'SKR03','4','Expense','4467','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2680, 'SKR03','4','Expense','4468','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2681, 'SKR03','4','Expense','4469','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2682, 'SKR03','4','Expense','4470','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2683, 'SKR03','4','Expense','4471','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2684, 'SKR03','4','Expense','4472','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2685, 'SKR03','4','Expense','4473','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2686, 'SKR03','4','Expense','4474','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2687, 'SKR03','4','Expense','4475','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2688, 'SKR03','4','Expense','4476','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2689, 'SKR03','4','Expense','4477','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2690, 'SKR03','4','Expense','4478','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2691, 'SKR03','4','Expense','4479','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2692, 'SKR03','4','Expense','4480','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2693, 'SKR03','4','Expense','4481','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2694, 'SKR03','4','Expense','4482','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2695, 'SKR03','4','Expense','4483','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2696, 'SKR03','4','Expense','4484','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2697, 'SKR03','4','Expense','4485','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2698, 'SKR03','4','Expense','4486','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2699, 'SKR03','4','Expense','4487','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2700, 'SKR03','4','Expense','4488','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2701, 'SKR03','4','Expense','4489','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2702, 'SKR03','4','Expense','4490','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2703, 'SKR03','4','Expense','4491','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2704, 'SKR03','4','Expense','4492','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2705, 'SKR03','4','Expense','4493','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2706, 'SKR03','4','Expense','4494','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2707, 'SKR03','4','Expense','4495','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2708, 'SKR03','4','Expense','4496','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2709, 'SKR03','4','Expense','4497','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2710, 'SKR03','4','Expense','4498','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2711, 'SKR03','4','Expense','4499','K4GVA31','(zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2712, 'SKR03','4','Expense','4500','K4GVA31','Fahrzeugkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2713, 'SKR03','4','Expense','4510','K4GVA33','Kfz-steuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2714, 'SKR03','4','Expense','4520','K4GVA31','Kfz-Versicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2715, 'SKR03','4','Expense','4530','K4GVA31','Laufende Kfz-Betriebskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2716, 'SKR03','4','Expense','4540','K4GVA31','Kfz-Reparaturen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2717, 'SKR03','4','Expense','4550','K4GVA31','Garagenmieten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2718, 'SKR03','4','Expense','4560','K4GVA31','Mautgebühren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2719, 'SKR03','4','Expense','4570','K4GVA31','Leasingfahrzeugkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2720, 'SKR03','4','Expense','4580','K4GVA31','Sonstige Kfz-Kosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2721, 'SKR03','4','Expense','4590','K4GVA31','Kfz-Kosten für Betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2722, 'SKR03','4','Expense','4595','K4GVA31','Fremdfahrzeugkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2723, 'SKR03','4','Expense','4600','K4GVA31','Werbekosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2724, 'SKR03','4','Expense','4630','K4GVA31','Geschenke abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2725, 'SKR03','4','Expense','4635','K4GVA31','Geschenke nicht abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2726, 'SKR03','4','Expense','4638','K4GVA31','Geschenke ausschließlich betrieblich genutzt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2727, 'SKR03','4','Expense','4640','K4GVA31','Repräsentationskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2728, 'SKR03','4','Expense','4650','K4GVA31','Bewirtungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2729, 'SKR03','4','Expense','4651','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2730, 'SKR03','4','Expense','4652','K4GVA31','Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2731, 'SKR03','4','Expense','4653','K4GVA31','Aufmerksamkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2732, 'SKR03','4','Expense','4654','K4GVA31','Nicht abzugsfähige Bewirtungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2733, 'SKR03','4','Expense','4655','K4GVA31','Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2734, 'SKR03','4','Expense','4660','K4GVA31','Reisekosten Arbeitnehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2735, 'SKR03','4','Expense','4662','K4GVA31','Reisekosten Arbeitnehmer (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2736, 'SKR03','4','Expense','4663','K4GVA31','Reisekosten Arbeitnehmer Fahrkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2737, 'SKR03','4','Expense','4664','K4GVA31','Reisekosten Arbeitnehmer Verpflegungsmehraufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2738, 'SKR03','4','Expense','4666','K4GVA31','Reisekosten Arbeitnehmer übernachtungsaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2739, 'SKR03','4','Expense','4668','K4GVA31','Kilometergelderstattung Arbeitnehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2740, 'SKR03','4','Expense','4670','K4GVA31','Reisekosten Unternehmer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2741, 'SKR03','4','Expense','4672','K4GVA31','Reisekosten Unternehmer (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2742, 'SKR03','4','Expense','4673','K4GVA31','Reisekosten Unternehmer Fahrkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2743, 'SKR03','4','Expense','4674','K4GVA31','Reisekosten Unternehmer Verpflegungsmehraufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2744, 'SKR03','4','Expense','4676','K4GVA31','Reisekosten Unternehmer übernachtungsaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2745, 'SKR03','4','Expense','4678','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2746, 'SKR03','4','Expense','4679','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (nicht abziehbarer Anteil)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2747, 'SKR03','4','Expense','4680','K4GVA31','Fahrten zwischen Wohnung und Arbeitstätte (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2748, 'SKR03','4','Expense','4700','K4GVA31','Kosten der Warenabgabe',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2749, 'SKR03','4','Expense','4710','K4GVA31','Verpackungsmaterial',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2750, 'SKR03','4','Expense','4730','K4GVA31','Ausgangsfrachten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2751, 'SKR03','4','Expense','4750','K4GVA31','Transportversicherungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2752, 'SKR03','4','Expense','4760','K4GVA31','Verkaufsprovisionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2753, 'SKR03','4','Expense','4780','K4GVA31','Fremdarbeiten (Vertrieb)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2754, 'SKR03','4','Expense','4790','K4GVA31','Aufwand für Gewährleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2755, 'SKR03','4','Expense','4800','K4GVA31','Reparaturen und Instandhaltungen von technischen Anlagen und Maschinen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2756, 'SKR03','4','Expense','4805','K4GVA31','Reparaturen und Instandhaltungen von anderen Anlagen und Betriebs- und Geschäftsaustattung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2757, 'SKR03','4','Expense','4806','K4GVA31','Wartungskosten für Hard- und Software',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2758, 'SKR03','4','Expense','4809','K4GVA31','Sonstige Reparaturen und Instandhaltungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2759, 'SKR03','4','Expense','4810','K4GVA31','Mietleasing',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2760, 'SKR03','4','Expense','4814','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2761, 'SKR03','0','Expense','K4GVA34','K4GVA3','Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen sowie auf aktivierte Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2762, 'SKR03','4','Expense','4815','K4GVA34','Kaufleasing',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2763, 'SKR03','4','Expense','4820','K4GVA34','Abschreibung auf Aufwendungen für die Ingangsetzung und Erweiterung des Geschäftsbetriebs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2764, 'SKR03','4','Expense','4821','K4GVA34','Abschreibung auf Aufwendungen für die Währungsumstellung auf den Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2765, 'SKR03','4','Expense','4822','K4GVA34','Abschreibung auf immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2766, 'SKR03','4','Expense','4824','K4GVA34','Abschreibung auf den Geschäfts- oder Firmenwert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2767, 'SKR03','4','Expense','4826','K4GVA34','Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenstände',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2768, 'SKR03','4','Expense','4830','K4GVA34','Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2769, 'SKR03','4','Expense','4831','K4GVA34','Abschreibungen auf Gebäude',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2770, 'SKR03','4','Expense','4832','K4GVA34','Abschreibungen auf Kfz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2771, 'SKR03','4','Expense','4833','K4GVA34','Abschreibungen auf Gebäudeanteil des häuslichen Arbeitszimmers',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2772, 'SKR03','4','Expense','4840','K4GVA34','Außerplanmäßige Abschreibungen auf Sachanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2773, 'SKR03','4','Expense','4841','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2774, 'SKR03','4','Expense','4842','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2775, 'SKR03','4','Expense','4843','K4GVA34','Absetzung für Außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2776, 'SKR03','4','Expense','4850','K4GVA34','Abschreibungen auf Sachanlagen auf Grund steuerlich Sondervorschriften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2777, 'SKR03','4','Expense','4851','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (ohne Kfz)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2778, 'SKR03','4','Expense','4852','K4GVA34','Sonderabschreibungen nach § 7g Abs. 1 und 2 EStG (für Kfz)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2779, 'SKR03','4','Expense','4855','K4GVA34','Sofortabschreibung geringwertiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2780, 'SKR03','4','Expense','4860','K4GVA34','Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2781, 'SKR03','4','Expense','4862','K4GVA34','Abschreibung auf Sammelposten WG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2782, 'SKR03','4','Expense','4865','K4GVA34','Außerplanmäßige Abschreibungen auf aktivierte geringwertiger Wirtschaftsgüter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2783, 'SKR03','0','Expense','K4GVA35','K4GVA3','Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2784, 'SKR03','4','Expense','4870','K4GVA35','Abschreibungen auf Finanzanlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2785, 'SKR03','4','Expense','4871','K4GVA35','Abschreibungen auf Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2786, 'SKR03','4','Expense','4872','K4GVA35','Abschreibungen auf Grund von Verlustanteilen an Mitunternehmerschaften § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2787, 'SKR03','4','Expense','4873','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2788, 'SKR03','4','Expense','4874','K4GVA35','Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2789, 'SKR03','4','Expense','4875','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2790, 'SKR03','4','Expense','4876','K4GVA35','Abschreibungen auf Wertpapiere des Umlaufvermögens 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2791, 'SKR03','4','Expense','4879','K4GVA35','Vorwegnahme künftiger Wertschwankungen bei Wertpapieren des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2792, 'SKR03','0','Expense','K4GVA36','K4GVA3','Abschreibungen auf Vermögensgegenstände des Umlaufvermögens soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2793, 'SKR03','4','Expense','4880','K4GVA36','Abschreibungen auf Umlaufvermögen ohne Wertpapiere (soweit unübliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2794, 'SKR03','4','Expense','4882','K4GVA36','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit unübliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2795, 'SKR03','4','Expense','4885','K4GVA31','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2796, 'SKR03','4','Expense','4886','K4GVA31','Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (soweit übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2797, 'SKR03','4','Expense','4887','K4GVA31','Abschreibungen auf Umlaufvermögen steuerrechtlich bedingt (soweit übliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2798, 'SKR03','4','Expense','4890','K4GVA36','Vorwegnahme künftiger Wertschwankungen im Umlaufvermögen (soweit unübliche Höhe)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2799, 'SKR03','4','Expense','4900','K4GVA31','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2800, 'SKR03','4','Expense','4905','K4GVA31','Sonstige Aufwendungen betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2801, 'SKR03','4','Expense','4909','K4GVA31','Fremdleistungen / Fremarbeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2802, 'SKR03','4','Expense','4910','K4GVA31','Porto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2803, 'SKR03','4','Expense','4920','K4GVA31','Telefon',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2804, 'SKR03','4','Expense','4925','K4GVA31','Telefax und Internetkosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2805, 'SKR03','4','Expense','4930','K4GVA31','Bürobedarf',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2806, 'SKR03','4','Expense','4940','K4GVA31','Zeitschriften Bücher',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2807, 'SKR03','4','Expense','4945','K4GVA31','Fortbildungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2808, 'SKR03','4','Expense','4946','K4GVA31','Freiwillige Sozialleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2809, 'SKR03','4','Expense','4948','K4GVA31','Vergütungen an Mitunternehmer § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2810, 'SKR03','4','Expense','4949','K4GVA31','Haftungsvergütung an Mitunternehmer § 15 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2811, 'SKR03','4','Expense','4950','K4GVA31','Rechts- und Beratungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2812, 'SKR03','4','Expense','4955','K4GVA31','Buchführungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2813, 'SKR03','4','Expense','4955.01','K4GVA31','Kosten Heidrich&Müller-Hansen PG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2814, 'SKR03','4','Expense','4957','K4GVA31','Abschluss- und Prüfungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2815, 'SKR03','4','Expense','4960','K4GVA31','Mieten für Einrichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2816, 'SKR03','4','Expense','4964','K4GVA31','Aufwendungen für die zeitlich befristetete Überlassung von Rechten (Lizenzen,Konzessionen)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2817, 'SKR03','4','Expense','4965','K4GVA31','Mietleasing',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2818, 'SKR03','4','Expense','4966','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2819, 'SKR03','4','Expense','4968','K4GVA31','Gewerbesteuerlich zu berücksichtigendes Mietleasing für Einrichtungen § 8 GewStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2820, 'SKR03','4','Expense','4969','K4GVA31','Aufwendungen für Abraum- und Abfallbeseitigung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2821, 'SKR03','4','Expense','4970','K4GVA31','Nebenkosten des Geldverkehrs',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2822, 'SKR03','4','Expense','4975','K4GVA31','Aufwendungen aus Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2823, 'SKR03','4','Expense','4976','K4GVA31','Aufwendungen aus der Veräußerung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsfähig (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2824, 'SKR03','4','Expense','4980','K4GVA31','Betriebsbedarf',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2825, 'SKR03','4','Expense','4985','K4GVA31','Werkzeuge und Kleingeräte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2826, 'SKR03','0','Expense','K4GVA4','K4GVA','Kalkulatorische Kosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2827, 'SKR03','0','Expense','K4GVA41','K4GVA4','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2828, 'SKR03','4','Expense','4990','K4GVA41','Kalkulatorischer Unternehmerlohn',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2829, 'SKR03','4','Expense','4991','K4GVA41','Kalkulatorische Miete und Pacht',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2830, 'SKR03','4','Expense','4992','K4GVA41','Kalkulatorische Zinsen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2831, 'SKR03','4','Expense','4993','K4GVA41','Kalkulatorische Abschreibungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2832, 'SKR03','4','Expense','4994','K4GVA41','Kalkulatorische Wagnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2833, 'SKR03','4','Expense','4995','K4GVA41','Kalkulatorischer Lohn für unentgeltliche Mitarbeiter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2834, 'SKR03','0','Expense','K4GVA5','K4GVA','Kosten bei Anwendung des Umsatzkostenverfahren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2835, 'SKR03','0','Expense','K4GVA51','K4GVA5','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2836, 'SKR03','4','Expense','4996','K4GVA51','Herstellungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2837, 'SKR03','4','Expense','4997','K4GVA51','Verwaltungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2838, 'SKR03','4','Expense','4998','K4GVA51','Vertriebskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2839, 'SKR03','4','Expense','4999','K4GVA51','Gegenkonto 4996 - 4998',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2840, 'SKR03','0','Asset','K7BA01','K7BA','Unfertige Erzeugnisse und Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2841, 'SKR03','7','Asset','7000','K7BA01','Unfertige Erzeugnisse und Leistungen (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2842, 'SKR03','7','Asset','7050','7000','Unfertige Erzeugnisse (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2843, 'SKR03','7','Asset','7080','7000','Unfertige Leistungen (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2844, 'SKR03','0','Asset','K7BA02','K7BA','In Ausführung befindliche Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2845, 'SKR03','7','Asset','7090','K7BA02','In Ausführung befindliche Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2846, 'SKR03','0','Asset','K7BA03','K7BA','In Arbeit befindliche Aufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2847, 'SKR03','7','Asset','7095','K7BA03','In Arbeit befindliche Aufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2848, 'SKR03','0','Asset','K7BA04','K7BA','Fertige Erzeugnisse und Waren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2849, 'SKR03','7','Asset','7100','K7BA04','Fertige Erzeugnisse und Waren (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2850, 'SKR03','7','Asset','7110','7100','Fertige Erzeugnisse (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2851, 'SKR03','7','Asset','7140','7100','Waren (Bestand)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2852, 'SKR03','0','Revenue','K8GVE1','K8GVE','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2853, 'SKR03','0','Revenue','K8GVE11','K8GVE1','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2854, 'SKR03','8','Revenue','8000','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2855, 'SKR03','8','Revenue','8001','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2856, 'SKR03','8','Revenue','8002','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2857, 'SKR03','8','Revenue','8003','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2858, 'SKR03','8','Revenue','8004','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2859, 'SKR03','8','Revenue','8005','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2860, 'SKR03','8','Revenue','8006','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2861, 'SKR03','8','Revenue','8007','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2862, 'SKR03','8','Revenue','8008','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2863, 'SKR03','8','Revenue','8009','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2864, 'SKR03','8','Revenue','8010','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2865, 'SKR03','8','Revenue','8011','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2866, 'SKR03','8','Revenue','8012','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2867, 'SKR03','8','Revenue','8013','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2868, 'SKR03','8','Revenue','8014','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2869, 'SKR03','8','Revenue','8015','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2870, 'SKR03','8','Revenue','8016','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2871, 'SKR03','8','Revenue','8017','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2872, 'SKR03','8','Revenue','8018','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2873, 'SKR03','8','Revenue','8019','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2874, 'SKR03','8','Revenue','8020','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2875, 'SKR03','8','Revenue','8021','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2876, 'SKR03','8','Revenue','8022','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2877, 'SKR03','8','Revenue','8023','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2878, 'SKR03','8','Revenue','8024','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2879, 'SKR03','8','Revenue','8025','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2880, 'SKR03','8','Revenue','8026','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2881, 'SKR03','8','Revenue','8027','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2882, 'SKR03','8','Revenue','8028','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2883, 'SKR03','8','Revenue','8029','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2884, 'SKR03','8','Revenue','8030','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2885, 'SKR03','8','Revenue','8031','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2886, 'SKR03','8','Revenue','8032','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2887, 'SKR03','8','Revenue','8033','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2888, 'SKR03','8','Revenue','8034','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2889, 'SKR03','8','Revenue','8035','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2890, 'SKR03','8','Revenue','8036','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2891, 'SKR03','8','Revenue','8037','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2892, 'SKR03','8','Revenue','8038','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2893, 'SKR03','8','Revenue','8039','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2894, 'SKR03','8','Revenue','8040','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2895, 'SKR03','8','Revenue','8041','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2896, 'SKR03','8','Revenue','8042','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2897, 'SKR03','8','Revenue','8043','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2898, 'SKR03','8','Revenue','8044','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2899, 'SKR03','8','Revenue','8045','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2900, 'SKR03','8','Revenue','8046','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2901, 'SKR03','8','Revenue','8047','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2902, 'SKR03','8','Revenue','8048','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2903, 'SKR03','8','Revenue','8049','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2904, 'SKR03','8','Revenue','8050','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2905, 'SKR03','8','Revenue','8051','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2906, 'SKR03','8','Revenue','8052','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2907, 'SKR03','8','Revenue','8053','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2908, 'SKR03','8','Revenue','8054','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2909, 'SKR03','8','Revenue','8055','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2910, 'SKR03','8','Revenue','8056','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2911, 'SKR03','8','Revenue','8057','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2912, 'SKR03','8','Revenue','8058','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2913, 'SKR03','8','Revenue','8059','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2914, 'SKR03','8','Revenue','8060','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2915, 'SKR03','8','Revenue','8061','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2916, 'SKR03','8','Revenue','8062','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2917, 'SKR03','8','Revenue','8063','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2918, 'SKR03','8','Revenue','8064','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2919, 'SKR03','8','Revenue','8065','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2920, 'SKR03','8','Revenue','8066','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2921, 'SKR03','8','Revenue','8067','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2922, 'SKR03','8','Revenue','8068','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2923, 'SKR03','8','Revenue','8069','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2924, 'SKR03','8','Revenue','8070','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2925, 'SKR03','8','Revenue','8071','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2926, 'SKR03','8','Revenue','8072','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2927, 'SKR03','8','Revenue','8073','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2928, 'SKR03','8','Revenue','8074','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2929, 'SKR03','8','Revenue','8075','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2930, 'SKR03','8','Revenue','8076','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2931, 'SKR03','8','Revenue','8077','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2932, 'SKR03','8','Revenue','8078','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2933, 'SKR03','8','Revenue','8079','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2934, 'SKR03','8','Revenue','8080','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2935, 'SKR03','8','Revenue','8081','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2936, 'SKR03','8','Revenue','8082','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2937, 'SKR03','8','Revenue','8083','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2938, 'SKR03','8','Revenue','8084','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2939, 'SKR03','8','Revenue','8085','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2940, 'SKR03','8','Revenue','8086','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2941, 'SKR03','8','Revenue','8087','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2942, 'SKR03','8','Revenue','8088','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2943, 'SKR03','8','Revenue','8089','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2944, 'SKR03','8','Revenue','8090','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2945, 'SKR03','8','Revenue','8091','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2946, 'SKR03','8','Revenue','8092','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2947, 'SKR03','8','Revenue','8093','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2948, 'SKR03','8','Revenue','8094','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2949, 'SKR03','8','Revenue','8095','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2950, 'SKR03','8','Revenue','8096','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2951, 'SKR03','8','Revenue','8097','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2952, 'SKR03','8','Revenue','8098','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2953, 'SKR03','8','Revenue','8099','K8GVE11','(Zur freien Verfügung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2954, 'SKR03','8','Revenue','8100','K8GVE11','steuerfreie Umsätze § 4 Nr. 8 ff. UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2955, 'SKR03','8','Revenue','8105','K8GVE11','Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpackung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2956, 'SKR03','8','Revenue','8110','K8GVE11','Sonstige steuerfreie Umsätze Inland',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2957, 'SKR03','8','Revenue','8120','K8GVE11','steuerfreie Umsätze § 4 Nr. 1a UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2958, 'SKR03','8','Revenue','8125','K8GVE11','steuerfreie innergemeinschaftliche Lieferung § 4 Nr. 1b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2959, 'SKR03','8','Revenue','8130','K8GVE11','Lieferungen des ersten Abnehmers bei Innergemeinschaftlichen Dreiecksgeschäften § 25b abs. 2 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2960, 'SKR03','8','Revenue','8135','K8GVE11','Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer Identifikationsnummer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2961, 'SKR03','8','Revenue','8140','K8GVE11','Steuerfreie Umsätze Offshore usw.',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2962, 'SKR03','8','Revenue','8150','K8GVE11','Sonstige steuerfreie Umsätze (z.B. § 4 Nr. 2-7 UStG)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2963, 'SKR03','8','Revenue','8160','K8GVE11','Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2964, 'SKR03','8','Revenue','8190','K8GVE11','Erlöse die mit den Durchschnittssätzen des § 24 UStG versteuert werden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2965, 'SKR03','8','Revenue','8195','K8GVE11','Erlöse als Kleinunternehmer i. S. d. § 19 Abs. 1 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2966, 'SKR03','8','Revenue','8196','K8GVE11','Erlöse aus Geldspielautomaten 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2967, 'SKR03','8','Revenue','8197','K8GVE11','Erlöse aus Geldspielautomaten 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2968, 'SKR03','8','Revenue','8200','K8GVE11','Erlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2969, 'SKR03','8','Revenue','8300','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2970, 'SKR03','8','Revenue','8301','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2971, 'SKR03','8','Revenue','8302','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2972, 'SKR03','8','Revenue','8303','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2973, 'SKR03','8','Revenue','8304','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2974, 'SKR03','8','Revenue','8305','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2975, 'SKR03','8','Revenue','8306','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2976, 'SKR03','8','Revenue','8307','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2977, 'SKR03','8','Revenue','8308','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2978, 'SKR03','8','Revenue','8309','K8GVE11','Erlöse 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2979, 'SKR03','8','Revenue','8310','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2980, 'SKR03','8','Revenue','8311','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2981, 'SKR03','8','Revenue','8312','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2982, 'SKR03','8','Revenue','8313','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2983, 'SKR03','8','Revenue','8314','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2984, 'SKR03','8','Revenue','8315','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2985, 'SKR03','8','Revenue','8316','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2986, 'SKR03','8','Revenue','8317','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2987, 'SKR03','8','Revenue','8318','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2988, 'SKR03','8','Revenue','8319','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2989, 'SKR03','8','Revenue','8320','K8GVE11','Erlöse aus im anderen EG-Land steuerpflichtigen Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2990, 'SKR03','8','Revenue','8330','K8GVE11','Erlöse aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2991, 'SKR03','8','Revenue','8337','K8GVE11','Erlöse aus Leistungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2992, 'SKR03','8','Revenue','8338','K8GVE11','Erlöse aus im Drittland steuerbaren Leistungen im Inland nicht steuerbare Umsätze',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2993, 'SKR03','8','Revenue','8339','K8GVE11','Erlöse aus im anderen EG-Land steuerbaren Lieferungen im Inland nicht steuerbare Umsätze',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2994, 'SKR03','8','Revenue','8340','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2995, 'SKR03','8','Revenue','8341','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2996, 'SKR03','8','Revenue','8342','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2997, 'SKR03','8','Revenue','8343','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2998, 'SKR03','8','Revenue','8344','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 2999, 'SKR03','8','Revenue','8345','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3000, 'SKR03','8','Revenue','8346','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3001, 'SKR03','8','Revenue','8347','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3002, 'SKR03','8','Revenue','8348','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3003, 'SKR03','8','Revenue','8349','K8GVE11','Erlöse 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3004, 'SKR03','8','Revenue','8400','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3005, 'SKR03','8','Revenue','8400.01','K8GVE11','Erlöse Projekte 19%',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3006, 'SKR03','8','Revenue','8401','K8GVE11','Vorausberechnete Einnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3007, 'SKR03','8','Revenue','8402','K8GVE11','Sontige Einnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3008, 'SKR03','8','Revenue','8403','K8GVE11','Konto Kasse Ertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3009, 'SKR03','8','Revenue','8404','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3010, 'SKR03','8','Revenue','8405','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3011, 'SKR03','8','Revenue','8406','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3012, 'SKR03','8','Revenue','8407','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3013, 'SKR03','8','Revenue','8408','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3014, 'SKR03','8','Revenue','8409','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3015, 'SKR03','8','Revenue','8410','K8GVE11','Erlöse 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3016, 'SKR03','8','Revenue','8510','K8GVE11','Provisionsumsätze',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3017, 'SKR03','8','Revenue','8514','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 8 ff. UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3018, 'SKR03','8','Revenue','8515','K8GVE11','Provisionsumsätze steuerfrei §4 Nr. 5 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3019, 'SKR03','8','Revenue','8516','K8GVE11','Provisionsumsätze 7 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3020, 'SKR03','8','Revenue','8518','K8GVE11','Provisionsumsätze 16 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3021, 'SKR03','8','Revenue','8519','K8GVE11','Provisionsumsätze 19 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3022, 'SKR03','8','Revenue','8520','K8GVE11','Erlöse Abfallverwertung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3023, 'SKR03','8','Revenue','8540','K8GVE11','Erlöse Leergut',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3024, 'SKR03','0','Revenue','K8GVE12','K8GVE1','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3025, 'SKR03','8','Revenue','8570','K8GVE12','Provision sonstige Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3026, 'SKR03','8','Revenue','8574','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 8 ff UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3027, 'SKR03','8','Revenue','8575','K8GVE12','Provision sonstige Erträge steuerfrei §4 Nr. 5 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3028, 'SKR03','8','Revenue','8576','K8GVE12','Provision sonstige Erträge 7 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3029, 'SKR03','8','Revenue','8578','K8GVE12','Provision sonstige Erträge 16 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3030, 'SKR03','8','Revenue','8579','K8GVE12','Provision sonstige Erträge 19 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3031, 'SKR03','0','Revenue','K8GVE2','K8GVE','Statistische Konten EüR',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3032, 'SKR03','0','Revenue','K8GVE21','K8GVE2','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3033, 'SKR03','8','Revenue','8580','K8GVE21','Statistisches Konto Erlöse zum Allgemeinen Umsatzsteuerersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3034, 'SKR03','8','Revenue','8581','K8GVE21','Statistisches Konto Erlöse zum ermäßigten Umsatzsteuerersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3035, 'SKR03','8','Revenue','8582','K8GVE21','Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3036, 'SKR03','8','Revenue','8589','K8GVE21','Gegenkonto 8580-8582 bei Aufteilung der Erlöse nach Steuersätzen (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3037, 'SKR03','0','Revenue','K8GVE22','K8GVE2','Sonstige betriebliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3038, 'SKR03','8','Revenue','8590','K8GVE22','Verrechnete sonstige Sachbezüge (keine Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3039, 'SKR03','8','Revenue','8591','K8GVE22','Sachbezüge 7% USt (Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3040, 'SKR03','8','Revenue','8595','K8GVE22','Sachbezüge 19% USt (Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3041, 'SKR03','8','Revenue','8596','K8GVE22','Sachbezüge 16% USt (Waren)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3042, 'SKR03','8','Revenue','8600','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3043, 'SKR03','8','Revenue','8605','K8GVE22','Sonstige Erträge betrieblich und regelmäßig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3044, 'SKR03','8','Revenue','8609','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei § 4 Nr. 8 ff UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3045, 'SKR03','8','Revenue','8610','K8GVE22','Verrechnete sonstige Sachbezüge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3046, 'SKR03','8','Revenue','8611','K8GVE22','Verrechnete sonstige Sachbezüge 19% USt (z.B. Kfz-Gestellung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3047, 'SKR03','8','Revenue','8612','K8GVE22','Verrechnete sonstige Sachbezüge 16% USt (z.B. Kfz-Gestellung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3048, 'SKR03','8','Revenue','8614','K8GVE22','Verrechnete sonstige Sachbezüge ohne Umsatzsteuer',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3049, 'SKR03','8','Revenue','8625','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3050, 'SKR03','8','Revenue','8626','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3051, 'SKR03','8','Revenue','8627','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3052, 'SKR03','8','Revenue','8628','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3053, 'SKR03','8','Revenue','8629','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig steuerfrei z.B. § 4 Nr. 2-7 UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3054, 'SKR03','8','Revenue','8630','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3055, 'SKR03','8','Revenue','8631','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3056, 'SKR03','8','Revenue','8632','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3057, 'SKR03','8','Revenue','8633','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3058, 'SKR03','8','Revenue','8634','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3059, 'SKR03','8','Revenue','8640','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3060, 'SKR03','8','Revenue','8641','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3061, 'SKR03','8','Revenue','8642','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3062, 'SKR03','8','Revenue','8643','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3063, 'SKR03','8','Revenue','8644','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3064, 'SKR03','8','Revenue','8648','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3065, 'SKR03','8','Revenue','8649','K8GVE22','Sonstige Erlöse betrieblich und regelmäßig 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3066, 'SKR03','0','Revenue','K8GVE23','K8GVE2','Sonstige Zinsen und ähnliche Erträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3067, 'SKR03','8','Revenue','8650','K8GVE23','Erlöse Zinsen und Diskontspesen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3068, 'SKR03','8','Revenue','8660','K8GVE23','Erlöse Zinsen und Diskontspesen aus verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3069, 'SKR03','0','Expense','K8GVA1','K8GVA','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3070, 'SKR03','0','Expense','K8GVA11','K8GVA1','Umsatzerlöse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3071, 'SKR03','8','Expense','8700','K8GVA11','Erlösschmälerungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3072, 'SKR03','8','Revenue','8701','K8GVA11','Nicht abgerechnete Einnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3073, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3074, 'SKR03','8','Expense','8705','K8GVA11','Erlösschmälerungen aus steuerfreien Umsätzen §4 Nr. 1a UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3075, 'SKR03','8','Expense','8710','K8GVA11','Erlösschmälerungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3076, 'SKR03','8','Expense','8720','K8GVA11','Erlösschmälerungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3077, 'SKR03','8','Expense','8721','K8GVA11','Erlösschmälerungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3078, 'SKR03','8','Expense','8723','K8GVA11','Erlösschmälerungen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3079, 'SKR03','8','Expense','8724','K8GVA11','Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3080, 'SKR03','8','Expense','8725','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 7 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3081, 'SKR03','8','Expense','8726','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen EG-Lieferungen 19 % USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3082, 'SKR03','8','Expense','8727','K8GVA11','Erlösschmälerungen aus im anderen EG-Land steuerpflichtigen Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3083, 'SKR03','8','Expense','8729','K8GVA11','Erlösschmälerungen aus im Inland steuerpflichtigen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3084, 'SKR03','8','Expense','8730','K8GVA11','Gewährte Skonti',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3085, 'SKR03','8','Expense','8731','K8GVA11','Gewährte Skonti 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3086, 'SKR03','8','Expense','8735','K8GVA11','Gewährte Skonti 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3087, 'SKR03','8','Expense','8736','K8GVA11','Gewährte Skonti 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3088, 'SKR03','8','Expense','8741','K8GVA11','Gewährte Skonti aus Lieferungen für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3089, 'SKR03','8','Expense','8743','K8GVA11','Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3090, 'SKR03','8','Expense','8745','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3091, 'SKR03','8','Expense','8746','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3092, 'SKR03','8','Expense','8748','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3093, 'SKR03','8','Expense','8749','K8GVA11','Gewährte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3094, 'SKR03','8','Expense','8750','K8GVA11','Gewährte Boni 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3095, 'SKR03','8','Expense','8751','K8GVA11','Gewährte Boni 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3096, 'SKR03','8','Expense','8760','K8GVA11','Gewährte Boni 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3097, 'SKR03','8','Expense','8761','K8GVA11','Gewährte Boni 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3098, 'SKR03','8','Expense','8764','K8GVA11','Gewährte Boni 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3099, 'SKR03','8','Expense','8765','K8GVA11','Gewährte Boni 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3100, 'SKR03','8','Expense','8769','K8GVA11','Gewährte Boni',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3101, 'SKR03','8','Expense','8770','K8GVA11','Gewährte Rabatte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3102, 'SKR03','8','Expense','8780','K8GVA11','Gewährte Rabatte 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3103, 'SKR03','8','Expense','8781','K8GVA11','Gewährte Rabatte 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3104, 'SKR03','8','Expense','8790','K8GVA11','Gewährte Rabatte 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3105, 'SKR03','8','Expense','8791','K8GVA11','Gewährte Rabatte 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3106, 'SKR03','8','Expense','8794','K8GVA11','Gewährte Rabatte 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3107, 'SKR03','8','Expense','8795','K8GVA11','Gewährte Rabatte 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3108, 'SKR03','0','Expense','K8GVA12','K8GVA1','Sonstige betriebliche Aufwendungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3109, 'SKR03','8','Expense','8800','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3110, 'SKR03','8','Expense','8801','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3111, 'SKR03','8','Expense','8802','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3112, 'SKR03','8','Expense','8803','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3113, 'SKR03','8','Expense','8804','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3114, 'SKR03','8','Expense','8805','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3115, 'SKR03','8','Expense','8806','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3116, 'SKR03','8','Expense','8807','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3117, 'SKR03','8','Expense','8808','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3118, 'SKR03','8','Expense','8809','K8GVA12','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3119, 'SKR03','8','Expense','8817','K8GVA12','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3120, 'SKR03','8','Expense','8818','K8GVA12','Erlöse aus Verkäufen Finanzanlagen (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3121, 'SKR03','8','Expense','8819','K8GVA12','Erlöse aus Verkäufen Finanzanlagen 100% / 50% nicht abzugsfähig (inländische Kap. Ges.) (Bei Buchverlust)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3122, 'SKR03','8','Expense','8820','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3123, 'SKR03','8','Expense','8821','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3124, 'SKR03','8','Expense','8822','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3125, 'SKR03','8','Expense','8823','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3126, 'SKR03','8','Expense','8824','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3127, 'SKR03','8','Expense','8825','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 19% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3128, 'SKR03','8','Expense','8826','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen 16% USt (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3129, 'SKR03','8','Expense','8827','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1a UStG (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3130, 'SKR03','8','Expense','8828','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen steuerfrei §4 Nr. 1b UStG (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3131, 'SKR03','8','Expense','8829','K8GVE22','Erlöse aus Verkäufen Sachanlagevermögen (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3132, 'SKR03','8','Expense','8837','K8GVE22','Erlöse aus Verkäufen immaterielle Vermögensgegenstände (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3133, 'SKR03','8','Expense','8838','K8GVE22','Erlöse aus Verkäufen Finanzanlagen (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3134, 'SKR03','8','Expense','8839','K8GVE22','Erlöse aus Verkäufen Finanzanlagen 100% / 50% steuerfrei (inländische Kap. Ges.) (Bei Buchgewinn)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3135, 'SKR03','8','Expense','8850','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19% USt für § 4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3136, 'SKR03','8','Expense','8851','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG 100% / 50% steuerfrei (inländische Kap. Ges.)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3137, 'SKR03','8','Expense','8852','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens Umsatzsteuerfrei § 4 Nr. 8 ff UStG i. V. m. § 4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3138, 'SKR03','8','Expense','8853','K8GVE22','Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3139, 'SKR03','8','Expense','8900','K8GVE21','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3140, 'SKR03','8','Expense','8905','K8GVE21','Entnahme von Gegenständen ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3141, 'SKR03','8','Expense','8906','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3142, 'SKR03','8','Expense','8910','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3143, 'SKR03','8','Expense','8911','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3144, 'SKR03','8','Expense','8912','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3145, 'SKR03','8','Expense','8913','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3146, 'SKR03','8','Expense','8914','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3147, 'SKR03','8','Expense','8915','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3148, 'SKR03','8','Expense','8916','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3149, 'SKR03','8','Expense','8917','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3150, 'SKR03','8','Expense','8918','K8GVE21','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3151, 'SKR03','8','Expense','8919','K8GVE21','Entnahme durch den Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3152, 'SKR03','8','Expense','8920','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3153, 'SKR03','8','Expense','8921','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Kfz-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3154, 'SKR03','8','Expense','8922','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19% USt (Telefon-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3155, 'SKR03','8','Expense','8923','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3156, 'SKR03','8','Expense','8924','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3157, 'SKR03','8','Expense','8925','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3158, 'SKR03','8','Expense','8926','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3159, 'SKR03','8','Expense','8927','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3160, 'SKR03','8','Expense','8928','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3161, 'SKR03','8','Expense','8929','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3162, 'SKR03','8','Expense','8930','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3163, 'SKR03','8','Expense','8931','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3164, 'SKR03','8','Expense','8932','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3165, 'SKR03','8','Expense','8933','K8GVE22','Unentgeltliche Erbringung einer sonstigen Leistung 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3166, 'SKR03','8','Expense','8934','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Kfz_Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3167, 'SKR03','8','Expense','8935','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3168, 'SKR03','8','Expense','8936','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3169, 'SKR03','8','Expense','8937','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3170, 'SKR03','8','Expense','8938','K8GVE22','Unentgeltliche Zuwendung von Gegenständen 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3171, 'SKR03','8','Expense','8939','K8GVE22','Unentgeltliche Zuwendung von Gegenständen ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3172, 'SKR03','8','Expense','8940','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3173, 'SKR03','8','Expense','8941','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3174, 'SKR03','8','Expense','8942','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3175, 'SKR03','8','Expense','8943','K8GVE21','Unentgeltliche Zuwendung von Waren 19% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3176, 'SKR03','8','Expense','8944','K8GVE21','Unentgeltliche Zuwendung von Waren 16% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3177, 'SKR03','8','Expense','8945','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3178, 'SKR03','8','Expense','8946','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3179, 'SKR03','8','Expense','8947','K8GVE21','Unentgeltliche Zuwendung von Waren 7% USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3180, 'SKR03','8','Expense','8948','K8GVE22','Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 16% USt (Telefon-Nutzung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3181, 'SKR03','8','Expense','8949','K8GVE21','Unentgeltliche Zuwendung von Waren ohne USt',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3182, 'SKR03','8','Expense','8950','K8GVE21','Nicht steuerbare Umsätze (Innenumsätze)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3183, 'SKR03','8','Expense','8955','K8GVE21','Umsatzsteuervergütungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3184, 'SKR03','0','XXXXX','BV81','BV','Erhöhung des Bestands an fertigen und unfertigen Erzeugnissen oder Verminderung des Bestands an fertigen oder unfertigen Erzeugnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3185, 'SKR03','8','XXXXX','8960','BV81','Bestandsveränderungen- unfertige Erzeugnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3186, 'SKR03','8','XXXXX','8970','BV81','Bestandsveränderungen- unfertige Leistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3187, 'SKR03','0','XXXXX','BV82','BV','Erhöhung des Bestands in Ausführung befindlicher Bauaufträge oder Verminderung des Bestands in Ausführung befindlicher Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3188, 'SKR03','8','XXXXX','8975','BV82','Bestandsveränderungen - in Ausführung befindliche Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3189, 'SKR03','0','XXXXX','BV83','BV','Erhöhung des Bestands in Arbeit befindlicher Bauaufträge oder Verminderung des Bestands in Arbeit befindlicher Bauaufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3190, 'SKR03','8','XXXXX','8977','BV83','Bestandsveränderungen - in Arbeit befindliche Aufträge',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3191, 'SKR03','8','XXXXX','8980','BV81','Bestandsveränderungen - fertige Erzeugnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3192, 'SKR03','8','XXXXX','8990','AEL','Andere aktivierte Eigenleistungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3193, 'SKR03','0','XXXXX','KK9',NULL,'Vortrags Kapital- und statistische Konten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3194, 'SKR03','0','XXXXX','KK91','KK9','Vortragskonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3195, 'SKR03','9','XXXXX','9000','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3196, 'SKR03','9','XXXXX','9001','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3197, 'SKR03','9','XXXXX','9002','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3198, 'SKR03','9','XXXXX','9003','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3199, 'SKR03','9','XXXXX','9004','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3200, 'SKR03','9','XXXXX','9005','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3201, 'SKR03','9','XXXXX','9006','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3202, 'SKR03','9','XXXXX','9007','KK91','Saldenvorträge Sachkonten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3203, 'SKR03','9','XXXXX','9008','KK91','Saldenvorträge Debitoren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3204, 'SKR03','9','XXXXX','9009','KK91','Saldenvorträge Kreditoren',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3205, 'SKR03','9','XXXXX','9060','KK91','Offene Posten aus 1990',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3206, 'SKR03','9','XXXXX','9069','KK91','Offene Posten aus 1999',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3207, 'SKR03','9','XXXXX','9070','KK91','Offene Posten aus 2000',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3208, 'SKR03','9','XXXXX','9071','KK91','Offene Posten aus 2001',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3209, 'SKR03','9','XXXXX','9072','KK91','Offene Posten aus 2002',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3210, 'SKR03','9','XXXXX','9073','KK91','Offene Posten aus 2003',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3211, 'SKR03','9','XXXXX','9074','KK91','Offene Posten aus 2004',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3212, 'SKR03','9','XXXXX','9075','KK91','Offene Posten aus 2005',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3213, 'SKR03','9','XXXXX','9076','KK91','Offene Posten aus 2006',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3214, 'SKR03','9','XXXXX','9077','KK91','Offene Posten aus 2007',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3215, 'SKR03','9','XXXXX','9090','KK91','Summenvortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3216, 'SKR03','9','XXXXX','9091','9090','Offene Posten aus 1991',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3217, 'SKR03','9','XXXXX','9092','9090','Offene Posten aus 1992',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3218, 'SKR03','9','XXXXX','9093','9090','Offene Posten aus 1993',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3219, 'SKR03','9','XXXXX','9094','9090','Offene Posten aus 1994',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3220, 'SKR03','9','XXXXX','9095','9090','Offene Posten aus 1995',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3221, 'SKR03','9','XXXXX','9096','9090','Offene Posten aus 1996',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3222, 'SKR03','9','XXXXX','9097','9090','Offene Posten aus 1997',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3223, 'SKR03','9','XXXXX','9098','9090','Offene Posten aus 1998',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3224, 'SKR03','0','XXXXX','KK92','KK9','Statistische Konten für Betriebswirtschaftliche Auswertung (BWA)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3225, 'SKR03','9','XXXXX','9101','KK92','Verkaufstage',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3226, 'SKR03','9','XXXXX','9102','KK92','Anzahl der Barkunden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3227, 'SKR03','9','XXXXX','9103','KK92','Beschäftigte Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3228, 'SKR03','9','XXXXX','9104','KK92','Unbezahlte Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3229, 'SKR03','9','XXXXX','9105','KK92','Verkaufskräfte',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3230, 'SKR03','9','XXXXX','9106','KK92','Geschäftsraum qm',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3231, 'SKR03','9','XXXXX','9107','KK92','Verkaufsraum qm',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3232, 'SKR03','9','XXXXX','9116','KK92','Anzahl Rechnungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3233, 'SKR03','9','XXXXX','9117','KK92','Anzahl Kreditkunden monatlich',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3234, 'SKR03','9','XXXXX','9118','KK92','Anzahl Kreditkunden aufgelaufen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3235, 'SKR03','9','XXXXX','9120','KK92','Erweiterungsinvestitionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3236, 'SKR03','9','XXXXX','9135','KK92','Auftragseingang im Geschäftsjahr',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3237, 'SKR03','9','XXXXX','9140','KK92','Auftragsbestand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3238, 'SKR03','9','XXXXX','9190','KK92','Gegenkonto für statistischen Mengeneinheiten Konten 9101 - 9107 und Konten 9116 - 9118',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3239, 'SKR03','9','XXXXX','9199','KK92','Gegenkonto zu Konten 9120 9135 - 9140',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3240, 'SKR03','0','XXXXX','KK93','KK9','Statistische Konten für den Kennziffernteil der Bilanz',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3241, 'SKR03','9','XXXXX','9200','KK93','Beschäftigte Personen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3242, 'SKR03','9','XXXXX','9209','KK93','Gegenkonto zu 9200',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3243, 'SKR03','9','XXXXX','9210','KK93','Produktive Löhne',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3244, 'SKR03','9','XXXXX','9219','KK93','Gegenkonto zu 9210',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3245, 'SKR03','0','Owner''s Equity','KK94','KK9','Statistische Konten zur informativen Angaben des gezeichneten Kapitals in anderer Währung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3246, 'SKR03','0','Owner''s Equity','KK941','KK94','Gezeichnetes Kapital in DM',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3247, 'SKR03','9','Owner''s Equity','9220','KK941','Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3248, 'SKR03','0','Owner''s Equity','KK942','KK94','Gezeichnetes Kapital in Euro',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3249, 'SKR03','9','Owner''s Equity','9221','KK942','Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3250, 'SKR03','9','Owner''s Equity','9229','KK94','Gegenkonto zu Konten 9022 - 9221',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3251, 'SKR03','0','Owner''s Equity','KK95','KK9','Passive Rechnungsabgrenzungsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3252, 'SKR03','9','Owner''s Equity','9230','KK95','Baukostenzuschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3253, 'SKR03','9','Owner''s Equity','9232','KK95','Investitionszulagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3254, 'SKR03','9','Owner''s Equity','9234','KK95','Investitionszuschüsse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3255, 'SKR03','9','Owner''s Equity','9239','KK95','Gegenkonto zu Konten 9230 - 9238',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3256, 'SKR03','9','Owner''s Equity','9240','KK95','Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3257, 'SKR03','9','Owner''s Equity','9241','KK95','Investitionsverbindlichkeiten aus Sachanlagenverkäufen bei Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3258, 'SKR03','9','Owner''s Equity','9242','KK95','Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3259, 'SKR03','9','Owner''s Equity','9243','KK95','Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3260, 'SKR03','9','Owner''s Equity','9244','KK95','Gegenkonto zu Konten 9240 - 9243',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3261, 'SKR03','9','Owner''s Equity','9245','KK95','Forderungen aus Sachanlagenverkäufen bei sonstigen Vermögensgegenständen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3262, 'SKR03','9','Owner''s Equity','9246','KK95','Forderungen aus Verkäufen immaterieller Vermögensgegenständen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3263, 'SKR03','9','Owner''s Equity','9247','KK95','Forderungen aus Verkäufe von Finanzanlagen bei sonstigen Vermögensgegenständen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3264, 'SKR03','9','Owner''s Equity','9249','KK95','Gegenkonto zu Konten 9245 - 9247',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3265, 'SKR03','0','XXXXX','KK96','KK9','Eigenkapitalersetzende Gesellschafterdarlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3266, 'SKR03','9','Owner''s Equity','9250','KK96','Eigenkapitalersetzende Gesellschafterdarlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3267, 'SKR03','9','Owner''s Equity','9255','KK96','Ungesicherte Gesellschafterdarlehen mit Restlaufzeit größer 5 Jahre',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3268, 'SKR03','9','Owner''s Equity','9259','KK96','Gegenkonto zu 9250 und 9255',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3269, 'SKR03','0','XXXXX','KK97','KK9','Aufgliederung der Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3270, 'SKR03','9','Owner''s Equity','9260','KK97','Kurzfristige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3271, 'SKR03','9','Owner''s Equity','9262','KK97','Mittelfristige Rückstellungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3272, 'SKR03','9','Owner''s Equity','9264','KK97','Langfristige Rückstellungen außer Pensionen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3273, 'SKR03','9','Owner''s Equity','9269','KK97','Gegenkonto zu Konten 9260 - 9268',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3274, 'SKR03','0','XXXXX','KK98','KK9','Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3275, 'SKR03','9','Owner''s Equity','9270','KK98','Gegenkonto zu 9271 bis 9278 (soll-Buchung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3276, 'SKR03','9','Owner''s Equity','9271','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechsel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3277, 'SKR03','9','Owner''s Equity','9272','KK98','Verbindlichkeiten aus der Begebung und übertragung von Wechseln gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3278, 'SKR03','9','Owner''s Equity','9273','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3279, 'SKR03','9','Owner''s Equity','9274','KK98','Verbindlichkeiten aus Bürgschaften Wechsel- und Scheckbürgschaften gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3280, 'SKR03','9','Owner''s Equity','9275','KK98','Verbindlichkeiten aus Gewährleistungsverträgen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3281, 'SKR03','9','Owner''s Equity','9276','KK98','Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3282, 'SKR03','9','Owner''s Equity','9277','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3283, 'SKR03','9','Owner''s Equity','9278','KK98','Haftung aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3284, 'SKR03','9','Owner''s Equity','9279','KK98','Verpflichtungen aus Trendhandvermögen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3285, 'SKR03','0','Owner''s Equity','KK99','KK9','Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3286, 'SKR03','9','Owner''s Equity','9280','KK99','Gegenkonto zu Konten 9281 - 9284',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3287, 'SKR03','9','Owner''s Equity','9281','KK99','Verpflichtungen aus Miet- und Leasingverträgen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3288, 'SKR03','9','Owner''s Equity','9282','KK99','Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3289, 'SKR03','9','Owner''s Equity','9283','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3290, 'SKR03','9','Owner''s Equity','9284','KK99','Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3291, 'SKR03','0','Owner''s Equity','KK9a','KK9','Statistische Konten für § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3292, 'SKR03','9','Owner''s Equity','9287','KK9a','Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3293, 'SKR03','9','Owner''s Equity','9288','KK9a','Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3294, 'SKR03','9','Owner''s Equity','9289','KK9a','Gegenkonto zu 9287 und 9288',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3295, 'SKR03','9','Owner''s Equity','9290','KK9a','Statistisches Konto steuerfreie Auslagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3296, 'SKR03','9','Owner''s Equity','9291','KK9a','Gegenkonto zu 9290',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3297, 'SKR03','9','Owner''s Equity','9292','KK9a','Statistisches Konto Fremdgeld',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3298, 'SKR03','9','Owner''s Equity','9293','KK9a','Gegenkonto zu 9292',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3299, 'SKR03','0','Owner''s Equity','KK9a1','KK9a','Einlagen stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3300, 'SKR03','9','Owner''s Equity','9295','KK9a1','Einlagen stiller Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3301, 'SKR03','0','Owner''s Equity','KK9a2','KK9a','Steuerrechtlicher Ausgleichsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3302, 'SKR03','9','Owner''s Equity','9297','KK9a2','Steuerrechtlicher Ausgleichsposten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3303, 'SKR03','0','Owner''s Equity','KK9b','KK9','Privat Teilhafter (für Verrechnung Gesellschafterdarlehen mit Eigenkapitalcharakter - Konto 9840 - 9849)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3304, 'SKR03','9','Owner''s Equity','9400','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3305, 'SKR03','9','Owner''s Equity','9401','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3306, 'SKR03','9','Owner''s Equity','9402','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3307, 'SKR03','9','Owner''s Equity','9403','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3308, 'SKR03','9','Owner''s Equity','9404','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3309, 'SKR03','9','Owner''s Equity','9405','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3310, 'SKR03','9','Owner''s Equity','9406','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3311, 'SKR03','9','Owner''s Equity','9407','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3312, 'SKR03','9','Owner''s Equity','9408','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3313, 'SKR03','9','Owner''s Equity','9409','KK9b','Privatentnahmen Allgemein',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3314, 'SKR03','9','Owner''s Equity','9410','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3315, 'SKR03','9','Owner''s Equity','9411','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3316, 'SKR03','9','Owner''s Equity','9412','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3317, 'SKR03','9','Owner''s Equity','9413','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3318, 'SKR03','9','Owner''s Equity','9414','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3319, 'SKR03','9','Owner''s Equity','9415','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3320, 'SKR03','9','Owner''s Equity','9416','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3321, 'SKR03','9','Owner''s Equity','9417','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3322, 'SKR03','9','Owner''s Equity','9418','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3323, 'SKR03','9','Owner''s Equity','9419','KK9b','Privatsteuern',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3324, 'SKR03','9','Owner''s Equity','9420','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3325, 'SKR03','9','Owner''s Equity','9421','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3326, 'SKR03','9','Owner''s Equity','9422','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3327, 'SKR03','9','Owner''s Equity','9423','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3328, 'SKR03','9','Owner''s Equity','9424','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3329, 'SKR03','9','Owner''s Equity','9425','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3330, 'SKR03','9','Owner''s Equity','9426','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3331, 'SKR03','9','Owner''s Equity','9427','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3332, 'SKR03','9','Owner''s Equity','9428','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3333, 'SKR03','9','Owner''s Equity','9429','KK9b','Sonderausgaben beschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3334, 'SKR03','9','Owner''s Equity','9430','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3335, 'SKR03','9','Owner''s Equity','9431','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3336, 'SKR03','9','Owner''s Equity','9432','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3337, 'SKR03','9','Owner''s Equity','9433','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3338, 'SKR03','9','Owner''s Equity','9434','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3339, 'SKR03','9','Owner''s Equity','9435','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3340, 'SKR03','9','Owner''s Equity','9436','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3341, 'SKR03','9','Owner''s Equity','9437','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3342, 'SKR03','9','Owner''s Equity','9438','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3343, 'SKR03','9','Owner''s Equity','9439','KK9b','Sonderausgaben unbeschränkt abzugsfähig',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3344, 'SKR03','9','Owner''s Equity','9440','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3345, 'SKR03','9','Owner''s Equity','9441','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3346, 'SKR03','9','Owner''s Equity','9442','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3347, 'SKR03','9','Owner''s Equity','9443','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3348, 'SKR03','9','Owner''s Equity','9444','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3349, 'SKR03','9','Owner''s Equity','9445','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3350, 'SKR03','9','Owner''s Equity','9446','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3351, 'SKR03','9','Owner''s Equity','9447','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3352, 'SKR03','9','Owner''s Equity','9448','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3353, 'SKR03','9','Owner''s Equity','9449','KK9b','Zuwendungen Spenden',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3354, 'SKR03','9','Owner''s Equity','9450','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3355, 'SKR03','9','Owner''s Equity','9451','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3356, 'SKR03','9','Owner''s Equity','9452','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3357, 'SKR03','9','Owner''s Equity','9453','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3358, 'SKR03','9','Owner''s Equity','9454','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3359, 'SKR03','9','Owner''s Equity','9455','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3360, 'SKR03','9','Owner''s Equity','9456','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3361, 'SKR03','9','Owner''s Equity','9457','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3362, 'SKR03','9','Owner''s Equity','9458','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3363, 'SKR03','9','Owner''s Equity','9459','KK9b','Außergewöhnliche Belastungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3364, 'SKR03','9','Owner''s Equity','9460','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3365, 'SKR03','9','Owner''s Equity','9461','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3366, 'SKR03','9','Owner''s Equity','9462','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3367, 'SKR03','9','Owner''s Equity','9463','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3368, 'SKR03','9','Owner''s Equity','9464','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3369, 'SKR03','9','Owner''s Equity','9465','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3370, 'SKR03','9','Owner''s Equity','9466','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3371, 'SKR03','9','Owner''s Equity','9467','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3372, 'SKR03','9','Owner''s Equity','9468','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3373, 'SKR03','9','Owner''s Equity','9469','KK9b','Grundstückaufwand',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3374, 'SKR03','9','Owner''s Equity','9470','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3375, 'SKR03','9','Owner''s Equity','9471','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3376, 'SKR03','9','Owner''s Equity','9472','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3377, 'SKR03','9','Owner''s Equity','9473','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3378, 'SKR03','9','Owner''s Equity','9474','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3379, 'SKR03','9','Owner''s Equity','9475','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3380, 'SKR03','9','Owner''s Equity','9476','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3381, 'SKR03','9','Owner''s Equity','9477','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3382, 'SKR03','9','Owner''s Equity','9478','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3383, 'SKR03','9','Owner''s Equity','9479','KK9b','Grundstückertrag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3384, 'SKR03','9','Owner''s Equity','9480','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3385, 'SKR03','9','Owner''s Equity','9481','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3386, 'SKR03','9','Owner''s Equity','9482','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3387, 'SKR03','9','Owner''s Equity','9483','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3388, 'SKR03','9','Owner''s Equity','9484','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3389, 'SKR03','9','Owner''s Equity','9485','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3390, 'SKR03','9','Owner''s Equity','9486','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3391, 'SKR03','9','Owner''s Equity','9487','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3392, 'SKR03','9','Owner''s Equity','9488','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3393, 'SKR03','9','Owner''s Equity','9489','KK9b','Unentgeltliche Wertabgaben',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3394, 'SKR03','9','Owner''s Equity','9490','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3395, 'SKR03','9','Owner''s Equity','9491','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3396, 'SKR03','9','Owner''s Equity','9492','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3397, 'SKR03','9','Owner''s Equity','9493','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3398, 'SKR03','9','Owner''s Equity','9494','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3399, 'SKR03','9','Owner''s Equity','9495','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3400, 'SKR03','9','Owner''s Equity','9496','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3401, 'SKR03','9','Owner''s Equity','9497','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3402, 'SKR03','9','Owner''s Equity','9498','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3403, 'SKR03','9','Owner''s Equity','9499','KK9b','Privateinlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3404, 'SKR03','0','Owner''s Equity','KK9c','KK9','Statistische Konten für Kapitalkontenentwicklung',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3405, 'SKR03','9','Owner''s Equity','9500','KK9c','Anteil für Konto 0900 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3406, 'SKR03','9','Owner''s Equity','9501','KK9c','Anteil für Konto 0901 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3407, 'SKR03','9','Owner''s Equity','9502','KK9c','Anteil für Konto 0902 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3408, 'SKR03','9','Owner''s Equity','9503','KK9c','Anteil für Konto 0903 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3409, 'SKR03','9','Owner''s Equity','9504','KK9c','Anteil für Konto 0904 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3410, 'SKR03','9','Owner''s Equity','9505','KK9c','Anteil für Konto 0905 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3411, 'SKR03','9','Owner''s Equity','9506','KK9c','Anteil für Konto 0906 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3412, 'SKR03','9','Owner''s Equity','9507','KK9c','Anteil für Konto 0907 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3413, 'SKR03','9','Owner''s Equity','9508','KK9c','Anteil für Konto 0908 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3414, 'SKR03','9','Owner''s Equity','9509','KK9c','Anteil für Konto 0909 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3415, 'SKR03','9','Owner''s Equity','9510','KK9c','Anteil für Konto 0910 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3416, 'SKR03','9','Owner''s Equity','9511','KK9c','Anteil für Konto 0911 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3417, 'SKR03','9','Owner''s Equity','9512','KK9c','Anteil für Konto 0912 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3418, 'SKR03','9','Owner''s Equity','9513','KK9c','Anteil für Konto 0913 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3419, 'SKR03','9','Owner''s Equity','9514','KK9c','Anteil für Konto 0914 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3420, 'SKR03','9','Owner''s Equity','9515','KK9c','Anteil für Konto 0915 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3421, 'SKR03','9','Owner''s Equity','9516','KK9c','Anteil für Konto 0916 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3422, 'SKR03','9','Owner''s Equity','9517','KK9c','Anteil für Konto 0917 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3423, 'SKR03','9','Owner''s Equity','9518','KK9c','Anteil für Konto 0918 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3424, 'SKR03','9','Owner''s Equity','9519','KK9c','Anteil für Konto 0919 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3425, 'SKR03','9','Owner''s Equity','9520','KK9c','Anteil für Konto 0920 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3426, 'SKR03','9','Owner''s Equity','9521','KK9c','Anteil für Konto 0921 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3427, 'SKR03','9','Owner''s Equity','9522','KK9c','Anteil für Konto 0922 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3428, 'SKR03','9','Owner''s Equity','9523','KK9c','Anteil für Konto 0923 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3429, 'SKR03','9','Owner''s Equity','9524','KK9c','Anteil für Konto 0924 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3430, 'SKR03','9','Owner''s Equity','9525','KK9c','Anteil für Konto 0925 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3431, 'SKR03','9','Owner''s Equity','9526','KK9c','Anteil für Konto 0926 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3432, 'SKR03','9','Owner''s Equity','9527','KK9c','Anteil für Konto 0927 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3433, 'SKR03','9','Owner''s Equity','9528','KK9c','Anteil für Konto 0928 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3434, 'SKR03','9','Owner''s Equity','9529','KK9c','Anteil für Konto 0929 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3435, 'SKR03','9','Owner''s Equity','9530','KK9c','Anteil für Konto 0830 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3436, 'SKR03','9','Owner''s Equity','9531','KK9c','Anteil für Konto 0831 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3437, 'SKR03','9','Owner''s Equity','9532','KK9c','Anteil für Konto 0832 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3438, 'SKR03','9','Owner''s Equity','9533','KK9c','Anteil für Konto 0833 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3439, 'SKR03','9','Owner''s Equity','9534','KK9c','Anteil für Konto 0834 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3440, 'SKR03','9','Owner''s Equity','9535','KK9c','Anteil für Konto 0835 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3441, 'SKR03','9','Owner''s Equity','9536','KK9c','Anteil für Konto 0836 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3442, 'SKR03','9','Owner''s Equity','9537','KK9c','Anteil für Konto 0837 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3443, 'SKR03','9','Owner''s Equity','9538','KK9c','Anteil für Konto 0838 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3444, 'SKR03','9','Owner''s Equity','9539','KK9c','Anteil für Konto 0839 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3445, 'SKR03','9','Owner''s Equity','9540','KK9c','Anteil für Konto 0810 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3446, 'SKR03','9','Owner''s Equity','9541','KK9c','Anteil für Konto 0811 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3447, 'SKR03','9','Owner''s Equity','9542','KK9c','Anteil für Konto 0812 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3448, 'SKR03','9','Owner''s Equity','9543','KK9c','Anteil für Konto 0813 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3449, 'SKR03','9','Owner''s Equity','9544','KK9c','Anteil für Konto 0814 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3450, 'SKR03','9','Owner''s Equity','9545','KK9c','Anteil für Konto 0815 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3451, 'SKR03','9','Owner''s Equity','9546','KK9c','Anteil für Konto 0816 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3452, 'SKR03','9','Owner''s Equity','9547','KK9c','Anteil für Konto 0817 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3453, 'SKR03','9','Owner''s Equity','9548','KK9c','Anteil für Konto 0818 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3454, 'SKR03','9','Owner''s Equity','9549','KK9c','Anteil für Konto 0819 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3455, 'SKR03','9','Owner''s Equity','9550','KK9c','Anteil für Konto 9810 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3456, 'SKR03','9','Owner''s Equity','9551','KK9c','Anteil für Konto 9811 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3457, 'SKR03','9','Owner''s Equity','9552','KK9c','Anteil für Konto 9812 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3458, 'SKR03','9','Owner''s Equity','9553','KK9c','Anteil für Konto 9813 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3459, 'SKR03','9','Owner''s Equity','9554','KK9c','Anteil für Konto 9814 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3460, 'SKR03','9','Owner''s Equity','9555','KK9c','Anteil für Konto 9815 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3461, 'SKR03','9','Owner''s Equity','9556','KK9c','Anteil für Konto 9816 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3462, 'SKR03','9','Owner''s Equity','9557','KK9c','Anteil für Konto 9817 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3463, 'SKR03','9','Owner''s Equity','9558','KK9c','Anteil für Konto 9818 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3464, 'SKR03','9','Owner''s Equity','9559','KK9c','Anteil für Konto 9819 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3465, 'SKR03','9','Owner''s Equity','9560','KK9c','Anteil für Konto 9820 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3466, 'SKR03','9','Owner''s Equity','9561','KK9c','Anteil für Konto 9821 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3467, 'SKR03','9','Owner''s Equity','9562','KK9c','Anteil für Konto 9822 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3468, 'SKR03','9','Owner''s Equity','9563','KK9c','Anteil für Konto 9823 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3469, 'SKR03','9','Owner''s Equity','9564','KK9c','Anteil für Konto 9824 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3470, 'SKR03','9','Owner''s Equity','9565','KK9c','Anteil für Konto 9825 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3471, 'SKR03','9','Owner''s Equity','9566','KK9c','Anteil für Konto 9826 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3472, 'SKR03','9','Owner''s Equity','9567','KK9c','Anteil für Konto 9827 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3473, 'SKR03','9','Owner''s Equity','9568','KK9c','Anteil für Konto 9828 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3474, 'SKR03','9','Owner''s Equity','9569','KK9c','Anteil für Konto 9829 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3475, 'SKR03','9','Owner''s Equity','9570','KK9c','Anteil für Konto 0870 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3476, 'SKR03','9','Owner''s Equity','9571','KK9c','Anteil für Konto 0871 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3477, 'SKR03','9','Owner''s Equity','9572','KK9c','Anteil für Konto 0872 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3478, 'SKR03','9','Owner''s Equity','9573','KK9c','Anteil für Konto 0873 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3479, 'SKR03','9','Owner''s Equity','9574','KK9c','Anteil für Konto 0874 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3480, 'SKR03','9','Owner''s Equity','9575','KK9c','Anteil für Konto 0875 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3481, 'SKR03','9','Owner''s Equity','9576','KK9c','Anteil für Konto 0876 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3482, 'SKR03','9','Owner''s Equity','9577','KK9c','Anteil für Konto 0877 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3483, 'SKR03','9','Owner''s Equity','9578','KK9c','Anteil für Konto 0878 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3484, 'SKR03','9','Owner''s Equity','9579','KK9c','Anteil für Konto 0879 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3485, 'SKR03','9','Owner''s Equity','9580','KK9c','Anteil für Konto 0880 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3486, 'SKR03','9','Owner''s Equity','9581','KK9c','Anteil für Konto 0881 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3487, 'SKR03','9','Owner''s Equity','9582','KK9c','Anteil für Konto 0882 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3488, 'SKR03','9','Owner''s Equity','9583','KK9c','Anteil für Konto 0883 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3489, 'SKR03','9','Owner''s Equity','9584','KK9c','Anteil für Konto 0884 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3490, 'SKR03','9','Owner''s Equity','9585','KK9c','Anteil für Konto 0885 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3491, 'SKR03','9','Owner''s Equity','9586','KK9c','Anteil für Konto 0886 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3492, 'SKR03','9','Owner''s Equity','9587','KK9c','Anteil für Konto 0887 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3493, 'SKR03','9','Owner''s Equity','9588','KK9c','Anteil für Konto 0888 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3494, 'SKR03','9','Owner''s Equity','9589','KK9c','Anteil für Konto 0889 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3495, 'SKR03','9','Owner''s Equity','9590','KK9c','Anteil für Konto 0890 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3496, 'SKR03','9','Owner''s Equity','9591','KK9c','Anteil für Konto 0891 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3497, 'SKR03','9','Owner''s Equity','9592','KK9c','Anteil für Konto 0892 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3498, 'SKR03','9','Owner''s Equity','9593','KK9c','Anteil für Konto 0893 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3499, 'SKR03','9','Owner''s Equity','9594','KK9c','Anteil für Konto 0894 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3500, 'SKR03','9','Owner''s Equity','9595','KK9c','Anteil für Konto 0895 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3501, 'SKR03','9','Owner''s Equity','9596','KK9c','Anteil für Konto 0896 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3502, 'SKR03','9','Owner''s Equity','9597','KK9c','Anteil für Konto 0897 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3503, 'SKR03','9','Owner''s Equity','9598','KK9c','Anteil für Konto 0898 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3504, 'SKR03','9','Owner''s Equity','9599','KK9c','Anteil für Konto 0899 Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3505, 'SKR03','9','Owner''s Equity','9600','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3506, 'SKR03','9','Owner''s Equity','9601','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3507, 'SKR03','9','Owner''s Equity','9602','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3508, 'SKR03','9','Owner''s Equity','9603','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3509, 'SKR03','9','Owner''s Equity','9604','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3510, 'SKR03','9','Owner''s Equity','9605','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3511, 'SKR03','9','Owner''s Equity','9606','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3512, 'SKR03','9','Owner''s Equity','9607','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3513, 'SKR03','9','Owner''s Equity','9608','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3514, 'SKR03','9','Owner''s Equity','9609','KK9c','Name des Gesellschafters Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3515, 'SKR03','9','Owner''s Equity','9610','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3516, 'SKR03','9','Owner''s Equity','9611','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3517, 'SKR03','9','Owner''s Equity','9612','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3518, 'SKR03','9','Owner''s Equity','9613','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3519, 'SKR03','9','Owner''s Equity','9614','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3520, 'SKR03','9','Owner''s Equity','9615','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3521, 'SKR03','9','Owner''s Equity','9616','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3522, 'SKR03','9','Owner''s Equity','9617','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3523, 'SKR03','9','Owner''s Equity','9618','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3524, 'SKR03','9','Owner''s Equity','9619','KK9c','Tätigkeitsvergütung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3525, 'SKR03','9','Owner''s Equity','9620','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3526, 'SKR03','9','Owner''s Equity','9621','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3527, 'SKR03','9','Owner''s Equity','9622','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3528, 'SKR03','9','Owner''s Equity','9623','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3529, 'SKR03','9','Owner''s Equity','9624','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3530, 'SKR03','9','Owner''s Equity','9625','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3531, 'SKR03','9','Owner''s Equity','9626','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3532, 'SKR03','9','Owner''s Equity','9627','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3533, 'SKR03','9','Owner''s Equity','9628','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3534, 'SKR03','9','Owner''s Equity','9629','KK9c','Tantieme Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3535, 'SKR03','9','Owner''s Equity','9630','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3536, 'SKR03','9','Owner''s Equity','9631','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3537, 'SKR03','9','Owner''s Equity','9632','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3538, 'SKR03','9','Owner''s Equity','9633','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3539, 'SKR03','9','Owner''s Equity','9634','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3540, 'SKR03','9','Owner''s Equity','9635','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3541, 'SKR03','9','Owner''s Equity','9636','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3542, 'SKR03','9','Owner''s Equity','9637','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3543, 'SKR03','9','Owner''s Equity','9638','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3544, 'SKR03','9','Owner''s Equity','9639','KK9c','Darlehensverzinsung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3545, 'SKR03','9','Owner''s Equity','9640','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3546, 'SKR03','9','Owner''s Equity','9641','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3547, 'SKR03','9','Owner''s Equity','9642','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3548, 'SKR03','9','Owner''s Equity','9643','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3549, 'SKR03','9','Owner''s Equity','9644','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3550, 'SKR03','9','Owner''s Equity','9645','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3551, 'SKR03','9','Owner''s Equity','9646','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3552, 'SKR03','9','Owner''s Equity','9647','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3553, 'SKR03','9','Owner''s Equity','9648','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3554, 'SKR03','9','Owner''s Equity','9649','KK9c','Gebrauchsüberlassung Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3555, 'SKR03','9','Owner''s Equity','9650','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3556, 'SKR03','9','Owner''s Equity','9651','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3557, 'SKR03','9','Owner''s Equity','9652','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3558, 'SKR03','9','Owner''s Equity','9653','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3559, 'SKR03','9','Owner''s Equity','9654','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3560, 'SKR03','9','Owner''s Equity','9655','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3561, 'SKR03','9','Owner''s Equity','9656','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3562, 'SKR03','9','Owner''s Equity','9657','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3563, 'SKR03','9','Owner''s Equity','9658','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3564, 'SKR03','9','Owner''s Equity','9659','KK9c','Sonstige Vergütungen Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3565, 'SKR03','9','Owner''s Equity','9690','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3566, 'SKR03','9','Owner''s Equity','9691','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3567, 'SKR03','9','Owner''s Equity','9692','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3568, 'SKR03','9','Owner''s Equity','9693','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3569, 'SKR03','9','Owner''s Equity','9694','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3570, 'SKR03','9','Owner''s Equity','9695','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3571, 'SKR03','9','Owner''s Equity','9696','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3572, 'SKR03','9','Owner''s Equity','9697','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3573, 'SKR03','9','Owner''s Equity','9698','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3574, 'SKR03','9','Owner''s Equity','9699','KK9c','Restanteil Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3575, 'SKR03','9','Owner''s Equity','9700','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3576, 'SKR03','9','Owner''s Equity','9701','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3577, 'SKR03','9','Owner''s Equity','9702','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3578, 'SKR03','9','Owner''s Equity','9703','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3579, 'SKR03','9','Owner''s Equity','9704','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3580, 'SKR03','9','Owner''s Equity','9705','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3581, 'SKR03','9','Owner''s Equity','9706','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3582, 'SKR03','9','Owner''s Equity','9707','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3583, 'SKR03','9','Owner''s Equity','9708','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3584, 'SKR03','9','Owner''s Equity','9709','KK9c','Name des Gesellschafters Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3585, 'SKR03','9','Owner''s Equity','9710','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3586, 'SKR03','9','Owner''s Equity','9711','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3587, 'SKR03','9','Owner''s Equity','9712','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3588, 'SKR03','9','Owner''s Equity','9713','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3589, 'SKR03','9','Owner''s Equity','9714','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3590, 'SKR03','9','Owner''s Equity','9715','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3591, 'SKR03','9','Owner''s Equity','9716','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3592, 'SKR03','9','Owner''s Equity','9717','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3593, 'SKR03','9','Owner''s Equity','9718','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3594, 'SKR03','9','Owner''s Equity','9719','KK9c','Tätigkeitsvergütung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3595, 'SKR03','9','Owner''s Equity','9720','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3596, 'SKR03','9','Owner''s Equity','9721','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3597, 'SKR03','9','Owner''s Equity','9722','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3598, 'SKR03','9','Owner''s Equity','9723','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3599, 'SKR03','9','Owner''s Equity','9724','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3600, 'SKR03','9','Owner''s Equity','9725','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3601, 'SKR03','9','Owner''s Equity','9726','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3602, 'SKR03','9','Owner''s Equity','9727','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3603, 'SKR03','9','Owner''s Equity','9728','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3604, 'SKR03','9','Owner''s Equity','9729','KK9c','Tantieme Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3605, 'SKR03','9','Owner''s Equity','9730','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3606, 'SKR03','9','Owner''s Equity','9731','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3607, 'SKR03','9','Owner''s Equity','9732','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3608, 'SKR03','9','Owner''s Equity','9733','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3609, 'SKR03','9','Owner''s Equity','9734','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3610, 'SKR03','9','Owner''s Equity','9735','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3611, 'SKR03','9','Owner''s Equity','9736','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3612, 'SKR03','9','Owner''s Equity','9737','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3613, 'SKR03','9','Owner''s Equity','9738','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3614, 'SKR03','9','Owner''s Equity','9739','KK9c','Darlehensverzinsung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3615, 'SKR03','9','Owner''s Equity','9740','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3616, 'SKR03','9','Owner''s Equity','9741','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3617, 'SKR03','9','Owner''s Equity','9742','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3618, 'SKR03','9','Owner''s Equity','9743','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3619, 'SKR03','9','Owner''s Equity','9744','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3620, 'SKR03','9','Owner''s Equity','9745','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3621, 'SKR03','9','Owner''s Equity','9746','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3622, 'SKR03','9','Owner''s Equity','9747','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3623, 'SKR03','9','Owner''s Equity','9748','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3624, 'SKR03','9','Owner''s Equity','9749','KK9c','Gebrauchsüberlassung Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3625, 'SKR03','9','Owner''s Equity','9750','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3626, 'SKR03','9','Owner''s Equity','9751','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3627, 'SKR03','9','Owner''s Equity','9752','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3628, 'SKR03','9','Owner''s Equity','9753','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3629, 'SKR03','9','Owner''s Equity','9754','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3630, 'SKR03','9','Owner''s Equity','9755','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3631, 'SKR03','9','Owner''s Equity','9756','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3632, 'SKR03','9','Owner''s Equity','9757','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3633, 'SKR03','9','Owner''s Equity','9758','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3634, 'SKR03','9','Owner''s Equity','9759','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3635, 'SKR03','9','Owner''s Equity','9760','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3636, 'SKR03','9','Owner''s Equity','9761','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3637, 'SKR03','9','Owner''s Equity','9762','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3638, 'SKR03','9','Owner''s Equity','9763','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3639, 'SKR03','9','Owner''s Equity','9764','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3640, 'SKR03','9','Owner''s Equity','9765','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3641, 'SKR03','9','Owner''s Equity','9766','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3642, 'SKR03','9','Owner''s Equity','9767','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3643, 'SKR03','9','Owner''s Equity','9768','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3644, 'SKR03','9','Owner''s Equity','9769','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3645, 'SKR03','9','Owner''s Equity','9770','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3646, 'SKR03','9','Owner''s Equity','9771','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3647, 'SKR03','9','Owner''s Equity','9772','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3648, 'SKR03','9','Owner''s Equity','9773','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3649, 'SKR03','9','Owner''s Equity','9774','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3650, 'SKR03','9','Owner''s Equity','9775','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3651, 'SKR03','9','Owner''s Equity','9776','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3652, 'SKR03','9','Owner''s Equity','9777','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3653, 'SKR03','9','Owner''s Equity','9778','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3654, 'SKR03','9','Owner''s Equity','9779','KK9c','Sonstige Vergütungen Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3655, 'SKR03','9','Owner''s Equity','9780','KK9c','Anteil für Konto 9840 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3656, 'SKR03','9','Owner''s Equity','9781','KK9c','Anteil für Konto 9841 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3657, 'SKR03','9','Owner''s Equity','9782','KK9c','Anteil für Konto 9842 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3658, 'SKR03','9','Owner''s Equity','9783','KK9c','Anteil für Konto 9843 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3659, 'SKR03','9','Owner''s Equity','9784','KK9c','Anteil für Konto 9844 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3660, 'SKR03','9','Owner''s Equity','9785','KK9c','Anteil für Konto 9845 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3661, 'SKR03','9','Owner''s Equity','9786','KK9c','Anteil für Konto 9846 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3662, 'SKR03','9','Owner''s Equity','9787','KK9c','Anteil für Konto 9847 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3663, 'SKR03','9','Owner''s Equity','9788','KK9c','Anteil für Konto 9848 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3664, 'SKR03','9','Owner''s Equity','9789','KK9c','Anteil für Konto 9849 Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3665, 'SKR03','9','Owner''s Equity','9790','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3666, 'SKR03','9','Owner''s Equity','9791','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3667, 'SKR03','9','Owner''s Equity','9792','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3668, 'SKR03','9','Owner''s Equity','9793','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3669, 'SKR03','9','Owner''s Equity','9794','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3670, 'SKR03','9','Owner''s Equity','9795','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3671, 'SKR03','9','Owner''s Equity','9796','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3672, 'SKR03','9','Owner''s Equity','9797','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3673, 'SKR03','9','Owner''s Equity','9798','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3674, 'SKR03','9','Owner''s Equity','9799','KK9c','Restanteil Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3675, 'SKR03','9','Owner''s Equity','9800','KK9c','Lösch- und Korrekturschlüssel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3676, 'SKR03','9','Owner''s Equity','9801','KK9c','Lösch- und Korrekturschlüssel',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3677, 'SKR03','0','Owner''s Equity','KK9d','KK9','Kapital Personenhandelsgesellschaft Vollhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3678, 'SKR03','9','Owner''s Equity','9810','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3679, 'SKR03','9','Owner''s Equity','9811','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3680, 'SKR03','9','Owner''s Equity','9812','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3681, 'SKR03','9','Owner''s Equity','9813','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3682, 'SKR03','9','Owner''s Equity','9814','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3683, 'SKR03','9','Owner''s Equity','9815','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3684, 'SKR03','9','Owner''s Equity','9816','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3685, 'SKR03','9','Owner''s Equity','9817','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3686, 'SKR03','9','Owner''s Equity','9818','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3687, 'SKR03','9','Owner''s Equity','9819','KK9d','Gesellschafter Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3688, 'SKR03','9','Owner''s Equity','9820','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3689, 'SKR03','9','Owner''s Equity','9821','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3690, 'SKR03','9','Owner''s Equity','9822','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3691, 'SKR03','9','Owner''s Equity','9823','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3692, 'SKR03','9','Owner''s Equity','9824','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3693, 'SKR03','9','Owner''s Equity','9825','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3694, 'SKR03','9','Owner''s Equity','9826','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3695, 'SKR03','9','Owner''s Equity','9827','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3696, 'SKR03','9','Owner''s Equity','9828','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3697, 'SKR03','9','Owner''s Equity','9829','KK9d','Verlust-/Vortragskonto',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3698, 'SKR03','9','Owner''s Equity','9830','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3699, 'SKR03','9','Owner''s Equity','9831','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3700, 'SKR03','9','Owner''s Equity','9832','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3701, 'SKR03','9','Owner''s Equity','9833','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3702, 'SKR03','9','Owner''s Equity','9834','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3703, 'SKR03','9','Owner''s Equity','9835','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3704, 'SKR03','9','Owner''s Equity','9836','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3705, 'SKR03','9','Owner''s Equity','9837','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3706, 'SKR03','9','Owner''s Equity','9838','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3707, 'SKR03','9','Owner''s Equity','9839','KK9d','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3708, 'SKR03','0','Owner''s Equity','KK9e','KK9','Kapital Personenhandelsgesellschaft Teilhafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3709, 'SKR03','9','Owner''s Equity','9840','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3710, 'SKR03','9','Owner''s Equity','9841','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3711, 'SKR03','9','Owner''s Equity','9842','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3712, 'SKR03','9','Owner''s Equity','9843','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3713, 'SKR03','9','Owner''s Equity','9844','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3714, 'SKR03','9','Owner''s Equity','9845','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3715, 'SKR03','9','Owner''s Equity','9846','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3716, 'SKR03','9','Owner''s Equity','9847','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3717, 'SKR03','9','Owner''s Equity','9848','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3718, 'SKR03','9','Owner''s Equity','9849','KK9e','Gesellschafter-Darlehen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3719, 'SKR03','9','Owner''s Equity','9850','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3720, 'SKR03','9','Owner''s Equity','9851','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3721, 'SKR03','9','Owner''s Equity','9852','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3722, 'SKR03','9','Owner''s Equity','9853','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3723, 'SKR03','9','Owner''s Equity','9854','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3724, 'SKR03','9','Owner''s Equity','9855','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3725, 'SKR03','9','Owner''s Equity','9856','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3726, 'SKR03','9','Owner''s Equity','9857','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3727, 'SKR03','9','Owner''s Equity','9858','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3728, 'SKR03','9','Owner''s Equity','9859','KK9e','Verrechnungskonto für Einzahlungsverpflichtungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3729, 'SKR03','0','Owner''s Equity','KK9f','KK9','Einzahlungsverpflichtungen im Bereich der Forderungen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3730, 'SKR03','9','Owner''s Equity','9860','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3731, 'SKR03','9','Owner''s Equity','9861','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3732, 'SKR03','9','Owner''s Equity','9862','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3733, 'SKR03','9','Owner''s Equity','9863','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3734, 'SKR03','9','Owner''s Equity','9864','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3735, 'SKR03','9','Owner''s Equity','9865','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3736, 'SKR03','9','Owner''s Equity','9866','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3737, 'SKR03','9','Owner''s Equity','9867','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3738, 'SKR03','9','Owner''s Equity','9868','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3739, 'SKR03','9','Owner''s Equity','9869','KK9f','Einzahlungsverpflichtungen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3740, 'SKR03','9','Owner''s Equity','9870','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3741, 'SKR03','9','Owner''s Equity','9871','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3742, 'SKR03','9','Owner''s Equity','9872','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3743, 'SKR03','9','Owner''s Equity','9873','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3744, 'SKR03','9','Owner''s Equity','9874','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3745, 'SKR03','9','Owner''s Equity','9875','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3746, 'SKR03','9','Owner''s Equity','9876','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3747, 'SKR03','9','Owner''s Equity','9877','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3748, 'SKR03','9','Owner''s Equity','9878','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3749, 'SKR03','9','Owner''s Equity','9879','KK9f','Einzahlungsverpflichtungen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3750, 'SKR03','0','Owner''s Equity','KK9g','KK9','Ausgleichsposten für aktivierte eigene Anteile und Bilanzierungshilfen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3751, 'SKR03','9','Owner''s Equity','9880','KK9g','Ausgleichsposten für aktivierte eigene Anteile',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3752, 'SKR03','9','Owner''s Equity','9882','KK9g','Ausgleichsposten für aktivierte Bilanzierungshilfen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3753, 'SKR03','0','Owner''s Equity','KK9h','KK9','Nicht durch Vermögenseinlagen gedeckte Entnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3754, 'SKR03','9','Owner''s Equity','9883','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3755, 'SKR03','9','Owner''s Equity','9884','KK9h','Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3756, 'SKR03','0','Owner''s Equity','KK9i','KK9','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3757, 'SKR03','9','Owner''s Equity','9885','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3758, 'SKR03','9','Owner''s Equity','9886','KK9i','Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3759, 'SKR03','0','Owner''s Equity','KK9j','KK9','Steueraufwand der Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3760, 'SKR03','9','Owner''s Equity','9887','KK9j','Steueraufwand der Gesellschafter',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3761, 'SKR03','9','Owner''s Equity','9889','KK9j','Gegenkonto zu 9887',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3762, 'SKR03','0','Owner''s Equity','KK9k','KK9','Statistische Konten für Gewinnzuschlag',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3763, 'SKR03','9','Owner''s Equity','9890','KK9k','Statistische Konto für den Gewinnzuschlag nach §§6b 6c und 6g EStG (Haben-Buchung)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3764, 'SKR03','9','Owner''s Equity','9891','KK9k','Statistische Konto für den Gewinnzuschlag - Gegenkonto zu 9890',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3765, 'SKR03','0','XXXXX','KK9l','KK9','Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3766, 'SKR03','9','XXXXX','9893','KK9l','Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3767, 'SKR03','9','XXXXX','9894','KK9l','Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3768, 'SKR03','9','XXXXX','9895','KK9l','Gegenkonto 9893 - 9894 für die Aufteilung der Umsatzsteuer (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3769, 'SKR03','9','XXXXX','9896','KK9l','Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3770, 'SKR03','9','XXXXX','9897','KK9l','Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3771, 'SKR03','9','Owner''s Equity','9899','KK9l','Gegenkonto zu 9899 - 9897 für die Aufteilung der Vorsteuer (EüR)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3772, 'SKR03','0','XXXXX','KK9m','KK9','Statistische Konten zu § 4 (4a) EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3773, 'SKR03','9','XXXXX','9910','KK9m','Gegenkonto zur Minderung der Entnahmen § 4 (4a) EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3774, 'SKR03','9','XXXXX','9911','KK9m','Minderung der Entnahmen § 4 (4a) EStG (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3775, 'SKR03','9','XXXXX','9912','KK9m','Erhöhung der Entnahmen § 4 (4a) EStG',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3776, 'SKR03','9','XXXXX','9913','KK9m','Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3777, 'SKR03','0','XXXXX','KK9n','KK9','Statistische Konten für Kinderbetreuungskosten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3778, 'SKR03','9','XXXXX','9918','KK9n','Kinderbetreuungskosten (wie Betriebsausgaben steuerlich anzusetzender Betrag)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3779, 'SKR03','9','XXXXX','9919','KK9n','Gegenkonto zu 9918 (Haben)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3780, 'SKR03','0','XXXXX','KK9o','KK9','Ausstehende Einlagen',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3781, 'SKR03','9','Owner''s Equity','9920','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3782, 'SKR03','9','Owner''s Equity','9921','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3783, 'SKR03','9','Owner''s Equity','9922','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3784, 'SKR03','9','Owner''s Equity','9923','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3785, 'SKR03','9','Owner''s Equity','9924','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3786, 'SKR03','9','Owner''s Equity','9925','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3787, 'SKR03','9','Owner''s Equity','9926','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3788, 'SKR03','9','Owner''s Equity','9927','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3789, 'SKR03','9','Owner''s Equity','9928','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3790, 'SKR03','9','Owner''s Equity','9929','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3791, 'SKR03','9','Owner''s Equity','9930','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3792, 'SKR03','9','Owner''s Equity','9931','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3793, 'SKR03','9','Owner''s Equity','9932','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3794, 'SKR03','9','Owner''s Equity','9933','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3795, 'SKR03','9','Owner''s Equity','9934','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3796, 'SKR03','9','Owner''s Equity','9935','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3797, 'SKR03','9','Owner''s Equity','9936','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3798, 'SKR03','9','Owner''s Equity','9937','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3799, 'SKR03','9','Owner''s Equity','9938','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3800, 'SKR03','9','Owner''s Equity','9939','KK9o','Ausstehende Einlagen auf das Komplementär-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3801, 'SKR03','9','Owner''s Equity','9940','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3802, 'SKR03','9','Owner''s Equity','9941','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3803, 'SKR03','9','Owner''s Equity','9942','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3804, 'SKR03','9','Owner''s Equity','9943','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3805, 'SKR03','9','Owner''s Equity','9944','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3806, 'SKR03','9','Owner''s Equity','9945','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3807, 'SKR03','9','Owner''s Equity','9946','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3808, 'SKR03','9','Owner''s Equity','9947','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3809, 'SKR03','9','Owner''s Equity','9948','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3810, 'SKR03','9','Owner''s Equity','9949','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital nicht eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3811, 'SKR03','9','Owner''s Equity','9950','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3812, 'SKR03','9','Owner''s Equity','9951','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3813, 'SKR03','9','Owner''s Equity','9952','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3814, 'SKR03','9','Owner''s Equity','9953','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3815, 'SKR03','9','Owner''s Equity','9954','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3816, 'SKR03','9','Owner''s Equity','9955','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3817, 'SKR03','9','Owner''s Equity','9956','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3818, 'SKR03','9','Owner''s Equity','9957','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3819, 'SKR03','9','Owner''s Equity','9958','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3820, 'SKR03','9','Owner''s Equity','9959','KK9o','Ausstehende Einlagen auf das Kommandit-Kapital eingefordert',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3821, 'SKR03','9','Memo','9900',NULL,'SO Commitment',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3822, 'SKR03','9','Memo','9910',NULL,'PO Commitment',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3823, 'SKR03','9','Liability','9901',NULL,'Steuer Verbindlichkeiten',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3824, 'SKR03','6','Asset','6000',NULL,'Work In Process',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3825, 'SKR03','6','Asset','6001',NULL,'Floor Stock',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3826, 'SKR03','6','Expense','6002',NULL,'Cost Of Production',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3827, 'SKR03','6','Expense','6003',NULL,'Scrap',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3828, 'SKR03','5','Expense','51130',NULL,'Outside Processing (Subcontract)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3829, 'SKR03','5','Expense','58400',NULL,'Using Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3830, 'SKR03','5','Expense','58500',NULL,'Method Change Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3831, 'SKR03','5','Expense','58600',NULL,'Rate Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3832, 'SKR03','5','Expense','58700',NULL,'Mix Variance',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3833, 'SKR03','8','Expense','83100',NULL,'Labor (Absorbed)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3834, 'SKR03','8','Expense','83200',NULL,'Burden (Absorbed)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3835, 'SKR03','8','Expense','83300',NULL,'Overhead (Applied)',1); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUES (__ENTITY__, 3836, 'SKR03','8','Expense','83400',NULL,'Average Cost Variance',1); -- SKR04 -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Anlagevermögen', 0, 0, 'Anlagevermögen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 100, 0, 'Entgeltlich erworbene Konzessionen, gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 110, 100, 'Konzessionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 120, 100, 'Gewerbliche Schutzrechte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 130, 100, 'Ähnliche Rechte und Werte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 135, 100, 'EDV-Software'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 140, 100, 'Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten und Werte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 143, 0, 'Selbst geschaffene immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 144, 143, 'EDV-Software'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 145, 143, 'Lizenzen und Franchiseverträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 146, 143, 'Konzessionen und gewerbliche Schutzrechte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 147, 143, 'Rezepte, Verfahren, Prototypen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 148, 143, 'Immaterielle Vermögensgegenstände in Entwicklung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 150, 0, 'Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 160, 0, 'Verschmelzungsmehrwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 170, 0, 'Geleistete Anzahlungen auf immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 179, 0, 'Anzahlungen auf Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 200, 0, 'Grundstücke, grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstück'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 210, 200, 'Grundstücksgleiche Rechte ohne Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 215, 200, 'Unbebaute Grundstücke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 220, 200, 'Grundstücksgleiche Rechte (Erbbaurecht, Dauerwohnrecht, unbebaute Grundstücke)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 225, 200, 'Grundstücke mit Substanzverkehr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 229, 200, 'Grundstücksanteil des häuslichen Arbeitszimmers'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 230, 200, 'Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 235, 200, 'Grundstückswerte eigener bebauter Grundstücke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 240, 200, 'Geschäftsbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 250, 200, 'Fabrikbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 260, 200, 'Andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 270, 200, 'Garagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 280, 200, 'Außenanlagen für Geschäfts-, Fabrik- und andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 285, 200, 'Hof- und Wegbefestigungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 290, 200, 'Einrichtungen für Geschäfts-. Fabrik- und andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 300, 200, 'Wohnbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 305, 200, 'Garagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 310, 200, 'Außenanlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 315, 200, 'Hof- und Wegbefestigungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 320, 200, 'Einrichtungen für Wohnbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 329, 200, 'Gebäudeteil des häuslichen Arbeitszimmers'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 330, 200, 'Bauten auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 340, 200, 'Geschäftsbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 350, 200, 'Fabrikbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 360, 200, 'Wohnbauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 370, 200, 'Andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 380, 200, 'Garagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 390, 200, 'Außenanlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 395, 200, 'Hof- und Wegbefestigungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 398, 200, 'Einrichtungen für Geschäfts-. Fabrik-, Wohn- und andere Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 400, 0, 'Technische Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 420, 400, 'Technische Anlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 440, 400, 'Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 450, 400, 'Transportanlagen und Ähnlichen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 460, 400, 'Maschinengebundene Werkzeuge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 470, 400, 'Betriebsvorrichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 500, 0, 'Andere Anlagen, Betriebs- und Geschäftsausstattungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 510, 500, 'Andere Anlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 520, 500, 'PKW'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 540, 500, 'LKW'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 560, 500, 'Sonstige Transportmittel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 620, 500, 'Werkzeuge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 630, 500, 'Betriebsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 635, 500, 'Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 640, 500, 'Ladeneinrichtung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 650, 500, 'Büroeinrichtung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 660, 500, 'Gerüst- und Schalungsmaterial'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 670, 500, 'Geringwertige Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 675, 500, 'Wirtschaftsgüter (Sammelposten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 680, 500, 'Einbauten in fremde Grundstücke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 690, 500, 'Sonstige Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 700, 0, 'Geleistete Anzahlungen und Anlagen im Bau'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 705, 700, 'Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 710, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf eigenen Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 720, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 725, 700, 'Wohnbauten im Bau auf eigenen Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 735, 700, 'Anzahlungen auf Wohnbauten auf eigene Grundstücken und grundstücksgleichen Rechten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 740, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 750, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 755, 700, 'Wohnbauten im Bau auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 765, 700, 'Anzahlungen auf Wohnbauten auf fremden Grundstücken'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 770, 700, 'Technische Anlagen und Maschinen im Bau'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 780, 700, 'Anzahlungen auf technische Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 785, 700, 'Andere Anlagen, Betriebs- und Geschäftsausstattung im Bau'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 795, 700, 'Anzahlungen auf andere Anlagen, Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 800, 700, 'Anteile an verbundenen Unternehmen (Anlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 803, 800, 'Anteile an verbundenen Unternehmen, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 804, 800, 'Anteile an verbundenen Unternehmen, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 805, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 808, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 809, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 810, 700, 'Ausleihungen an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 813, 810, 'Ausleihungen an verbundene Unternehmen, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 814, 810, 'Ausleihungen an verbundene Unternehmen, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 815, 810, 'Ausleihungen an verbundene Unternehmen, Einzelunternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 820, 700, 'Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 829, 820, 'Beteiligung einer GmbH & Co. KG an einer Komplementär GmbH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 830, 820, 'Typisch stille Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 840, 820, 'Atypische stille Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 850, 820, 'Beteiligungen an Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 860, 820, 'Beteiligungen an Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 880, 700, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 883, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Personengesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 885, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Kapitalgesellschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 900, 0, 'Wertpapiere des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 910, 900, 'Wertpapiere mit Gewinnbeteiligungsansprüchen, die dem Teileinkünfteverfahren unterliegen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 920, 900, 'Festverzinsliche Wertpapiere'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 930, 0, 'Sonstige Ausleihungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 940, 930, 'Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 960, 930, 'Ausleihungen an Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an GmbH-Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 962, 930, 'Ausleihungen an persönlich haftende Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 964, 930, 'Ausleihungen an stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 970, 930, 'Ausleihungen an nahe stehende Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 980, 0, 'Genossenschaftsanteile zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 990, 0, 'Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Umlaufvermögen', 1, 1, 'Umlaufvermögen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1000, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1001, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1002, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1003, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1004, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1005, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1006, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1007, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1008, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1009, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1010, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1011, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1012, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1013, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1014, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1015, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1016, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1017, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1018, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1019, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1020, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1021, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1022, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1023, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1024, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1025, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1026, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1027, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1028, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1029, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1030, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1031, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1032, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1033, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1034, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1035, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1036, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1037, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1038, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1039, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1040, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1041, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1042, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1043, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1044, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1045, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1046, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1047, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1048, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1049, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1050, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1051, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1052, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1053, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1054, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1055, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1056, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1057, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1058, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1059, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1060, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1061, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1062, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1063, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1064, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1065, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1066, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1067, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1068, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1069, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1070, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1071, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1072, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1073, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1074, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1075, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1076, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1077, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1078, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1079, 1040, 'Unfertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1080, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1081, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1082, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1083, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1084, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1085, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1086, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1087, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1088, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1089, 1040, 'Unfertige Leistungen (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1090, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1091, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1092, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1093, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1094, 1040, 'In Ausführung befindliche Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1095, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1096, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1097, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1098, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1099, 1040, 'In Arbeit befindliche Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1100, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1101, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1102, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1103, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1104, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1105, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1106, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1107, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1108, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1109, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1110, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1111, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1112, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1113, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1114, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1115, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1116, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1117, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1118, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1119, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1120, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1121, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1122, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1123, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1124, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1125, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1126, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1127, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1128, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1129, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1130, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1131, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1132, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1133, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1134, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1135, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1136, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1137, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1138, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1139, 1100, 'Fertige Erzeugnisse (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1140, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1141, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1142, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1143, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1144, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1145, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1146, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1147, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1148, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1149, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1150, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1151, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1152, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1153, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1154, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1155, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1156, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1157, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1158, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1159, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1160, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1161, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1162, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1163, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1164, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1165, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1166, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1167, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1168, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1169, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1170, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1171, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1172, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1173, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1174, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1175, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1176, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1177, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1178, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1179, 1100, 'Waren (Bestand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1180, 1, 'Geleistete Anzahlungen auf Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1181, 1180, 'Geleistete Anzahlungen auf 7% Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1182, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1183, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1184, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1185, 1180, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1186, 1180, 'Geleistete Anzahlungen auf 19% Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1190, 1180, 'Erhaltene Anzahlungen auf Bestellungen (von Vorräten offen abgesetzt)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1200, 1, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1201, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1202, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1203, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1204, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1205, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1206, 1200, 'Forderungen aus Lieferungen und Leistungen '); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1210, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1211, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1212, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1213, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1214, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1215, 1200, 'Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmers (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1216, 1200, 'Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1217, 1200, 'Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1218, 1200, 'Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1219, 1200, 'Gegenkonto 1215-1218 bei Aufteilung der Forderungen nach Steuersätzen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1220, 1200, 'Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1221, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1225, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1230, 1200, 'Wechsel aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1231, 1200, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1232, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1235, 1200, 'Wechsel aus Lieferungen und Leistungen, Bundesbankfertig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1240, 1200, 'Zweifelhafte Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1241, 1200, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1245, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1246, 1200, 'Einzelwertberichtigungen auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1247, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1248, 1200, 'Pauschalwertberichtigung auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1249, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1250, 1200, 'Forderungen aus Lieferungen und Leistungen gegen Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1251, 1200, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1255, 1200, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1258, 1200, 'Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1259, 1200, 'Gegenkonto 1221-1229, 1240-1245, 1250-1257, 1270-1279, 1290-1297 bei Aufteilung Debitorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1260, 1, 'Forderungen gegen verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1261, 1260, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1265, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1266, 1260, 'Besitzwechsel gegen verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1267, 1260, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1268, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1269, 1260, 'Besitzwechsel gegen verbundene Unternehmen, bundesbankfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1270, 1260, 'Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1271, 1260, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1275, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1276, 1260, 'Wertberichtigung auf Forderungen gegen verbundene Unternehmen – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1277, 1260, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1280, 1, 'Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1281, 1280, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1285, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1286, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1287, 1280, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1288, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1289, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht, bundesbankfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1290, 1280, 'Forderungen aus Lieferungen und Leistungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1291, 1280, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1295, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1296, 1280, 'Wertberichtigungen auf Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht – Restlaufzeit 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1297, 1280, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1298, 1, 'Ausstehende Einlagen auf das gezeichnete Kapital, eingefordert (Forderungen, nicht eingeforderte ausstehende Einlagen s. Konto 2910)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1299, 1, 'Nachschüsse (Forderungen, Gegenkonto 2929)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1300, 1, 'Sonstige Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1301, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1305, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1307, 1300, 'Forderungen gegen GmbH-Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1308, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1309, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1310, 1300, 'Forderungen gegen Vorstandsmitglieder und Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1311, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1315, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1317, 1300, 'Forderungen gegen persönlich haftende Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1318, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1319, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1320, 1300, 'Forderungen gegen Aufsichtsrats- und Beirats-Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1321, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1325, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1327, 1300, 'Forderungen gegen Kommanditisten und atypisch stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1328, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1329, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1330, 1300, 'Forderungen gegen sonstige Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1331, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1335, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1337, 1300, 'Forderungen gegen typisch stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1338, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1339, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1340, 1300, 'Forderungen gegen Personal aus Lohn- und Gehaltsabrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1341, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1345, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1349, 1300, 'Ansprüche aus betrieblicher Altersversorgung und Pensionsansprüche (Mitunternehmer)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1350, 1300, 'Kautionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1351, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1355, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1360, 1300, 'Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1361, 1300, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1365, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1369, 1300, 'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1370, 1300, 'Durchlaufende Posten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1374, 1300, 'Fremdgeld'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1375, 1300, 'Agenturwarenabrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1376, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 2 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1377, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 2 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1378, 1300, 'Ansprüche aus Rückdeckungsversicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1380, 1300, 'Vermögensgegenstände zur Erfüllung von Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1381, 1300, 'Vermögensgegenstände zur Saldierung mit Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1382, 1300, 'Vermögensgegenstände zur Erfüllung von mit der Altersvorsorge vergleichbaren langfristigen Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1383, 1300, 'Vermögensgegenstände zur Saldierung mit der Altersversorgung vergleichbaren langfristigen Verpflichtungen nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1390, 1300, 'GmbH-Anteile zum kurzfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1391, 1300, 'Forderungen gegen Arbeitsgemeinschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1393, 1300, 'Genussrechte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1394, 1300, 'Einzahlungsansprüche zu Nebenleistungen oder Zuzahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1395, 1300, 'Genossenschaftsanteile zum kurzfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1396, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1397, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1398, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1399, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1400, 1300, 'Abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1401, 1300, 'Abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1402, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1403, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1404, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1405, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1406, 1300, 'Abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1407, 1300, 'Abziehbare Vorsteuer nach § 13b UStG 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1408, 1300, 'Abziehbare Vorsteuer nach § 13b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1409, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1410, 1300, 'Aufzuteilende Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1411, 1300, 'Aufzuteilende Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1412, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1413, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1414, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1415, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1416, 1300, 'Aufzuteilende Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1417, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1418, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1419, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1420, 1300, 'Forderungen aus Umsatzsteuer-Vorauszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1421, 1300, 'Umsatzsteuerforderungen laufendes Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1422, 1300, 'Umsatzsteuerforderungen Vorjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1425, 1300, 'Umsatzsteuerforderungen frühere Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1427, 1300, 'Forderungen aus entrichteten Verbrauchsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1431, 1300, 'Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1432, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Ust-Identifikationsnummer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1433, 1300, 'Entstandene Einfuhrumsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1434, 1300, 'Vorsteuer in Folgeperiode/im Folgejahr abziehbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1435, 1300, 'Forderungen aus Gewerbesteuerüberzahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1436, 1300, 'Vorsteuer aus Erwerb als letzter Abnehmer innerhalb eine Dreiecksgeschäfts'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1440, 1300, 'Steuererstattungsansprüche gegenüber Ländern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1450, 1300, 'Körperschaftsteuerrückforderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1452, 1300, 'Körperschaftsteuerrückforderungen nach § 37 KStG – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1453, 1300, '- Restlaufzeit größer 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1456, 1300, 'Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1457, 1300, 'Forderung gegenüber Bundesagentur für Arbeit'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1460, 1300, 'Geldtransit'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1480, 1300, 'Gegenkonto Vorsteuer § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1481, 1300, 'Auflösung Vorsteuer aus Vorjahr § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1482, 1300, 'Vorsteuer aus Investitionen § 4/3 EstG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1483, 1300, 'Gegenkonto für Vorsteuer nach Durchschnittsätzen für § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1484, 1300, 'Vorsteuer nach allgemeinen Durchschittssätzen UstVA Kz. 63'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1485, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, ergebniswirksam'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1486, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, nicht ergebniswirksam'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1487, 1300, 'Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1490, 1300, 'Verrechnungskonto Ist-Versteuerung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1495, 1300, 'Verrechnungskonto erhaltene Anzahlungen bei Buchungen über Debitorenkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1496, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1497, 1300, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1498, 1300, 'Überleitungskonto Kostenstellen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1500, 1, 'Anteile an verbundenen Unternehmen (Umlaufvermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1504, 1, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1510, 1, 'Sonstige Wertpapiere'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1520, 1510, 'Finanzwechsel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1525, 1510, 'Andere Wertpapiere mit unwesentlichen Wertschwankungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1530, 1510, 'Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1550, 1, 'Schecks'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1600, 1, 'Kasse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1610, 1600, 'Nebenkasse 1'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1620, 1600, 'Nebenkasse 2'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1700, 1, 'Bank (Postbank)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1720, 1700, 'Bank (Postbank2)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1730, 1700, 'Bank (Postbank 3)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1780, 1700, 'LZB-Guthaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1790, 1700, 'Bundesbankguthaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1800, 1, 'Bank'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1810, 1800, 'Bank 1'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1820, 1800, 'Bank 2'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1830, 1800, 'Bank 3'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1840, 1800, 'Bank 4'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1850, 1800, 'Bank 5'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1889, 1800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1890, 1800, 'Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition (nicht im Finanzmittelfonds enthalten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1895, 1800, 'Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1900, 1, 'Aktive Rechnungsabgrenzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1920, 1900, 'Als Aufwand berücksichtigte Zölle und Verbrauchsteuer auf Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1930, 1900, 'Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1940, 1900, 'Damnum/Disagio'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1950, 1, 'Aktive latente Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapitalkonten/Fremdkapitalkonten', 2, 2, 'Eigenkapitalkonten/Fremdkapitalkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2000, 2, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2001, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2002, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2003, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2004, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2005, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2006, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2007, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2008, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2009, 2000, 'Festkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2010, 2, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2011, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2012, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2013, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2014, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2015, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2016, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2017, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2018, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2019, 2000, 'Variables Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2020, 2, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2021, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2022, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2023, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2024, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2025, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2026, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2027, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2028, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2029, 2020, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2030, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2031, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2032, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2033, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2034, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2035, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2036, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2037, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2038, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2039, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2040, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2041, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2042, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2043, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2044, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2045, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2046, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2047, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2048, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2049, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2050, 2, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2051, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2052, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2053, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2054, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2055, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2056, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2057, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2058, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2059, 2050, 'Kommandit-Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2060, 2, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2061, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2062, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2063, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2064, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2065, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2066, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2067, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2068, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2069, 2060, 'Verlustausgleichskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2070, 2, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2071, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2072, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2073, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2074, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2075, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2076, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2077, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2078, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2079, 2070, 'Gesellschafter-Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2080, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2081, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2082, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2083, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2084, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2085, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2086, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2087, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2088, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2089, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2090, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2091, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2092, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2093, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2094, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2095, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2096, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2097, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2098, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2099, 2, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2100, 2, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2101, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2102, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2103, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'prp', 2104, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2105, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2106, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2107, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2108, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2109, 2100, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2110, 2, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2111, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2112, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2113, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2114, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2115, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2116, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2117, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2118, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2119, 2110, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2120, 2, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2121, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2122, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2123, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2124, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2125, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2126, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2127, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2128, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2129, 2120, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2130, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2131, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2132, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2133, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2134, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2135, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2136, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2137, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2138, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2139, 2130, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2140, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2141, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2142, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2143, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2144, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2145, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2146, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2147, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2148, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2149, 2140, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2150, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2151, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2152, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2153, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2154, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2155, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2156, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2157, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2158, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2159, 2150, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2160, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2161, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2162, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2163, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2164, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2165, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2166, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2167, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2168, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2169, 2160, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2170, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2171, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2172, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2173, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2174, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2175, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2176, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2177, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2178, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2179, 2170, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2180, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2181, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2182, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2183, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2184, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2185, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2186, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2187, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2188, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2189, 2180, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2190, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2191, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2192, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2193, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2194, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2195, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2196, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2197, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2198, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2199, 2190, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2200, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2201, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2202, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2203, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2204, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2205, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2206, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2207, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2208, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2209, 2200, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2210, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2211, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2212, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2213, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2214, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2215, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2216, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2217, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2218, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2219, 2210, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2220, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2221, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2222, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2223, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2224, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2225, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2226, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2227, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2228, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2229, 2220, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2230, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2231, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2232, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2233, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2234, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2235, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2236, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2237, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2238, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2239, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2240, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2241, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2242, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2243, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2244, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2245, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2246, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2247, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2248, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2249, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2250, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2251, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2252, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2253, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2254, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2255, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2256, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2257, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2258, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2259, 2250, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2260, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2261, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2262, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2263, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2264, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2265, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2266, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2267, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2268, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2269, 2260, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2270, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2271, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2272, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2273, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2274, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2275, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2276, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2277, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2278, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2279, 2270, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2280, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2281, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2282, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2283, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2284, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2285, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2286, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2287, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2288, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2289, 2280, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2290, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2291, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2292, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2293, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2294, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2295, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2296, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2297, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2298, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2299, 2290, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2300, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2301, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2302, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2303, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2304, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2305, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2306, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2307, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2308, 2300, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2309, 2300, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2310, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2311, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2312, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2313, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2314, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2315, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2316, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2317, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2318, 2310, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2319, 2310, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2320, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2321, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2322, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2323, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2324, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2325, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2326, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2327, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2328, 2320, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2329, 2320, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2330, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2331, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2332, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2333, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2334, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2335, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2336, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2337, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2338, 2330, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2339, 2330, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2340, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2341, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2342, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2343, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2344, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2345, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2346, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2347, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2348, 2340, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2349, 2340, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2350, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2351, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2352, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2353, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2354, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2355, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2356, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2357, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2358, 2350, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2359, 2350, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2360, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2361, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2362, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2363, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2364, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2365, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2366, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2367, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2368, 2360, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2369, 2360, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2370, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2371, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2372, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2373, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2374, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2375, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2376, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2377, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2378, 2370, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2379, 2370, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2380, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2381, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2382, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2383, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2384, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2385, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2386, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2387, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2388, 2380, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2389, 2380, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2390, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2391, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2392, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2393, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2394, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2395, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2396, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2397, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2398, 2390, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2399, 2390, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2500, 2, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2501, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2502, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2503, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2504, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2505, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2506, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2507, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2508, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2509, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2510, 2, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2511, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2512, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2513, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2514, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2515, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2516, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2517, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2518, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2519, 2500, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2520, 2, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2521, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2522, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2523, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2524, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2525, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2526, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2527, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2528, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2529, 2520, 'Privateinnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2530, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2531, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2532, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2533, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2534, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2535, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2536, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2537, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2538, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2539, 2530, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2540, 2, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2541, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2542, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2543, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2544, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2545, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2546, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2547, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2548, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2549, 2540, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2550, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2551, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2552, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2553, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2554, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2555, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2556, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2557, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2558, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2559, 2550, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2560, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2561, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2562, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2563, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2564, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2565, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2566, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2567, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2568, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2569, 2560, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2570, 2, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2571, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2572, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2573, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2574, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2575, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2576, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2577, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2578, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2579, 2570, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2580, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2581, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2582, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2583, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2584, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2585, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2586, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2587, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2588, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2589, 2580, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2590, 2, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2591, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2592, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2593, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2594, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2595, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2596, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2597, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2598, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2599, 2590, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2600, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2601, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2602, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2603, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2604, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2605, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2606, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2607, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2608, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2609, 2600, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2610, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2611, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2612, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2613, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2614, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2615, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2616, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2617, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2618, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2619, 2610, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2620, 2, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2621, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2622, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2623, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2624, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2625, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2626, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2627, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2628, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2629, 2620, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2630, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2631, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2632, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2633, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2634, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2635, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2636, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2637, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2638, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2639, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2640, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2641, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2642, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2643, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2644, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2645, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2646, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2647, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2648, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2649, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2650, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2651, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2652, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2653, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2654, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2655, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2656, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2657, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2658, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2659, 2650, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2660, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2661, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2662, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2663, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2664, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2665, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2666, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2667, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2668, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2669, 2660, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2670, 2, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2671, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2672, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2673, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2674, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2675, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2676, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2677, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2678, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2679, 2670, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2680, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2681, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2682, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2683, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2684, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2685, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2686, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2687, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2688, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2689, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2690, 2, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2691, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2692, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2693, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2694, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2695, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2696, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2697, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2698, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2699, 2680, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2700, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2701, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2702, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2703, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2704, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2705, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2706, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2707, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2708, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2709, 2700, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2710, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2711, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2712, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2713, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2714, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2715, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2716, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2717, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2718, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2719, 2710, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2720, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2721, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2722, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2723, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2724, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2725, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2726, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2727, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2728, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2729, 2720, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2730, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2731, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2732, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2733, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2734, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2735, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2736, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2737, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2738, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2739, 2730, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2740, 2, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2741, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2742, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2743, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2744, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2745, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2746, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2747, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2748, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2749, 2740, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2750, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2751, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2752, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2753, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2754, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2755, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2756, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2757, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2758, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2759, 2750, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2760, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2761, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2762, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2763, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2764, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2765, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2766, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2767, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2768, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2769, 2760, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2770, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2771, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2772, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2773, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2774, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2775, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2776, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2777, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2778, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2779, 2770, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2780, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2781, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2782, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2783, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2784, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2785, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2786, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2787, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2788, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2789, 2780, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2790, 2, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2791, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2792, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2793, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2794, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2795, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2796, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2797, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2798, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2799, 2790, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2900, 2, 'Gezeichnetes Kapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2901, 2900, 'Geschäftsguthaben der verbleibenden Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2902, 2900, 'Geschäftsguthaben der ausscheidenden Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2903, 2900, 'Geschäftsguthaben aus gekündigten Geschäftsanteilen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2906, 2900, 'Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2907, 2900, 'Gegenkonto Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2908, 2900, 'Kapitalerhöhung aus Gesellschaftsmitteln'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2909, 2900, 'Erworbene eigene Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2910, 2900, 'Ausstehende Einlagen auf das gezeichnete Kapital, nicht eingefordert (Passivausweis, vom gezeichneten Kapital offen abgesetzt; eingeforderte ausstehende Einlagen s. Konto 1289)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2920, 2, 'Kapitalrücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2925, 2920, 'Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2926, 2920, 'Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2927, 2920, 'Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2928, 2920, 'Kapitalrücklage durch Zuzahlungen in das Eigenkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2929, 2920, 'Nachschusskonto (Gegenkonto 1299)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2930, 2, 'Gesetzliche Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2935, 2930, 'Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2937, 3930, 'Andere Ergebnisrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2950, 2, 'Satzungsmäßige Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2959, 2950, 'Gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2960, 2, 'Andere Gewinnrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2961, 2960, 'Andere Gewinnrücklagen aus dem Erwerb eigener Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2962, 2960, 'Eigenkapitalanteil von Wertaufholungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2963, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2964, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Sachanlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2965, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Finanzanlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2966, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Auflösung der Sonderposten mit Rücklageanteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2967, 2960, 'Latente Steuern (Gewinnrücklage Haben) aus erfolgsneutralen Verrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2968, 2960, 'Latente Steuern (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2969, 2960, 'Rechnungsabgenzungsposten (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2970, 2, 'Gewinnvortrag vor Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2975, 2970, 'Gewinnvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2977, 2978, 'Verlustvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2978, 2, 'Verlustvortrag vor Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2979, 2, 'Vortrag auf neue Rechnung (Bilanz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2980, 2, 'Sonderposten mit Rücklageanteil, steuerfreie Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2981, 2, 'Sonderposten mit Rücklageanteil nach § 6b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2982, 2, 'Sonderposten mit Rücklageanteil nach EstR R 6.6'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2988, 2, 'Rücklage für Zuschüsse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2989, 2, 'Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2990, 2, 'Sonderposten mit Rücklageanteil, Sonderabschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2993, 2, 'Sonderposten mit Rücklageanteil nach § 7g Abs. 2 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2995, 2, 'Ausgleichsposten bei Entnahmen § 4g EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2997, 2, 'Sonderposten bei Rücklageanteil § 7g Abs. 5 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2999, 2, 'Sonderposten für Zuschüsse und Zulagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Fremdkapitalkonten', 3, 3, 'Fremdkapitalkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3000, 3, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3005, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen gegenüber Gesellschaftern oder nahestehenden Personen (10 % Beteiligung am Kapital)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3009, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3010, 3000, 'Rückstellungen für Direktzusagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3011, 3000, 'Rückstellungen für Zuschussverpflichtungen für Pensionskassen und Lebensversicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3015, 3000, 'Rückstellungen für pensionähnliche Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3020, 3, 'Steuerrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3030, 3020, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3035, 3020, 'Gewerbesteuerrückstellungen § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3040, 3020, 'Körperschaftsteuerrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3050, 3020, 'Steuerrückstellung aus Steuerstundung (BstBK)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3060, 3020, 'Rückstellungen für latente Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3065, 3020, 'Passive latente Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3070, 3, 'Sonstige Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3074, 3070, 'Rückstellungen für Personalkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3075, 3070, 'Rückstellungen für unterlassene Aufwendungen für Instandhaltung, Nachholung in den ersten drei Monaten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3076, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zum langfristigen Verbleib'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3077, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3079, 3070, 'Urlaubsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3085, 3070, 'Rückstellungen für Abraum- und Abfallbeseitigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3090, 3070, 'Rückstellungen für Gewährleistungen (Gegenkonto 6790)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3092, 3070, 'Rückstellungen für drohende Verluste aus schwebenden Geschäften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3095, 3070, 'Rückstellungen für Abschluss- und Prüfungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3096, 3070, 'Rückstellungen zur Erfüllung der Aufbewahrungspflichten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3098, 3070, 'Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB a. F.'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3099, 3070, 'Rückstellungen für Umweltschutz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3100, 3, 'Anleihen, nicht konvertibel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3101, 3100, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3105, 3100, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3110, 3100, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3120, 3100, 'Anleihen, konvertibel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3121, 3120, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3125, 3120, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3130, 3120, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3150, 3, 'Verbindlichkeiten gegenüber Kreditinstituten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3151, 3150, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3160, 3150, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3170, 3150, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3180, 3150, 'Verbindlichkeiten gegenüber Kreditinstituten aus Teilzahlungsverträgen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3181, 3180, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3190, 3180, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3200, 3180, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3210, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3211, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3212, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3213, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3214, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3215, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3216, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3217, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3218, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3219, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3220, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3221, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3222, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3223, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3224, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3225, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3226, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3227, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3228, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3229, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3230, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3231, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3232, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3233, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3234, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3235, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3236, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3237, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3238, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3239, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3240, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3241, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3242, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3243, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3244, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3245, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3246, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3247, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3248, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3249, 3150, 'Gegenkonto 3150-3109 bei Aufteilung der Konten 3210-3248'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3250, 3, 'Erhaltene Anzahlungen auf Bestellungen (Verbindlichkeiten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3260, 3250, 'Erhaltene, versteuerte Anzahlungen 7 % USt (Verbindlichkeiten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3261, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3262, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3263, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3264, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3270, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3271, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3272, 3250, 'Erhaltene, versteuerte Anzahlungen 19 % USt (Verbindlichkeiten)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3273, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3274, 3250, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3280, 3250, 'Erhaltene Anzahlungen – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3284, 3280, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3285, 3280, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3300, 3, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3301, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3302, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3303, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3305, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3306, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3307, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3309, 3300, 'Gegenkonto 3305-3307 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3310, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3311, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3312, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3313, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3334, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3335, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3337, 3335, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3338, 3335, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3340, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3341, 3340, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3345, 3340, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3348, 3340, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3349, 3300, 'Gegenkonto 3335-3348, 3420-3449, 3470-3499 bei Aufteilung Kreditorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3350, 3, 'Wechselverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3351, 3350, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3380, 3350, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3390, 3350, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3400, 3, 'Verbindlichkeiten gegenüber verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3401, 3400, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3405, 3400, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3410, 3400, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3420, 3400, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3421, 3420, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3425, 3420, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3430, 3420, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3450, 3, 'Verbindlichkeiten gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3451, 3450, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3455, 3450, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3460, 3450, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3470, 3450, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3471, 3470, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3475, 3470, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3480, 3470, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3500, 3, 'Sonstige Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3501, 3500, '- Restlaufzeit bis 1Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3504, 3500, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3507, 3500, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3509, 3500, 'Sonstige Verbindlichkeiten nach § 11 Abs. 2 Satz 2 EStG für § 4/3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3510, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3511, 3510, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3514, 3510, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3517, 3510, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3519, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern für offene Ausschüttungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3520, 3500, 'Darlehen typisch stiller Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3521, 3520, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3524, 3520, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3527, 3520, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3530, 3500, 'Darlehen atypisch stiller Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3531, 3530, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3534, 3530, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3537, 3530, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3540, 3500, 'Partiarische Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3541, 3540, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3544, 3540, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3547, 3540, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3550, 3500, 'Erhaltene Kautionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3551, 3550, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3554, 3550, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3557, 3550, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3560, 3500, 'Darlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3561, 3560, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3564, 3560, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3567, 3560, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3570, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3571, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3572, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3573, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3574, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3575, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3576, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3577, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3578, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3579, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3580, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3581, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3582, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3583, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3584, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3585, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3586, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3587, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3588, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3589, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3590, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3591, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3592, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3593, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3594, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3595, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3596, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3597, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3598, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3599, 3500, 'Gegenkonto 3500-3569 und 3640-3658 bei Aufteilung der Konten 3570-3598'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3600, 3500, 'Agenturwarenabrechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3610, 3500, 'Kreditkartenabrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3611, 3500, 'Verbindlichkeiten gegenüber Arbeitsgemeinschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3620, 3500, 'Gewinnverfügungskonto stille Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3630, 3500, 'Sonstige Verrechnungskosten (Interimskonto)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3635, 3500, 'Sonstige Verbindlichkeiten aus genossenschaftlicher Rückvergütung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3640, 3500, 'Verbindlichkeiten gegenüber GmbH-Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3641, 3640, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3642, 3640, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3643, 3640, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3645, 3500, 'Verbindlichkeiten gegenüber persönlich haftenden Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3646, 3645, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3647, 3645, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3648, 3645, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3650, 3500, 'Verbindlichkeiten gegenüber Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3651, 3650, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3652, 3650, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3653, 3650, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3655, 3500, 'Verbindlichkeiten gegenüber stillen Gesellschaftern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3656, 3655, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3657, 3655, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3658, 3655, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3695, 3500, 'Verrechnungskonto geleistete Anzahlungen bei Buchungen über Kreditorenkonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3700, 3500, 'Verbindlichkeiten aus Steuern und Abgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3701, 3700, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3710, 3700, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3715, 3700, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3720, 3500, 'Verbindlichkeiten aus Lohn und Gehalt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3725, 3500, 'Verbindlichkeiten für Einbehaltungen von Arbeitnehmern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3726, 3500, 'Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3730, 3500, 'Verbindlichkeiten aus Lohn- und Kirchensteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3740, 3500, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3741, 3740, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3750, 3740, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3755, 3740, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3759, 3500, 'Voraussichtliche Beitragsschuld gegenüber den Sozialversicherungsträgern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3760, 3500, 'Verbindlichkeiten aus Einbehaltungen (KapESt und SolZ, KiSt auf KapESt) für offene Ausschüttungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3761, 3500, 'Verbindlichkeiten für Verbrauchsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3770, 3500, 'Verbindlichkeiten aus Vermögensbildung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3771, 3770, '- Restlaufzeit bis 1 Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3780, 3770, '- Restlaufzeit 1 bis 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3785, 3770, '- Restlaufzeit größer 5 Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3786, 3500, 'Ausgegebene Geschenkgutscheine'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3790, 3, 'Lohn- und Gehaltsverrechnungskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3791, 3790, 'Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3796, 3790, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3798, 3790, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3799, 3790, 'Steuerzahlungen aus im anderen EU-Land steuerpflichtigen elektronische Dienstleistungen an kleine einzige Anlaufstelle (KEA/MOSS)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3800, 3, 'Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3801, 3800, 'Umsatzsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3802, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3803, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3804, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3805, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3806, 3800, 'Umsatzsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3807, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3808, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3809, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb ohne Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3810, 3800, 'Umsatzsteuer nicht fällig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3811, 3800, 'Umsatzsteuer nicht fällig 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3812, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3813, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3814, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3815, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3816, 3800, 'Umsatzsteuer nicht fällig 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3817, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3818, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen/Werklieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3819, 3800, 'Umsatzsteuer aus Erwerb als letzter Abnehmer innerhalb eines Dreiecksgeschäfts'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3820, 3800, 'Umsatzsteuer-Vorauszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3830, 3800, 'Umsatzsteuer-Vorauszahlungen 1/11'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3831, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3832, 3800, 'Nachsteuer, UstVA Kz. 65'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3833, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3834, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3835, 3800, 'Umsatzsteuer nach § 13b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3836, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3837, 3800, 'Umsatzsteuer nach § 13b UStG 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3838, 3800, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3839, 3800, 'Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3840, 3800, 'Umsatzsteuer laufendes Jahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3841, 3800, 'Umsatzsteuer Vorjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3845, 3800, 'Umsatzsteuer frühere Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3850, 3800, 'Einfuhrumsatzsteuer aufgeschoben bis ...'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3851, 3800, 'In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerbeträge, UstVA Kz. 69'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3854, 3800, 'Steuerzahlungen an andere Länder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3860, 3, 'Verbindlichkeiten aus Umsatzsteuer-Vorauszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3865, 3800, 'Umsatzsteuer in Folgeperiode fällig (§§ 13 Abs. 1 Nr. 6, 13b Abs. 2 UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3900, 3, 'Passive Rechnungsabgrenzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3950, 3900, 'Abgrenzung unterjährig pauschal gebuchter Abschreibungen für BWA'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Betriebliche Erträge', 4, 4, 'Betriebliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4000, 4, 'Umsatzerlöse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4001, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4002, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4003, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4004, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4005, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4006, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4007, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4008, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4009, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4010, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4011, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4012, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4013, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4014, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4015, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4016, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4017, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4018, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4019, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4020, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4021, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4022, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4023, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4024, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4025, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4026, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4027, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4028, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4029, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4030, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4031, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4032, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4033, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4034, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4035, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4036, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4037, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4038, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4039, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4040, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4041, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4042, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4043, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4044, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4045, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4046, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4047, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4048, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4049, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4050, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4051, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4052, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4053, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4054, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4055, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4056, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4057, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4058, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4059, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4060, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4061, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4062, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4063, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4064, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4065, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4066, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4067, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4068, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4069, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4070, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4071, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4072, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4073, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4074, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4075, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4076, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4077, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4078, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4079, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4080, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4081, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4082, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4083, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4084, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4085, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4086, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4087, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4088, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4089, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4090, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4091, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4092, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4093, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4094, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4095, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4096, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4097, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4098, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4099, 4000, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4100, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4101, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4102, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4103, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4104, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4105, 4000, 'Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpachtung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4110, 4000, 'Sonstige steuerfreie Umsätze Inland'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4120, 4000, 'Steuerfreie Umsätze § 4 Nr. 1a UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4125, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen § 4 Nr. 1b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4130, 4000, 'Lieferungen des ersten Abnehmers bei innergemeinschaftlichen Dreiecksgeschäften § 25b Abs. 2 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4135, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer-Identifikationsnummer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4136, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4137, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4138, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4139, 4000, 'Umsatzerlöse aus Reiseleistungen § 25 Abs. 2 UStG, steuerfrei'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4140, 4000, 'Steuerfreie Umsätze Offshore etc.'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4150, 4000, 'Sonstige steuerfreie Umsätze (z. B. § 4 Nr. 2-7 UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4160, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend, § 4 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4165, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4180, 4000, 'Erlöse, die mit den Durchschnittssätzen des § 24 UStG verteuert werden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4182, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4183, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4185, 4000, 'Erlöse als Kleinunternehmer i. S. d. $ 19 Abs. 1 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4186, 4000, 'Erlöse aus Geldspielautomaten 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4187, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4188, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4200, 4000, 'Erlöse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4300, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4301, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4302, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4303, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4304, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4305, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4306, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4307, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4308, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4309, 4000, 'Erlöse 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4310, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4311, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4312, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4313, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4314, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4315, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4316, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4317, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4318, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4319, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4320, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4321, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4322, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4323, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4324, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4325, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4326, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4327, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4328, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4329, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4330, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4331, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4332, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4333, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4334, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4335, 4000, 'Erlöse aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4336, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4337, 4000, 'Erlöse aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4338, 4000, 'Erlöse aus im Drittland steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4339, 4000, 'Erlöse aus im anderen EU-Land steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4340, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4341, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4342, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4343, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4344, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4345, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4346, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4347, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4348, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4349, 4000, 'Erlöse 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4400, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4401, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4402, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4403, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4404, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4405, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4406, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4407, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4408, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4409, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4410, 4000, 'Erlöse 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4411, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4412, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4413, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4414, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4415, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4416, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4417, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4418, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4419, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4420, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4421, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4422, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4423, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4424, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4425, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4426, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4427, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4428, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4429, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4430, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4431, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4432, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4433, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4434, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4435, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4436, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4437, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4438, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4439, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4440, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4441, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4442, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4443, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4444, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4445, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4446, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4447, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4448, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4449, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4499, 4000, 'Nebenerlöse (Bezug zu Materialaufwand)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4500, 4, 'Sonderbetriebseinnahmen, Tätigkeitsvergütung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4501, 4, 'Sonderbetriebseinnahmen, Miet-/Pachteinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4502, 4, 'Sonderbetriebseinnahmen, Zinseinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4503, 4, 'Sonderbetriebseinnahmen, Haftungsvergütung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4504, 4, 'Sonderbetriebseinnahmen, Pensionszahlungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4505, 4, 'Sonderbetriebseinnahmen, sonstige Sonderbetriebseinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4510, 4000, 'Erlöse Abfallverwertung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4520, 4000, 'Erlöse Leergut'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4560, 4000, 'Provisionsumsätze'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4561, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4562, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4563, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4564, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 8 ff. UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4565, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 5 UStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4566, 4000, 'Provisionsumsätze 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4567, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4568, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4569, 4000, 'Provisionsumsätze 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4570, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4571, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4572, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4573, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4574, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4575, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 5 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4576, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4577, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4578, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4579, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4580, 4000, 'Statistisches Konto Erlöse zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4581, 4000, 'Statistisches Konto Erlöse zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4582, 4000, 'Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4589, 4000, 'Gegenkonto 4580-4582 bei Aufteilung der Erlöse nach Steuersätzen (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4600, 4000, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4605, 4000, 'Entnahme von Gegenständen ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4608, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4609, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4610, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4611, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4612, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4613, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4614, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4615, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4616, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4617, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4618, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4619, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4620, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4621, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4622, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4623, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4624, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4625, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4626, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4627, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4628, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4629, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4630, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4631, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4632, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4633, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4634, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4635, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4636, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4637, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4638, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4639, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4640, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4641, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4642, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4643, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4644, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4645, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Kfz-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4646, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Telefon-Nutzung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4647, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4648, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4649, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4650, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4651, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4652, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4653, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4654, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4655, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4656, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4657, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4658, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4659, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4660, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4661, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4662, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4663, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4664, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4665, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4666, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4667, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4668, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4669, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4670, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4671, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4672, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4673, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4674, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4675, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4676, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4677, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4678, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4679, 4000, 'Unentgeltliche Zuwendung von Waren ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4680, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4681, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4682, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4683, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4684, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4685, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4686, 4000, 'Unentgeltliche Zuwendung von Gegenständen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4688, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4689, 4000, 'Unentgeltliche Zuwendung von Gegenständen ohne USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4690, 4000, 'Nicht steuerbare Umsätze (Innenumsätze)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4695, 4000, 'Umsatzsteuervergütungen, z.B. nach § 24 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4699, 4000, 'Direkt mit dem Umsatz verbundene Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4700, 4000, 'Erlösschmälerungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4701, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4702, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 2-7 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4703, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze ohne Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4704, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze mit Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4705, 4700, 'Erlösschmälerungen aus steuerfreien Umsätzen § 4 Nr. 1a UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4706, 4700, 'Erlösschmälerungen für steuerfreie innergemeinschaftliche Dreiecksgeschäfte nach § 25b Abs. 2, 4 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4710, 4700, 'Erlösschmälerungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4711, 4700, 'Erlösschmälerungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4712, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4713, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4714, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4715, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4716, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4717, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4718, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4719, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4720, 4700, 'Erlösschmälerungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4721, 4700, 'Erlösschmälerungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4722, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4723, 4700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4724, 4700, 'Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4725, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4726, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4727, 4700, 'Erlösschmälerungen aus im anderen EU-Land steuerpflichtigen Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4728, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4729, 4000, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4730, 4000, 'Gewährte Skonti'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4731, 4730, 'Gewährte Skonti 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4732, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4733, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4734, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4735, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4736, 4730, 'Gewährte Skonti 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4737, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4738, 4730, 'Gewährte Skonti aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4741, 4730, 'Gewährte Skonti aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4742, 4730, 'Gewährte Skonti aus Erlösen aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4743, 4730, 'Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4744, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4745, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4746, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4747, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4748, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4749, 4730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4750, 4769, 'Gewährte Boni 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4751, 4769, 'Gewährte Boni 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4752, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4753, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4754, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4755, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4756, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4757, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4758, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4759, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4760, 4769, 'Gewährte Boni 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4761, 4769, 'Gewährte Boni 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4762, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4763, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4764, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4765, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4766, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4767, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4768, 4769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4769, 4000, 'Gewährte Boni'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4770, 4000, 'Gewährte Rabatte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4780, 4770, 'Gewährte Rabatte 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4781, 4770, 'Gewährte Rabatte 7 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4782, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4783, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4784, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4785, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4786, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4787, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4788, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4789, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4790, 4770, 'Gewährte Rabatte 19 % Ust'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4791, 4770, 'Gewährte Rabatte 19 % Ust'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4792, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4793, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4794, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4795, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4796, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4797, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4798, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4799, 4770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4800, 4, 'Bestandsveränderungen – fertige Erzeugnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4810, 4, 'Bestandsveränderungen – unfertige Erzeugnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4815, 4, 'Bestandsveränderungen – unfertige Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4816, 4, 'Bestandsveränderungen in Ausführung befindlicher Bauaufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4818, 4, 'Bestandsveränderungen in Arbeit befindlicher Aufträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4820, 4, 'Andere aktivierte Eigenleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4824, 4820, 'Aktivierte Eigenleistungen (den Herstellungskosten zurechenbare Fremdkapitalzinsen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4825, 4820, 'Aktivierte Eigenleistungen zur Erstellung von selbst geschaffenen immateriellen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4830, 4, 'Sonstige betriebliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4832, 4830, 'Sonstige betriebliche Erträge von verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4833, 4830, 'Andere Nebenerlöse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4834, 4830, 'Sonstige Erträge betrieblich und regelmäßig 16 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4835, 4830, 'Sonstige Erträge betrieblich und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4836, 4830, 'Sonstige Erträge betrieblich und regelmäßig 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4837, 4830, 'Sonstige Erträge betriebsfremd und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4838, 4830, 'Erstattete Vorsteuer anderer Länder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4839, 4830, 'Sonstige Erträge unregelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4840, 4830, 'Erträge aus der Währungsumrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4841, 4830, 'Sonstige Erträge betrieblich und regelmäßig, steuerfrei § 4 Nr. 8 ff. UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4842, 4830, 'Sonstige betriebliche Erträge steuerfrei z. B. § 4 Nr. 2-7 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4843, 4830, 'Erträge aus Bewertung Finanzmittelfonds'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4844, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4845, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4846, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4847, 4830, 'Erträge aus der Währungsumrechnung (nicht § 256a HGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4848, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4849, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4850, 4830, 'Erlöse aus Verkäufen immaterieller Vermögensgengenstände (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4851, 4830, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4852, 4830, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4855, 4830, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4856, 4830, 'Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4857, 4830, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4858, 4830, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (Restbuchwert bei Buchgewinn)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4860, 4830, 'Grundstückserträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4861, 4860, 'Erlöse aus Vermietung und Verpachtung, umsatzsteuerfrei § 4 Nr. 12 UStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4862, 4860, 'erlöse aus Vermietung und Verpachtung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4863, 4860, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4864, 4860, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4865, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19 % USt für § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4866, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4867, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG, § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4869, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4900, 4830, 'Erträge aus dem Abgang von Gegenständen des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4901, 4830, 'Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4905, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens außer Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4906, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4910, 4830, 'Erträge aus Zuschreibungen des Sachanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4911, 4830, 'Erträge aus Zuschreibungen des immateriellen Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4912, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4913, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4914, 4830, 'Erträge aus Zuschreibungen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4915, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens (außer Vorräte)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4916, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4920, 4830, 'Erträge aus der Herabsetzung der Pauschalwertberichtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4923, 4830, 'Erträge aus der Herabsetzung der Einzelwertberichtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4925, 4830, 'Erträge aus abgeschriebenen Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4927, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4828, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 10 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4829, 4830, 'Erträge aus der Auflösung der Rücklage für Ersatzbeschaffung R 6.6 EstR'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4930, 4830, 'Erträge aus der Auflösung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4932, 4830, 'Erträge aus der Herabsetzung von Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4935, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4936, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen (Ansparabschreibung nach § 7 g Abs. 2 EStG)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4937, 4830, 'Erträge aus der Auflösung steuerrechtlicher Sonderabschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4938, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 4g EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4939, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen nach 3 53 Abs, 16 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4940, 4830, 'Verrechnete sonstige Sachbezüge (keine Waren)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4941, 4830, 'Sachbezüge 7 % USt (Waren)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4942, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4943, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4944, 4830, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4945, 4830, 'Sachbezüge 19 % USt (Waren)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4946, 4830, 'Verrechnete sonstige Sachbezüge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4947, 4830, 'Verrechnete sonstige Sachbezüge aus Kfz-Gestellung 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4948, 4830, 'Verrechnete sonstige Sachbezüge 19 % USt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4949, 4830, 'Verrechnete sonstige Sachbezüge ohne Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4960, 4830, 'Periodenfremde Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4970, 4830, 'Versicherungsentschädigungen und Schadenersatzleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4972, 4830, 'Erstattungen Aufwendungsausgleichsgesetz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4975, 4830, 'Investitionszuschüsse (steuerpflichtig)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4980, 4830, 'Investitionszulagen (steuerfrei)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4981, 4830, 'Steuerfreie Erträge aus der Auflösung von steuerlichen Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4982, 4830, 'Sonstige steuerfreie Betriebseinnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4987, 4830, 'Erträge aus der Aktivierung unentgeltlich erworbener Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4989, 4830, 'Kostenerstattungen, Rückvergütungen und Gutschriften für frühere Jahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4992, 4830, 'Erträge aus Verwaltungskostenumlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 5, 5, 'Betriebliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5000, 5, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5001, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5002, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5003, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5004, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5005, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5006, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5007, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5008, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5009, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5010, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5011, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5012, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5013, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5014, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5015, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5016, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5017, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5018, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5019, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5020, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5021, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5022, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5023, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5024, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5025, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5026, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5027, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5028, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5029, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5030, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5031, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5032, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5033, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5034, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5035, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5036, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5037, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5038, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5039, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5040, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5041, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5042, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5043, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5044, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5045, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5046, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5047, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5048, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5049, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5050, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5051, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5052, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5053, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5054, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5055, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5056, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5057, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5058, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5059, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5060, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5061, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5062, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5063, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5064, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5065, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5066, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5067, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5068, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5069, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5070, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5071, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5072, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5073, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5074, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5075, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5076, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5077, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5078, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5079, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5080, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5081, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5082, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5083, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5084, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5085, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5086, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5087, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5088, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5089, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5090, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5091, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5092, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5093, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5094, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5095, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5096, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5097, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5098, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5099, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5100, 5, 'Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5110, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5111, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5112, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5113, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5114, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5115, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5116, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5117, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5118, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5119, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5120, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5121, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5122, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5123, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5124, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5125, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5126, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5127, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5128, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5129, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5130, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5131, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5132, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5133, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5134, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5135, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5136, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5137, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5138, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5139, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5140, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5141, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5142, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5143, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5144, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5145, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5146, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5147, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5148, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5149, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5150, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5151, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5152, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5153, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5154, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5155, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5156, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5157, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5158, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5159, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5160, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5161, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5162, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5163, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5164, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5165, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5166, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5167, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5168, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5169, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5170, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5171, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5172, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5173, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5174, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5175, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5176, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5177, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5178, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5179, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5180, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5181, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5182, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5183, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5184, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5185, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5186, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5187, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5188, 5100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5189, 5100, 'Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5190, 5, 'Energiestoffe (Fertigung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5191, 5190, 'Energiestoffe (Fertigung) 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5192, 5190, 'Energiestoffe (Fertigung) 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5193, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5194, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5195, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5196, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5197, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5198, 5190, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5200, 5, 'Wareneingang'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5300, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5301, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5302, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5303, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5304, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5305, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5306, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5307, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5308, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5309, 5200, 'Wareneingang Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5310, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5311, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5312, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5313, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5314, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5315, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5316, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5317, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5318, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5319, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5320, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5321, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5322, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5323, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5324, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5325, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5326, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5327, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5328, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5329, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5330, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5331, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5332, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5333, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5334, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5335, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5336, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5337, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5338, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5339, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5340, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5341, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5342, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5343, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5344, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5345, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5346, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5347, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5348, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5349, 5200, 'Wareneingang ohne Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5400, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5401, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5402, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5403, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5404, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5405, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5406, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5407, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5408, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5409, 5200, 'Wareneingang 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5410, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5411, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5412, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5413, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5414, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5415, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5416, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5417, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5418, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5419, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5420, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5421, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5422, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5423, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5424, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5425, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5426, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5427, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5428, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5429, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5430, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5431, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5432, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5433, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5434, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5435, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5436, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5437, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5438, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5439, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5440, 5200, 'Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatz-Identifikationsnummer 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5441, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5442, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5443, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5444, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5445, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5446, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5447, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5448, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5449, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5500, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5501, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5502, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5503, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5504, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5505, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5506, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5507, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5508, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5509, 5200, 'Wareneingang 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5510, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5511, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5512, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5513, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5514, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5515, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5516, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5517, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5518, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5519, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5520, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5521, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5522, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5523, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5524, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5525, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5526, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5527, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5528, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5529, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5530, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5531, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5532, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5533, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5534, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5535, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5536, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5537, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5538, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5539, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5540, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5541, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5542, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5543, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5544, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5545, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5546, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5547, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5548, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5549, 5200, 'Wareneingang 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5550, 5200, 'Steuerfreier innergemeinschaftlicher Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5551, 5200, 'Wareneingang im Drittland steuerbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5552, 5200, 'Erwerb 1. Abnehmer innerhalb eines Dreiecksgeschäftes'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5553, 5200, 'Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5554, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5555, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5556, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5557, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5558, 5200, 'Wareneingang im anderen EU-Land steuerbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5559, 5200, 'Steuerfreie Einfuhren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5560, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5561, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5562, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5563, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5564, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5565, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5566, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5567, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5568, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5569, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5600, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5601, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5602, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5603, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5604, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5605, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5606, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5607, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5608, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5609, 5200, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5610, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5611, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5612, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5613, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5614, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5615, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5616, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5617, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5618, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5619, 5200, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5650, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5651, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5652, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5653, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5654, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5655, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5656, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5657, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5658, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5659, 5200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5660, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5661, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5662, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5663, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5664, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5665, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5666, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5667, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5668, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5669, 5200, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5700, 5200, 'Nachlässe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5701, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5710, 5700, 'Nachlässe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5711, 5700, 'Nachlässe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5712, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5713, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5714, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5715, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5716, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5717, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5718, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5719, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5720, 5700, 'Nachlässe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5722, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5723, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5724, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5725, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5726, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5727, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5728, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5729, 5700, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5730, 5200, 'Erhaltene Skonti'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5731, 5730, 'Erhaltene Skonti 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5732, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5733, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5734, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5735, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5736, 5730, 'Erhaltene Skonti 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5737, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5738, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5739, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5740, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5741, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5742, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5743, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5744, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5745, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5746, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5747, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5748, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5749, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5750, 5769, 'Erhaltene Boni 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5751, 5769, 'Erhaltene Boni 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5752, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5753, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5754, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5755, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5756, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5757, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5758, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5759, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5760, 5769, 'Erhaltene Boni 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5761, 5769, 'Erhaltene Boni 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5762, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5763, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5764, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5765, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5766, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5767, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5768, 5769, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5769, 5200, 'Erhaltene Boni'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5770, 5200, 'Erhaltene Rabatte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5780, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5781, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5782, 5770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5783, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5784, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5785, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5786, 5770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5787, 5770, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5788, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5789, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5790, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5791, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5792, 5730, 'Erhaltene Skonti aus Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5793, 5730, 'Erhaltene Skonti aus Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäfte 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5794, 5730, 'Erhaltene Skonti 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5795, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5796, 5730, 'Erhaltene Skonti 10,7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5797, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5798, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5799, 5730, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5800, 5, 'Bezugsnebenkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5820, 5, 'Leergut'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5840, 5, 'Zölle und Einfuhrabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5860, 5, 'Verrechnete Stoffkosten (Gegenkonto 5000-99)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5880, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe sowie bezogene Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5881, 5, 'Bestandsveränderungen Waren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5885, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5900, 5, 'Fremdleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5906, 5900, 'Fremdleistungen 19 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5907, 5900, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5908, 5900, 'Fremdleistungen 7 % Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5909, 5900, 'Fremdleistungen ohne Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5910, 5, 'Bauleistungen eine im Inland ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5911, 5910, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5912, 5910, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5913, 5, 'Sonstige Leistungen eines im andere EU-Land ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5914, 5913, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5915, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 7 % Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5916, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5917, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5918, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5919, 5915, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5920, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5921, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5922, 5921, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5923, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5924, 5923, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5925, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5926, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5927, 5926, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5928, 5926, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5829, 5926, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5930, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5931, 5930, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5932, 5930, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5933, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5934, 5933, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5935, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5936, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5937, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5938, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5939, 5935, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5940, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5941, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5942, 5941, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5943, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5944, 5943, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5945, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5946, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5947, 5946, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5948, 5946, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5949, 5946, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5950, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5951, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19 % Vorsteuer und 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5952, 5951, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5953, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5954, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer, mit 19 % Umsatzsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5955, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5956, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5957, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5958, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5959, 5954, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5960, 5, 'Leistungen nach § 13b UStG mit Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5965, 5, 'Leistungen nach § 13b UStG ohne Vorsteuerabzug'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5970, 5, 'Fremdleistungen (Miet- und Pachtzinsen bewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5975, 5, 'Fremdleistungen (Miet- und Pachtzinsen unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5980, 5, 'Fremdleistungen (Entgelte für Rechte und Lizenzen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5985, 5, 'Fremdleistungen (Vergütungen für die Überlassung von Wirtschaftsgütern – mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 6, 6, 'Betriebliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6000, 6, 'Löhne und Gehälter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6010, 6000, 'Löhne'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6020, 6000, 'Gehälter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6024, 6000, 'Geschäftsführergehälter der GmbH-Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6026, 6000, 'Tantiemen Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6027, 6000, 'Geschäftsführergehälter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6028, 6000, 'Vergütung an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6029, 6000, 'Tantiemen Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6030, 6000, 'Aushilfslöhne'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6035, 6000, 'Löhne für Minijobs'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6036, 6000, 'Pauschale Steuern für Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6037, 6000, 'Pauschale Steuern für Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6038, 6000, 'Pauschale Steuern für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6039, 6000, 'Pauschale Steuern für Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6040, 6000, 'Pauschale Steuer für Aushilfen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6045, 6000, 'Bedienungsgelder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6050, 6000, 'Ehegattengehalt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6060, 6000, 'Freiwillige soziale Aufwendungen, lohnsteuerpflichtig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6066, 6000, 'Freiwillige Zuwendungen an Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6067, 6000, 'Freiwillige Zuwendungen an Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6068, 6000, 'Freiwillige Zuwendungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6069, 6000, 'Pauschale Steuer auf sonstige Bezüge (z. B. Fahrtkostenzuschüsse)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6070, 6000, 'Krankengeldzuschüsse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6071, 6000, 'Sachzuwendungen und Dienstleistungen an Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6072, 6000, 'Sachzuwendungen und Dienstleistungen an Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6073, 6000, 'Sachzuwendungen und Dienstleistungen an Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6074, 6000, 'Sachzuwendungen und Dienstleistungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6075, 6000, 'Zuschüsse der Agenturen für Arbeit (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6076, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6077, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6078, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6079, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6080, 6000, 'Vermögenswirksame Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6090, 6000, 'Fahrtkostenerstattung Wohnung/Arbeitsstätte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6100, 6, 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6110, 6100, 'Gesetzliche soziale Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6118, 6100, 'Gesetzliche soziale Aufwendungen für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6120, 6100, 'Beiträge zur Berufsgenossenschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6130, 6100, 'Freiwillige soziale Aufwendungen, lohnsteuerfrei'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6140, 6100, 'Aufwendungen für Altersversorgung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6147, 6100, 'Pauschale Steuer auf sonstige Bezüge (z. B. Direktversicherungen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6148, 6100, 'Aufwendungen für Altersversorgung für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6149, 6100, 'Aufwendungen für Altersversorgung für Gesellschafter-Geschäftsführer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6150, 6100, 'Versorgungskasse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6160, 6100, 'Aufwendungen für Unterstützung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6170, 6100, 'Sonstige soziale Abgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6171, 6100, 'Soziale Abgaben für Minijobber'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6200, 6, 'Abschreibungen auf immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6201, 6, 'Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6205, 6, 'Abschreibungen auf den Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6209, 6, 'Außerplanmäßige Abschreibungen auf den Geschäfts- oder Firmenwert'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6210, 6, 'Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6211, 6, 'Außerplanmäßige Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6220, 6, 'Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6221, 6, 'Abschreibungen auf Gebäude'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6222, 6, 'Abschreibungen auf Kfz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6223, 6, 'Abschreibungen auf Gebäudeteil des häuslichen Arbeitszimmers'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6230, 6, 'Außerplanmäßige Abschreibungen auf Sachanlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6231, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6232, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6233, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6240, 6, 'Abschreibungen auf Sachanlagen auf Grund steuerlicher Sondervorschriften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6241, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (ohne Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6242, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (für Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6243, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (ohne Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6244, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (für Kfz)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6250, 6, 'Kaufleasing'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6260, 6, 'Sofortabschreibungen geringwertiger Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6262, 6, 'Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6264, 6, 'Abschreibungen auf den Sammelposten Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6266, 6, 'Außerplanmäßige Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6268, 6266, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6270, 6, 'Abschreibungen auf sonstige Vermögensgegenstände des Umlaufvermögens (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6272, 6, 'Abschreibungen auf Umlaufvermögen, steuerrechtlich bedingt (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6278, 6, 'Abschreibungen auf Roh-, Hilfs- und Betriebsstoffe/Waren (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6279, 6, 'Abschreibungen auf fertige und unfertige Erzeugnisse (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6280, 6, 'Forderungsverluste (soweit unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6281, 6, 'Forderungsverluste 7 % USt (sowie unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6282, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6283, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6284, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6285, 6281, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6286, 6, 'Forderungsverluste 19 % USt (sowie unüblich hoch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6287, 6286, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6288, 6286, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6290, 6, 'Abschreibungen auf Forderungen gegenüber Kapitalgesellschaften, an denen eine Beteiligung besteht (soweit unüblich hoch), § 3c EstG/ § 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6291, 6, 'Abschreibungen auf Forderungen gegenüber Gesellschaftern und nahe stehenden Personen (soweit unüblich hoch), § 8b Abs. 3 StG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6300, 6, 'Sonstige betriebliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6302, 6, 'Interimskonto für Aufwendungen in einem anderen Land, bei denen eine Vorsteuervergütung möglich ist'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6303, 6, 'Fremdleistungen/Fremdarbeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6304, 6, 'Sonstige Aufwendungen betrieblich und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6305, 6, 'Raumkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6310, 6, 'Miete (unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6312, 6, 'Miete/Aufwendungen für doppelte Haushaltsführung Unternehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6313, 6, 'Vergütung an Gesellschafter für die miet- oder pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6314, 6, 'Vergütung an Mitunternehmer für die mietweise Überassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6315, 6, 'Pacht (unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6316, 6, 'Leasing (unbewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6317, 6, 'Aufwendungen für gemietete oder gepachtete unbewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6318, 6, 'Miet- und Pachtnebenkosten, die gewerbesteuerlich nicht hinzuzurechnen sind'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6319, 6, 'Vergütung an Mitunternehmer für die pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6320, 6, 'Heizung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6325, 6, 'Gas, Strom, Wasser'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6330, 6, 'Reinigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6335, 6, 'Instandhaltung betrieblicher Räume'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6340, 6, 'Abgaben für betrieblich genutzten Grundbesitz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6345, 6, 'Sonstige Raumkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6348, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6349, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6350, 6, 'Grundstücksaufwendungen, betrieblich'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6352, 6, 'Sonstige Grundstücksaufwendungen (neutral)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6390, 6, 'Zuwendungen, Spenden, steuerlich nicht abziehbar'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6391, 6, 'Zuwendungen, Spenden für wissenschaftliche und kulturelle Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6392, 6, 'Zuwendungen, Spenden für mildtätige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6393, 6, 'Zuwendungen, Spenden für kirchliche, religiöse und gemeinnützige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6394, 6, 'Zuwendungen, Spenden an politische Parteien'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6395, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für gemeinnützige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6396, 6395, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6397, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für kirchliche, religiöse und gemeinnützige Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6398, 6, 'Zuwendungen, Spenden an Stiftungen in das zu erhaltene Vermögen (Vermögensstock) einer Stiftung für wissenschaftliche, mildtätige, kulturelle Zwecke'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6400, 6, 'Versicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6405, 6, 'Versicherungen für Gebäude'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6410, 6, 'Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6420, 6, 'Beiträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6430, 6, 'Sonstige Abgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6436, 6, 'Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6437, 6, 'Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6440, 6, 'Ausgleichsabgabe i. S d. Schwerbehindertengesetzes'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6450, 6, 'Reparaturen und Instandhaltung von Bauten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6460, 6, 'Reparaturen und Instandhaltung von technischen Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6470, 6, 'Reparaturen und Instandhaltung von anderen Anlagen und Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6475, 6, 'Zuführung zu Aufwandsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6485, 6, 'Reparaturen und Instandhaltung von anderen Anlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6490, 6, 'Sonstige Reparaturen und Instandhaltung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6495, 6, 'Wartungskosten für Hard- und Software'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6498, 6, 'Mietleasing beweglicher Wirtschaftsgüter für technische Anlagen und Maschinen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6500, 6, 'Fahrzeugkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6520, 6, 'Kfz-Versicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6530, 6, 'Laufende Kfz-Betriebskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6540, 6, 'Kfz-Reparaturen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6550, 6, 'Garagenmiete'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6560, 6, 'Mietleasing Kfz'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6570, 6, 'Sonstige Kfz-Kosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6580, 6, 'Mautgebühren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6590, 6, 'Kfz-Kosten für betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6595, 6, 'Fremdfahrzeugkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6600, 6, 'Werbekosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6605, 6, 'Streuartikel'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6610, 6, 'Geschenke abzugsfähig ohne § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6611, 6, 'Geschenke abzugsfähig mit § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6612, 6, 'Pauschale Steuern für Geschenke und Zugaben abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6620, 6, 'Geschenke nicht abzugsfähig ohne § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6621, 6, 'Geschenke nicht abzugsfähig mit § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6622, 6, 'Pauschale Steuern für Geschenke und Zuwendungen nicht abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6625, 6, 'Geschenke ausschließlich betrieblich genutzt'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6629, 6, 'Zugaben mit § 37b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6630, 6, 'Repräsentationskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6640, 6, 'Bewirtungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6641, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6642, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6643, 6, 'Aufmerksamkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6644, 6, 'Nicht abzugsfähige Bewirtungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6645, 6, 'Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6650, 6, 'Reisekosten Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6660, 6, 'Reisekosten Arbeitnehmer Übernachtungsaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6663, 6, 'Reisekosten Arbeitnehmer Fahrtkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6664, 6, 'Reisekosten Arbeitnehmer Verpflegungsmehraufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6665, 6664, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6668, 6, 'Kilometergelderstattung Arbeitnehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6670, 6, 'Reisekosten Unternehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6672, 6, 'Reisekosten Unternehmer (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6673, 6, 'Reisekosten Unternehmer Fahrtkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6674, 6, 'Reisekosten Unternehmer Verpflegungsmehraufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6680, 6, 'Reisekosten Unternehmer Übernachtungsaufwand und Reisenebenkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6685, 6680, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6686, 6680, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6688, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6689, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (nicht abziehbarer Anteil)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6690, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6691, 6, 'Verpflegungsmehraufwenungen im Rahmen der doppelten Haushaltsführung Unternehmer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6700, 6, 'Kosten der Warenabgabe'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6710, 6, 'Verpackungsmaterial'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6740, 6, 'Ausgangsfrachten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6760, 6, 'Transportversicherungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6770, 6, 'Verkaufsprovision'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6780, 6, 'Fremdarbeiten (Vertrieb)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6790, 6, 'Aufwand für Gewährleistung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6800, 6, 'Porto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6805, 6, 'Telefon'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6810, 6, 'Telefax und Internetkosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6815, 6, 'Bürobedarf'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6820, 6, 'Zeitschriften, Bücher (Fachliteratur)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6821, 6, 'Fortbildungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6822, 6, 'Freiwillige Sozialleistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6823, 6, 'Vergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6824, 6, 'Haftungsvergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6825, 6, 'Rechts- und Beratungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6827, 6, 'Abschluss- und Prüfungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6830, 6, 'Buchführungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6833, 6, 'Vergütungen an Gesellschafter für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6834, 6, 'Vergütungen an Mitunternehmer für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6835, 6, 'Mieten für Einrichtungen (bewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6836, 6, 'Pacht (bewegliche Wirtschaftsgüter)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6837, 6, 'Aufwendungen für die zeitlich befristete Überlassung von Rechten (Lizenzen, Konzessionen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6838, 6, 'Aufwendungen für gemietete oder gepachtete bewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6840, 6, 'Mietleasing beweglicher Wirtschaftsgüter für Betriebs- und Geschäftsausstattung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6845, 6, 'Werkzeuge und Kleingeräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6850, 6, 'Sonstiger Betriebsbedarf'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6854, 6, 'Genossenschaftliche Rückvergütung an Mitglieder'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6855, 6, 'Nebenkosten des Geldverkehrs'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6856, 6, 'Aufwendungen aus Anteilen an Kapitalgesellschaften §§ 3Nr. 40, 3c EStG/§ 8b Abs. 1 und 4 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6857, 6, 'Veräußerungskosten § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6859, 6, 'Aufwendungen für Abraum- und Abfallbeseitigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6860, 6, 'Nicht abziehbare Vorsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6865, 6, 'Nicht abziehbare Vorsteuer 7 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6871, 6, 'Nicht abziehbare Vorsteuer 19 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6875, 6, 'Nicht abziehbare Vorsteuer der Aufsichtsratsvergütungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6876, 6, 'Abziehbare Aufsichtsratsvergütungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6880, 6, 'Aufwendungen aus der Währungsumrechnung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6881, 6, 'Aufwendungen aus der Währungsumrechnung (nicht § 256a HGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6883, 6, 'Aufwendungen aus Bewertung Finanzmittelfonds'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6884, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6885, 6, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6886, 6885, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6887, 6885, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6888, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6889, 6, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6890, 6, 'Erlöse aus Verkäufen immaterieller Vermögensgegenstände (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6891, 6, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6892, 6, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6895, 6, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6896, 6, 'Anlagenabgänge immaterielle Vermögensgengenstände (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6897, 6, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6898, 6, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (Restbuchwert bei Buchverlust)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6900, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6903, 6, 'Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6905, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens außer Vorräte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6906, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6907, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6908, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG nach § 4 Abs. 3 Satz 4 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6910, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6912, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens, steuerrechtlich bedingt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6918, 6, 'Aufwendungen aus dem Erwerb eigener Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6920, 6, 'Einstellung in die Pauschalwertberechtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6922, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6923, 6, 'Einstellung in die Einzelwertberichtigung auf Forderungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6924, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 10 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6927, 6, 'Einstellung in steuerliche Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6928, 6, 'Einstellung in die Rücklage für Ersatzbeschaffung nach R 6.6 EstR'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6929, 6, 'Einstellungen in die steuerliche Rücklage nach § 4g EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6930, 6, 'Forderungsverluste (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6931, 6, 'Forderungsverluste 7 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6932, 6, 'Forderungsverluste aus steuerfreien EU-Lieferungen (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6933, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6934, 6933, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6935, 6933, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6936, 6, 'Forderungsverluste 19 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6937, 6936, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6938, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt (übliche Höhe)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6939, 6938, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6960, 6, 'Periodenfremde Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6967, 6, 'Sonstige Aufwendungen betriebsfremd und regelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6968, 6, 'Sonstige nicht abziehbare Ausfwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6969, 6, 'Sonstige Aufwendungen unregelmäßig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6970, 6, 'Kalkulatorischer Unternehmerlohn'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6972, 6, 'Kalkulatorische Miete/Pacht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6974, 6, 'Kalkulatorische Zinsen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6976, 6, 'Kalkulatorische Abschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6978, 6, 'Kalkulatorische Wagnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6979, 6, 'Kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6980, 6, 'Verrechneter kalkulatorischer Unternehmerlohn'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6982, 6, 'Verrechnete kalkulatorische Miete/Pacht'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6984, 6, 'Verrechnete kalkulatorische Zinsen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6986, 6, 'Verrechnete kalkulatorische Abschreibungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6988, 6, 'Verrechnete kalkulatorische Wagnisse'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6989, 6, 'Verrechneter kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6990, 6, 'Herstellungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6992, 6, 'Verwaltungskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6994, 6, 'Vertriebskosten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6999, 6, 'Gegenkonto 6990-6998'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Weitere Erträge und Aufwendungen', 7, 7, 'Weitere Erträge und Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7000, 7, 'Erträge aus Beteiligungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7004, 7000, 'Erträge aus Beteiligungen an Personengesellschaften (verbundene Unternehmen), § 9 GewStG bzw. § 18 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7005, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung) § 3 Nr. 40 EStG/§ 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7006, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7008, 7000, 'Gewinnanteile aus gewerblichen und selbstständigen Mitunternehmerschaften, § 9 GewStG bzw. § 18 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7009, 7000, 'Erträge aus Beteiligungen an verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7010, 7, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7011, 7010, 'Erträge aus Ausleihungen des Finanzanlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7012, 7100, 'Erträge aus Ausleihungen des Finanzanlagevermögens an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7013, 7100, 'Erträge aus Anteilen an Personengesellschaften (Finanzanlagevermögen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7014, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7015, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7016, 7100, 'Erträge aus Anteilen an Personengesellschaften (verbundene Unternehmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7017, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Kapitalgesellschaften (verbunden Unternehmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7018, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Personengesellschaften (verbundene Unternehmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7019, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7020, 7100, 'Zins- und Dividendenerträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7030, 7100, 'Erhaltene Ausgleichszahlungen (als außenstehender Aktionär)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7100, 7, 'Sonstige Zinsen und ähnliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7102, 7100, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7103, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7104, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7105, 7100, 'ZINSERTräge § 233a AO, steuerpflichtig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7106, 7100, 'ZINSERTräge § 233a AO, steuerfrei (Anlage A KSt)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7107, 7100, 'ZINSERTräge § 233a AO, § 4 Abs. 5b EStG, steuerfrei'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7109, 7100, 'Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7110, 7100, 'Sonstige ZINSERTräge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7115, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Umlaufvermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7119, 7100, 'Sonstige ZINSERTräge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7120, 7100, 'Zinsähnliche Erträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7128, 7100, 'ZINSERTrag aus vorzeitiger Rückzahlung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7129, 7100, 'Zinsähnliche Erträge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7130, 7100, 'Diskonterträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7139, 7100, 'Diskonterträge aus verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7140, 7100, 'Steuerfreie ZINSERTräge aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7141, 7100, 'ZINSERTräge aus der Abzinsung von Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7142, 7100, 'ZINSERTräge aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7143, 7100, 'ZINSERTräge aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7144, 7100, 'ZINSERTräge aus Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7145, 7100, 'Erträge aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7190, 7, 'Erträge aus Verlustübernahme'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7192, 7, 'Erhaltene Gewinne auf Grund einer Gewinngemeinschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7194, 7, 'Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7200, 7, 'Abschreibungen auf Finanzanlagen (dauerhaft)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7201, 7, 'Abschreibungen auf Finanzanlagen (nicht dauerhaft)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7204, 7, 'Abschreibungen auf Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (dauerhaft)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7207, 7, 'Abschreibungen auf Finanzanlagen – verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7208, 7, 'Aufwendungen auf Grund von Verlustanteilen an gewerbliche und selbständigen Mitunternehmerschaften, § 8 GewStG bzw. § 18 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7210, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7214, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7217, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens – verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7250, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7255, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage, § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7300, 7, 'Zinsen und ähnliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7302, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7303, 7300, 'Steuerlich abzugsfähige andere Nebenleistungen zu Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7304, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7305, 7300, 'Zinsaufwendungen § 233a AO abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7306, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO nicht abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7307, 7300, 'Zinsen aus Abzinsung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7308, 7300, 'Zinsaufwendungen § 233a AO nicht abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7309, 7300, 'Zinsaufwendungen an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7310, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7311, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7313, 7300, 'Nicht abzugsfähige Schuldzinsen gemäß § 4Abs. 4A EStG (Hinzurechnungsbetrag)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7316, 7300, 'Zinsen für Gesellschafterdarlehen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7317, 7300, 'Zinsen an Gesellschafter mit einer Beteiligung von mehr als 25 % bzw. diesen nahe stehende Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7318, 7300, 'Zinsen auf Kontokorrentkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7319, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7320, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7323, 7300, 'Abschreibungen auf Disagio zur Finanzierung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7324, 7300, 'Abschreibungen auf Disagio zur Finanzierung des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7325, 7300, 'Zinsaufwendungen für Gebäude, die zum Betriebsvermögen gehören'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7326, 7300, 'Zinsen zur Finanzierung des Anlagevermögens'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7327, 7300, 'Renten und dauernde Lasten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7328, 7300, 'Zinsaufwendungen für Kapitalüberlassung durch Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7329, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7330, 7300, 'Zinsähnliche Aufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7339, 7300, 'Zinsähnliche Aufwendungen an verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7340, 7300, 'Diskontaufwendungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7349, 7300, 'Diskontaufwendungen an verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7350, 7300, 'Zinsen und ähnliche Aufwendungen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7351, 7300, 'Zinsen und ähnliche Aufwendungen an verbundene Unternehmen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7355, 7300, 'Kreditprovisionen und Verwaltungskostenbeiträge'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7360, 7300, 'Zinsanteil der Zuführung zu Pensionsrückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7361, 7300, 'Zinsaufwendungen aus der Abzinsung von Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7362, 7300, 'Zinsaufwendungen aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7363, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7364, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7365, 7300, 'Aufwendungen aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7366, 7300, 'Steuerlich nicht abzugsfähige Zinsaufwendungen aus der Abzinsung von Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7390, 7, 'Aufwendungen aus Verlustübernahme'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7392, 7, 'Abgeführte Gewinne auf Grund einer Gewinngemeinschaft'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7394, 7, 'Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7399, 7, 'Abgeführte Gewinnanteile (Soll)/ausgeglichene Verlustanteile (Haben) bei stiller Gesellschaft § 8 GesStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7400, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7401, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7450, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7451, 7, 'Erträge durch Verschmelzung und Umwandlung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7454, 7, 'Gewinn aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7460, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7461, 7460, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7462, 7460, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7463, 7460, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7464, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften (latente Steuern)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7500, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7501, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7550, 7, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7551, 7, 'Verluste durch Verschmelzung und Umwandlung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7552, 7, 'Verluste durch außergewöhnliche Schadensfälle'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7553, 7, 'Aufwendungen für Restrukturierungs- und Sanierungsmaßnahmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7554, 7, 'Verluste aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten nach Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7560, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7561, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Pensionsrückstellungen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7562, 7561, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7563, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Latente Steuern)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7600, 7, 'Körperschaftsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7603, 7, 'Körperschaftsteuer für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7604, 7, 'Körperschaftsteuererstattungen für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7607, 7, 'Solidaritätszuschlagerstattungen für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag für Vorjahre'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7610, 7, 'Gewerbesteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7630, 7, 'Kapitalertragsteuer 25 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7633, 7, 'Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25 %'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7638, 7, 'Ausländische Steuer auf im Inland steuerfrei DBA-Einkünfte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7639, 7, 'Anrechnung / Abzug ausländischer Quellensteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7640, 7639, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7641, 7, 'Gewerbesteuernachtzahlungen und Gewerbesteuererstattungen für Vorjahre, § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7642, 7641, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7643, 7, 'Erträge aus der Auflösung von Gewerbesteuerrückstellungen, § 4 Abs. 5b EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7644, 7643, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7645, 7, 'Aufwendungen aus der Zuführung und Auflösung von latenten Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7646, 7, 'Aufwendungen aus der Zuführung zu Steuerrückstellungen für Steuerstundung (BstBK)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7648, 7, 'Erträge aus der Auflösung von Steuerrückstellungen für Steuerstundung (BstBK)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7649, 7, 'Erträge aus der Zuführung und Auflösung von latenten Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7650, 7, 'Sonstige Betriebssteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7675, 7, 'Verbrauchssteuer (sonstige Steuern)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7678, 7, 'Ökosteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7680, 7, 'Grundsteuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7685, 7, 'Kfz-Steuer'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7690, 7, 'Steuernachzahlungen Vorjahre für sonstige Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7692, 7, 'Steuererstattungen Vorjahre für sonstige Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7694, 7, 'Erträge aus der Auflösung von Rückstellungen für sonstige Steuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7700, 7, 'Gewinnvortrag nach Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7705, 7700, 'Gewinnvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7720, 7, 'Verlustvortrag nach Verwendung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7725, 7720, 'Verlustvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7730, 7, 'Entnahmen aus der Kapitalrücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7735, 7, 'Entnahmen aus der gesetzlichen Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7740, 7, 'Entnahmen aus dem Ausgleichsposten für aktivierte eigene Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7743, 7, 'Entnahmen aus der Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7744, 7, 'Entnahmen aus anderen Ergebnisrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7745, 7, 'Entnahmen aus satzungsmäßigen Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7750, 7, 'Entnahmen aus anderen Gewinnrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7751, 7750, 'Entnahmen aus gesamthänderisch gebundenen Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7755, 7, 'Erträge aus Kapitalherabsetzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7760, 7, 'Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7765, 7, 'Einstellungen in die gesetzliche Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7770, 7, 'Einstellungen in den Ausgleichsposten für aktivierte eigen Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7773, 7, 'Einstellungen in die Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7775, 7, 'Einstellungen in satzungsmäßige Rücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7780, 7, 'Einstellungen in andere Gewinnrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7781, 7780, 'Einstellungen in gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7785, 7, 'Einstellungen in andere Ergebnisrücklagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7790, 7, 'Vorabausschüttungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7795, 7, 'Vortrag auf neue Rechnung (GuV)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7800, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7801, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7802, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7803, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7804, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7805, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7806, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7807, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7808, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7809, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7810, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7811, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7812, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7813, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7814, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7815, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7816, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7817, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7818, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7819, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7820, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7821, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7822, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7823, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7824, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7825, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7826, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7827, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7828, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7829, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7830, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7831, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7832, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7833, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7834, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7835, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7836, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7837, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7838, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7839, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7840, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7841, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7842, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7843, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7844, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7845, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7846, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7847, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7848, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7849, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7850, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7851, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7852, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7853, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7854, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7855, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7856, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7857, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7858, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7859, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7860, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7861, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7862, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7863, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7864, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7865, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7866, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7867, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7868, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7869, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7870, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7871, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7872, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7873, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7874, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7875, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7876, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7877, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7878, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7879, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7880, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7881, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7882, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7883, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7884, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7885, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7886, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7887, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7888, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7889, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7890, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7891, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7892, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7893, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7894, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7895, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7896, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7897, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7898, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7899, 7, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7900, 7, '(reserviertes Konto)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8000, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8001, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8002, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8003, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8004, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8005, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8006, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8007, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8008, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8009, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8010, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8011, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8012, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8013, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8014, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8015, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8016, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8017, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8018, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8019, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8020, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8021, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8022, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8023, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8024, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8025, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8026, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8027, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8028, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8029, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8030, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8031, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8032, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8033, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8034, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8035, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8036, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8037, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8038, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8039, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8040, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8041, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8042, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8043, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8044, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8045, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8046, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8047, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8048, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8049, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8050, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8051, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8052, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8053, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8054, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8055, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8056, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8057, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8058, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8059, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8060, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8061, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8062, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8063, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8064, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8065, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8066, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8067, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8068, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8069, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8070, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8071, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8072, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8073, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8074, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8075, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8076, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8077, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8078, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8079, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8080, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8081, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8082, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8083, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8084, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8085, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8086, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8087, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8088, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8089, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8090, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8091, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8092, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8093, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8094, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8095, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8096, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8097, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8098, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8099, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8100, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8101, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8102, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8103, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8104, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8105, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8106, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8107, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8108, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8109, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8110, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8111, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8112, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8113, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8114, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8115, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8116, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8117, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8118, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8119, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8120, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8121, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8122, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8123, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8124, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8125, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8126, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8127, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8128, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8129, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8130, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8131, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8132, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8133, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8134, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8135, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8136, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8137, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8138, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8139, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8140, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8141, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8142, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8143, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8144, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8145, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8146, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8147, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8148, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8149, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8150, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8151, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8152, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8153, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8154, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8155, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8156, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8157, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8158, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8159, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8160, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8161, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8162, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8163, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8164, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8165, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8166, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8167, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8168, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8169, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8170, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8171, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8172, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8173, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8174, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8175, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8176, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8177, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8178, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8179, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8180, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8181, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8182, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8183, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8184, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8185, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8186, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8187, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8188, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8189, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8190, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8191, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8192, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8193, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8194, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8195, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8196, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8197, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8198, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8199, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8200, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8201, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8202, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8203, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8204, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8205, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8206, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8207, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8208, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8209, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8210, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8211, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8212, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8213, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8214, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8215, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8216, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8217, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8218, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8219, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8220, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8221, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8222, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8223, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8224, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8225, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8226, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8227, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8228, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8229, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8230, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8231, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8232, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8233, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8234, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8235, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8236, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8237, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8238, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8239, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8240, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8241, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8242, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8243, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8244, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8245, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8246, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8247, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8248, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8249, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8250, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8251, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8252, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8253, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8254, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8255, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8256, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8257, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8258, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8259, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8260, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8261, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8262, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8263, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8264, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8265, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8266, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8267, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8268, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8269, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8270, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8271, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8272, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8273, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8274, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8275, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8276, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8277, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8278, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8279, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8280, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8281, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8282, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8283, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8284, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8285, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8286, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8287, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8288, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8289, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8290, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8291, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8292, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8293, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8294, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8295, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8296, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8297, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8298, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8299, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8300, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8301, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8302, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8303, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8304, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8305, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8306, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8307, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8308, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8309, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8310, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8311, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8312, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8313, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8314, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8315, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8316, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8317, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8318, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8319, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8320, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8321, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8322, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8323, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8324, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8325, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8326, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8327, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8328, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8329, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8330, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8331, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8332, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8333, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8334, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8335, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8336, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8337, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8338, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8339, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8340, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8341, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8342, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8343, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8344, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8345, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8346, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8347, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8348, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8349, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8350, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8351, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8352, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8353, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8354, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8355, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8356, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8357, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8358, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8359, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8360, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8361, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8362, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8363, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8364, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8365, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8366, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8367, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8368, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8369, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8370, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8371, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8372, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8373, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8374, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8375, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8376, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8377, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8378, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8379, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8380, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8381, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8382, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8383, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8384, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8385, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8386, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8387, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8388, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8389, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8390, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8391, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8392, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8393, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8394, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8395, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8396, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8397, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8398, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8399, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8400, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8401, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8402, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8403, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8404, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8405, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8406, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8407, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8408, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8409, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8410, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8411, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8412, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8413, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8414, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8415, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8416, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8417, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8418, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8419, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8420, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8421, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8422, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8423, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8424, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8425, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8426, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8427, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8428, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8429, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8430, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8431, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8432, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8433, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8434, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8435, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8436, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8437, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8438, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8439, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8440, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8441, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8442, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8443, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8444, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8445, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8446, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8447, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8448, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8449, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8450, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8451, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8452, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8453, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8454, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8455, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8456, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8457, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8458, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8459, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8460, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8461, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8462, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8463, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8464, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8465, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8466, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8467, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8468, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8469, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8470, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8471, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8472, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8473, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8474, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8475, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8476, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8477, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8478, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8479, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8480, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8481, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8482, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8483, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8484, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8485, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8486, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8487, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8488, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8489, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8490, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8491, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8492, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8493, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8494, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8495, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8496, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8497, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8498, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8499, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8500, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8501, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8502, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8503, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8504, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8505, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8506, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8507, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8508, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8509, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8510, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8511, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8512, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8513, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8514, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8515, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8516, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8517, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8518, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8519, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8520, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8521, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8522, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8523, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8524, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8525, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8526, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8527, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8528, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8529, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8530, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8531, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8532, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8533, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8534, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8535, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8536, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8537, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8538, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8539, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8540, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8541, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8542, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8543, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8544, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8545, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8546, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8547, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8548, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8549, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8550, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8551, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8552, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8553, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8554, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8555, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8556, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8557, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8558, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8559, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8560, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8561, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8562, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8563, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8564, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8565, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8566, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8567, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8568, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8569, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8570, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8571, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8572, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8573, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8574, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8575, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8576, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8577, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8578, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8579, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8580, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8581, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8582, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8583, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8584, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8585, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8586, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8587, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8588, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8589, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8590, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8591, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8592, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8593, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8594, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8595, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8596, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8597, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8598, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8599, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8600, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8601, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8602, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8603, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8604, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8605, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8606, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8607, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8608, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8609, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8610, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8611, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8612, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8613, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8614, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8615, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8616, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8617, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8618, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8619, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8620, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8621, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8622, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8623, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8624, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8625, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8626, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8627, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8628, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8629, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8630, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8631, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8632, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8633, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8634, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8635, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8636, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8637, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8638, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8639, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8640, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8641, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8642, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8643, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8644, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8645, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8646, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8647, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8648, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8649, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8650, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8651, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8652, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8653, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8654, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8655, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8656, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8657, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8658, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8659, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8660, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8661, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8662, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8663, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8664, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8665, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8666, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8667, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8668, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8669, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8670, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8671, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8672, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8673, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8674, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8675, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8676, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8677, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8678, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8679, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8680, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8681, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8682, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8683, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8684, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8685, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8686, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8687, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8688, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8689, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8690, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8691, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8692, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8693, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8694, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8695, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8696, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8697, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8698, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8699, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8700, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8701, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8702, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8703, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8704, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8705, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8706, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8707, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8708, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8709, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8710, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8711, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8712, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8713, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8714, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8715, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8716, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8717, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8718, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8719, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8720, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8721, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8722, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8723, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8724, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8725, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8726, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8727, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8728, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8729, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8730, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8731, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8732, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8733, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8734, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8735, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8736, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8737, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8738, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8739, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8740, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8741, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8742, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8743, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8744, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8745, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8746, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8747, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8748, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8749, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8750, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8751, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8752, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8753, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8754, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8755, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8756, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8757, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8758, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8759, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8760, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8761, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8762, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8763, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8764, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8765, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8766, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8767, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8768, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8769, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8770, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8771, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8772, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8773, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8774, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8775, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8776, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8777, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8778, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8779, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8780, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8781, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8782, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8783, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8784, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8785, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8786, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8787, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8788, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8789, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8790, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8791, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8792, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8793, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8794, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8795, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8796, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8797, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8798, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8799, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8800, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8801, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8802, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8803, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8804, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8805, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8806, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8807, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8808, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8809, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8810, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8811, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8812, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8813, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8814, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8815, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8816, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8817, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8818, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8819, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8820, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8821, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8822, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8823, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8824, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8825, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8826, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8827, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8828, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8829, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8830, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8831, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8832, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8833, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8834, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8835, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8836, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8837, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8838, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8839, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8840, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8841, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8842, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8843, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8844, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8845, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8846, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8847, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8848, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8849, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8850, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8851, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8852, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8853, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8854, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8855, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8856, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8857, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8858, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8859, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8860, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8861, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8862, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8863, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8864, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8865, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8866, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8867, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8868, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8869, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8870, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8871, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8872, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8873, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8874, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8875, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8876, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8877, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8878, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8879, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8880, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8881, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8882, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8883, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8884, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8885, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8886, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8887, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8888, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8889, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8890, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8891, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8892, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8893, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8894, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8895, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8896, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8897, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8898, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8899, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8900, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8901, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8902, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8903, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8904, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8905, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8906, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8907, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8908, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8909, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8910, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8911, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8912, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8913, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8914, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8915, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8916, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8917, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8918, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8919, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8920, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8921, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8922, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8923, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8924, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8925, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8926, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8927, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8928, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8929, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8930, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8931, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8932, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8933, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8934, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8935, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8936, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8937, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8938, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8939, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8940, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8941, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8942, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8943, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8944, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8945, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8946, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8947, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8948, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8949, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8950, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8951, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8952, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8953, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8954, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8955, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8956, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8957, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8958, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8959, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8960, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8961, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8962, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8963, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8964, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8965, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8966, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8967, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8968, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8969, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8970, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8971, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8972, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8973, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8974, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8975, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8976, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8977, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8978, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8979, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8980, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8981, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8982, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8983, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8984, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8985, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8986, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8987, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8988, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8989, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8990, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8991, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8992, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8993, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8994, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8995, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8996, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8997, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8998, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8999, 8, 'Zur freien Verfügung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 9, 9, 'Vortrags-, Kapital-, Korrektur- und statistische Konten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9000, 9, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9001, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9002, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9003, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9004, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9005, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9006, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9007, 9000, 'Saldenvorträge, Sachkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9008, 9, 'Saldenvorträge, Debitoren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9009, 9, 'Saldenvorträge, Kreditoren'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9060, 9009, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9069, 9009, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9070, 9, 'Offene Posten aus 2000'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9071, 9, 'Offene Posten aus 2001'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9072, 9, 'Offene Posten aus 2002'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9073, 9, 'Offene Posten aus 2003'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9074, 9, 'Offene Posten aus 2004'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9075, 9, 'Offene Posten aus 2005'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9076, 9, 'Offene Posten aus 2006'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9077, 9, 'Offene Posten aus 2007'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9078, 9, 'Offene Posten aus 2008'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9079, 9, 'Offene Posten aus 2009'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9080, 9, 'Offene Posten aus 2010'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9081, 9, 'Offene Posten aus 2011'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9082, 9, 'Offene Posten aus 2012'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9083, 9, 'Offene Posten aus 2013'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9084, 9, 'Offene Posten aus 2014'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9085, 9, 'Offene Posten aus 2015'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9086, 9, 'Offene Posten aus 2016'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9087, 9, 'Offene Posten aus 2017'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9088, 9, 'Offene Posten aus 2018'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9089, 9088, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9090, 9, 'Summenvortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9091, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9092, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9093, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9094, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9095, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9096, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9097, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9098, 9090, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9101, 9, 'Verkaufstage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9102, 9, 'Anzahl der Barkunden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9103, 9, 'Beschäftigte Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9104, 9, 'Unbezahlte Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9105, 9, 'Verkaufskräfte'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9106, 9, 'Geschäftsraum qm'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9107, 9, 'Verkaufsraum qm'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9116, 9, 'Anzahl Rechnungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9117, 9, 'Anzahl Kreditkunden monatlich'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9118, 9, 'Anzahl Kreditkunden aufgelaufen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9120, 9, 'Erweiterungsinvestitionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9130, 9120, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9131, 9120, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9135, 9, 'Auftragseingang im Geschäftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9140, 9, 'Auftragsbestand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9141, 9, 'Variables Kapital TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9142, 9, 'Variables Kapital – Anteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9143, 9142, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9144, 9142, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9145, 9142, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9146, 9, 'Variables Kapital Vollhafter – Übertragung einer § 6b EstG-Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9147, 9, 'Variables Kapital Teilhafter – Übertragung einer § 6b EstG-Rücklage'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9148, 9147, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9149, 9147, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9150, 9, 'Festkapital – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9151, 9, 'Variables Kapital – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9152, 9, 'Verlust-/Vortragskonto – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9153, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9154, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9155, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9156, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9157, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9158, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9159, 9155, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9160, 9, 'Kommandit-Kapital – andere Kapitalkontenanpassungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9161, 9, 'Variables Kapital – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9162, 9, 'Verlustausgleichskonto – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9163, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9164, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9165, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9166, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9167, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9168, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9169, 9165, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9170, 9, 'Festkapital – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9171, 9, 'Variables Kapital – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9172, 9, 'Verlust-/Vortragskonto – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9173, 9, 'Kapitalkonto III – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9174, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9175, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen VH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9176, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9177, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9178, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9179, 9175, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9180, 9, 'Kommandit-Kapital – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9181, 9, 'Variables Kapital – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9182, 9, 'Verlustausgleichskonto – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9183, 9, 'Kapitalkonto III – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9184, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9185, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen TH'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9186, 9185, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9187, 9185, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9188, 9185, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9189, 9, 'Verrechnungskonto für Umbuchungen zwischen Gesellschafter-Eigenkapitalkonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9190, 9, 'Gegenkonto für Mengeneinheiten Konten 9101-9107 und Konten 9116-9118'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9199, 9, 'Gegenkonto zu Konten 9120, 9135-9140'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9200, 9, 'Beschäftigte Personen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9201, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9202, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9203, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9204, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9205, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9206, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9207, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9208, 9200, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9209, 9, 'Gegenkonto zu 9200'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9210, 9, 'Produktive Löhne'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9219, 9, 'Gegenkonto zu 9120'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9220, 9, 'Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9221, 9, 'Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9229, 9, 'Gegenkonto zu 9220-9221'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9230, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9232, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9234, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9239, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9240, 9, 'Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9241, 9, 'Investitionsverbindlichkeiten aus Sachanlagekäufen bei Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9242, 9, 'Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9243, 9, 'Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9244, 9, 'Gegenkonto zu Konto 9240-9243'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9245, 9, 'Forderungen aus Sachnanlageverkäufen bei sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9246, 9, 'Forderungen aus Verkäufen immaterieller Vermögensgegenstände bei sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9247, 9, 'Forderungen aus Verkäufen von Finanzanlagen bei sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9249, 9, 'Gegenkonto zu Konto 9245-47'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9250, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9255, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9259, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9260, 9, 'Kurzfristige Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9262, 9, 'Mittelfristige Rückstellungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9264, 9, 'Langfristige Rückstellungen, außer Pensionen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9269, 9, 'Gegenkonto zu Konten 9260-9268'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9270, 9, 'Gegenkonto zu 9271-9279 (Soll-Buchung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9271, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9272, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln gegenüber verbundenen/assoziierten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9273, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9274, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften gegenüber verbundenen/assoziierten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9275, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9276, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen/assoziierten Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9277, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9278, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen/assoziierten Unternehemn'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9279, 9, 'Verpflichtungen aus Treuhandvermögen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9280, 9, 'Gegenkonto zu 9281-9284'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9281, 9, 'Verpflichtungen aus Miet- und Leasingverträgen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9282, 9, 'Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9283, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9284, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehemen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9285, 9, 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach „ 253 Abs. 6 HGB (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9286, 9, 'Gegenkonto zu 9285'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9287, 9, 'Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9288, 9, 'Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9289, 9, 'Gegenkonto zu 9287 und 9288'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9290, 9, 'Statistisches Konto steuerfreie Auslagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9291, 9, 'Gegenkonto zu 9290'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9292, 9, 'Statistisches Konto Fremdgeld'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9293, 9, 'Gegenkonto zu 9292'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9295, 9, 'Einlagen stiller Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9297, 9, 'Steuerrechtlicher Ausgleichsposten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9300, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9301, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9302, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9303, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9304, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9305, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9306, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9307, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9308, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9309, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9310, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9311, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9312, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9313, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9314, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9315, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9316, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9317, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9318, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9319, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9320, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9326, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9327, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9328, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9329, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9330, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9331, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9332, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9333, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9334, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9335, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9336, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9337, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9338, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9339, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9340, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9341, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9342, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9343, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9346, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9347, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9348, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9349, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9357, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9358, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9359, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9360, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9365, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9366, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9367, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9371, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9372, 9, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9390, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9391, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9392, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9393, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9394, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9395, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9396, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9397, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9398, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9399, 9, '(zur freien Verfügung)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9849', 9400, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9848', 9401, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9847', 9402, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9846', 9403, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9845', 9404, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9844', 9405, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9843', 9406, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9842', 9407, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9841', 9408, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9840', 9409, 9, 'Privatentnahmen allgemein'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9839', 9410, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9838', 9411, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9837', 9412, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9836', 9413, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9835', 9414, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9834', 9415, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9833', 9416, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9832', 9417, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9831', 9418, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9830', 9419, 9, 'Privatsteuern'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9829', 9420, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9828', 9421, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9827', 9422, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9826', 9423, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9825', 9424, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9824', 9425, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9823', 9426, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9822', 9427, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9821', 9428, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9820', 9429, 9, 'Sonderausgaben beschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9819', 9430, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9818', 9431, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9817', 9432, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9816', 9433, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9815', 9434, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9814', 9435, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9813', 9436, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9812', 9437, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9811', 9438, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9810', 9439, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9809', 9440, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9808', 9441, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9807', 9442, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9806', 9443, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9805', 9444, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9804', 9445, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9803', 9446, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9802', 9447, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9801', 9448, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9800', 9449, 9, 'Zuwendungen, Spenden'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9799', 9450, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9798', 9451, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9797', 9452, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9796', 9453, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9795', 9454, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9794', 9455, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9793', 9456, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9792', 9457, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9791', 9458, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9790', 9459, 9, 'Außergewöhnliche Belastungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9789', 9460, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9788', 9461, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9787', 9462, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9786', 9463, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9785', 9464, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9784', 9465, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9783', 9466, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9782', 9467, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9781', 9468, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9780', 9469, 9, 'Grundstücksaufwand'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9779', 9470, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9778', 9471, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9777', 9472, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9776', 9473, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9775', 9474, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9774', 9475, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9773', 9476, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9772', 9477, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9771', 9478, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9770', 9479, 9, 'Grundstücksertrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9769', 9480, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9768', 9481, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9767', 9482, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9766', 9483, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9765', 9484, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9764', 9485, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9763', 9486, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9762', 9487, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9761', 9488, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9760', 9489, 9, 'Unentgeltliche Wertabgaben'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9759', 9490, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9758', 9491, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9757', 9492, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9756', 9493, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9755', 9494, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9754', 9495, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9753', 9496, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9752', 9497, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9751', 9498, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9750', 9499, 9, 'Privateinlagen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9500, 9, 'Anteil für Konto 2000 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9501, 9, 'Anteil für Konto 2001 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9502, 9, 'Anteil für Konto 2002 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9503, 9, 'Anteil für Konto 2003 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9504, 9, 'Anteil für Konto 2004 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9505, 9, 'Anteil für Konto 2005 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9506, 9, 'Anteil für Konto 2006 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9507, 9, 'Anteil für Konto 2007 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9508, 9, 'Anteil für Konto 2008 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9509, 9, 'Anteil für Konto 2009 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9510, 9, 'Anteil für Konto 2010 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9511, 9, 'Anteil für Konto 2011 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9512, 9, 'Anteil für Konto 2012 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9513, 9, 'Anteil für Konto 2013 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9514, 9, 'Anteil für Konto 2014 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9515, 9, 'Anteil für Konto 2015 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9516, 9, 'Anteil für Konto 2016 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9517, 9, 'Anteil für Konto 2017 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9518, 9, 'Anteil für Konto 2018 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9519, 9, 'Anteil für Konto 2019 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9520, 9, 'Anteil für Konto 2020 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9521, 9, 'Anteil für Konto 2021 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9522, 9, 'Anteil für Konto 2022 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9523, 9, 'Anteil für Konto 2023 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9524, 9, 'Anteil für Konto 2024 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9525, 9, 'Anteil für Konto 2025 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9526, 9, 'Anteil für Konto 2026 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9527, 9, 'Anteil für Konto 2027 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9528, 9, 'Anteil für Konto 2028 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9529, 9, 'Anteil für Konto 2029 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9530, 9, 'Anteil für Konto 9910 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9531, 9, 'Anteil für Konto 9911 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9532, 9, 'Anteil für Konto 9912 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9533, 9, 'Anteil für Konto 9913 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9534, 9, 'Anteil für Konto 9914 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9535, 9, 'Anteil für Konto 9915 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9536, 9, 'Anteil für Konto 9916 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9537, 9, 'Anteil für Konto 9917 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9538, 9, 'Anteil für Konto 9918 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9539, 9, 'Anteil für Konto 9919 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9540, 9, 'Anteil für Konto 0060 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9541, 9, 'Anteil für Konto 0061 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9542, 9, 'Anteil für Konto 0062 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9543, 9, 'Anteil für Konto 0063 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9544, 9, 'Anteil für Konto 0064 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9545, 9, 'Anteil für Konto 0065 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9546, 9, 'Anteil für Konto 0066 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9547, 9, 'Anteil für Konto 0067 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9548, 9, 'Anteil für Konto 0068 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9549, 9, 'Anteil für Konto 0069 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9550, 9, 'Anteil für Konto 2050 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9551, 9, 'Anteil für Konto 2051 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9552, 9, 'Anteil für Konto 2052 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9553, 9, 'Anteil für Konto 2053 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9554, 9, 'Anteil für Konto 2054 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9555, 9, 'Anteil für Konto 2055 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9556, 9, 'Anteil für Konto 2056 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9557, 9, 'Anteil für Konto 2057 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9558, 9, 'Anteil für Konto 2058 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9559, 9, 'Anteil für Konto 2059 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9560, 9, 'Anteil für Konto 2060 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9561, 9, 'Anteil für Konto 2061 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9562, 9, 'Anteil für Konto 2062 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9563, 9, 'Anteil für Konto 2063 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9564, 9, 'Anteil für Konto 2064 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9565, 9, 'Anteil für Konto 2065 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9566, 9, 'Anteil für Konto 2066 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9567, 9, 'Anteil für Konto 2067 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9568, 9, 'Anteil für Konto 2068 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9569, 9, 'Anteil für Konto 2069 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9570, 9, 'Anteil für Konto 2070 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9571, 9, 'Anteil für Konto 2071 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9572, 9, 'Anteil für Konto 2072 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9573, 9, 'Anteil für Konto 2073 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9574, 9, 'Anteil für Konto 2074 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9575, 9, 'Anteil für Konto 2075 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9576, 9, 'Anteil für Konto 2076 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9577, 9, 'Anteil für Konto 2077 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9578, 9, 'Anteil für Konto 2078 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9579, 9, 'Anteil für Konto 2079 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9580, 9, 'Anteil für Konto 9820 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9581, 9, 'Anteil für Konto 9821 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9582, 9, 'Anteil für Konto 9822 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9583, 9, 'Anteil für Konto 9823 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9584, 9, 'Anteil für Konto 9824 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9585, 9, 'Anteil für Konto 9825 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9586, 9, 'Anteil für Konto 9826 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9587, 9, 'Anteil für Konto 9827 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9588, 9, 'Anteil für Konto 9828 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9589, 9, 'Anteil für Konto 9829 Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9590, 9, 'Anteil für Konto 0080 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9591, 9, 'Anteil für Konto 0081 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9592, 9, 'Anteil für Konto 0082 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9593, 9, 'Anteil für Konto 0083 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9594, 9, 'Anteil für Konto 0084 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9595, 9, 'Anteil für Konto 0085 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9596, 9, 'Anteil für Konto 0086 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9597, 9, 'Anteil für Konto 0087 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9598, 9, 'Anteil für Konto 0088 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9599, 9, 'Anteil für Konto 0089 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9600, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9601, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9602, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9603, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9604, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9605, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9606, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9607, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9608, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9609, 9, 'Name des Gesellschafters Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9610, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9611, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9612, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9613, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9614, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9615, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9616, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9617, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9618, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9619, 9, 'Tätigkeitsvergütung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9620, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9621, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9622, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9623, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9624, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9625, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9626, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9627, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9628, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9629, 9, 'Tantieme Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9630, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9631, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9632, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9633, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9634, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9635, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9636, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9637, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9638, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9639, 9, 'Darlehensverzinsung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9640, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9641, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9642, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9643, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9644, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9645, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9646, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9647, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9648, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9649, 9, 'Gebrauchsüberlassung Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9650, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9651, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9652, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9653, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9654, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9655, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9656, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9658, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9659, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9660, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9661, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9662, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9663, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9664, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9665, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9666, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9667, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9668, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9669, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9670, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9671, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9672, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9673, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9674, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9675, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9676, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9677, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9678, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9679, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9680, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9681, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9682, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9683, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9684, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9685, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9686, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9687, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9688, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9689, 9, 'Sonstige Vergütungen Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9690, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9691, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9692, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9693, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9694, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9695, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9696, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9697, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9698, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9699, 9, 'Restanteil Vollhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9700, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9701, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9702, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9703, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9704, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9705, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9706, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9707, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9708, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9709, 9, 'Name des Gesellschafters Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9710, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9711, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9712, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9713, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9714, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9715, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9716, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9717, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9718, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9719, 9, 'Tätigkeitsvergütung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9720, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9721, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9722, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9723, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9724, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9725, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9726, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9727, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9728, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9729, 9, 'Tantieme Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9730, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9731, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9732, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9733, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9734, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9735, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9736, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9737, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9738, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9739, 9, 'Darlehensverzinsung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9740, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9741, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9742, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9743, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9744, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9745, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9746, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9747, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9748, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9749, 9, 'Gebrauchsüberlassung Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9750, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9751, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9752, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9753, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9754, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9755, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9756, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9757, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9758, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9759, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9760, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9761, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9762, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9763, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9764, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9765, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9766, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9767, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9768, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9769, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9770, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9771, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9772, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9773, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9774, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9775, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9776, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9777, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9778, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9779, 9, 'Sonstige Vergütungen Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9780, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9781, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9782, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9783, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9784, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9785, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9786, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9787, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9788, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9789, 9, 'Anteil für Konto 9840 Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9790, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9791, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9792, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9793, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9794, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9795, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9796, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9797, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9798, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9799, 9, 'Restanteil Teilhafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9800, 9, 'Abstimmsummenkonto für den Import von Buchungssätzen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9802, 9, 'Gesamthänderisch gebundene Rücklagen – andere Kapitalkontenanpassungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9803, 9, 'Gewinnvortrag/Verlustvortrag – andere Kapitalkontenanpassungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9804, 9, 'Gesamthänderisch gebundene Rücklagen – Umbuchungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9805, 9, 'Gewinnvortrag/Verlustvortrag – Umbuchungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9806, 9, 'Zuzurechnender Anteil am Jahresüberschuss/Jahresfehlbetrag – je Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9807, 9, 'Zuzurechnender Anteil am Bilanzgewinn/Bilanzverlust – je Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9808, 9, 'Gegenkonto für zuzurechnenden Anteil am Jahresüberschuss/Jahresfehlbetrag'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9809, 9, 'Gegenkonto für zuzurechnenden Anteil am Bilanzgewinn/Bilanzverlust'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9810, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9811, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9812, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9813, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9814, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9815, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9816, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9817, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9818, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9819, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9820, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9821, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9822, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9823, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9824, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9825, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9826, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9827, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9828, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9829, 9, 'Verlust-/Vortragskonto'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9830, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9831, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9832, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9833, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9834, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9835, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9836, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9837, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9838, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9839, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9840, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9841, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9842, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9843, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9844, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9845, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9846, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9847, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9848, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9849, 9, 'Kapitalkonto III'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9850, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9851, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9852, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9853, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9854, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9855, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9856, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9857, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9858, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9859, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9860, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9861, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9862, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9863, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9864, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9865, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9866, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9867, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9868, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9869, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9870, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9871, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9872, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9873, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9874, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9875, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9876, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9877, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9878, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9879, 9, 'Einzahlungsverpflichtungen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9880, 9, 'Ausgleichsposten für aktivierte eigen Anteile'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9882, 9880, ''); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9883, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9884, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9885, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9886, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommandisten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9887, 9, 'Steueraufwand der Gesellschafter'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9889, 9, 'Gegenkonto zu 9887'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9890, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9891, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Soll) – Gegenkonto zu 9890'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)', 9892, 9, 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9893, 9, 'Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9894, 9, 'Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9895, 9, 'Gegenkonto 9893-9894 für die Aufteilung der Umsatzsteuer (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9696, 9, 'Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9897, 9, 'Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9899, 9, 'Gegenkonto 9896-9897 für die Aufteilung der Vorsteuer (EÜR)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9910, 9, 'Gegenkonto zur Minderung der Entnahmen $ 4 (4a) EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9911, 9, 'Minderung der Entnahmen § 4 (4a) EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9912, 9, 'Erhöhung der Entnahmen § 4 (4a) EStG'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9913, 9, 'Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9916, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9917, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 3. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9918, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9919, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 3. vorangegangenen Wirtschaftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9960, 9, 'Bewertungskorrektur zu Forderungen aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9961, 9, 'Bewertungskorrektur zu sonstigen Verbindlichkeiten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9962, 9, 'Bewertungskorrektur zu Guthaben bei Kreditinstituten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9963, 9, 'Bewertungskorrektur zu Verbindlichkeiten gegenüber Kreditinstituten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9964, 9, 'Bewertungskorrektur zu Verbindlichkeiten aus Lieferungen und Leistungen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9965, 9, 'Bewertungskorrektur zu sonstigen Vermögensgegenständen'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9970, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9971, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben) – Gegenkonto 9970'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9972, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9973, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahren, außerbilanziell (Soll) – Gegenkonto zu 9972, 9916, 9917'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9974, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im vorangegangenen Wirtschaftsjahr'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9975, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahren – Gegenkonto 9974, 9918, 9919'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9976, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Haben)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9977, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Soll) – Gegenkonto zu 9976'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9978, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Soll)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9979, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Haben) – Gegenkonto zu 9978'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9980, 9, 'Anteil Belastung au Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9981, 9, 'Verrechnungskonto für Anteil Belastung auf Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9982, 9, 'Anteil Gutschrift auf Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9983, 9, 'Verrechnungskonto für Anteil Gutschrift auf Verbindlichkeitskonten'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9984, 9, 'Gewinnkorrektur nach § 60 Abs. 2 EstDV – Erhöhung handelsrechtliches Ergebnis durch Habenbuchung – Minderung handelrechtliches Ergebnis durch Sollbuchung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9985, 9, 'Gegenkonto zu 9984'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9986, 9, 'Ergebnisverteilung auf Fremdkapital'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9987, 9, 'Bilanzberichtigung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9989, 9, 'Gegenkonto 9986-9988'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9990, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9991, 9, 'Erträge (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9992, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9993, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9994, 9, 'Aufwendungen (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9995, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); -INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, xxxx, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9998, 9, 'Gegenkonto 9990-9997'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3837, 'SKR04', 'Anlagevermögen', 'Anlagevermögen', 0, 0, 'Anlagevermögen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3838, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 100, 0, 'Entgeltlich erworbene Konzessionen, gewerbliche Schutzrechte und ähnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3839, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 110, 100, 'Konzessionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3840, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 120, 100, 'Gewerbliche Schutzrechte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3841, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 130, 100, 'Ähnliche Rechte und Werte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3842, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 135, 100, 'EDV-Software'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3843, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 140, 100, 'Lizenzen an gewerblichen Schutzrechten und ähnlichen Rechten und Werte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3844, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 143, 0, 'Selbst geschaffene immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3845, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 144, 143, 'EDV-Software'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3846, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 145, 143, 'Lizenzen und Franchiseverträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3847, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 146, 143, 'Konzessionen und gewerbliche Schutzrechte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3848, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 147, 143, 'Rezepte, Verfahren, Prototypen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3849, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 148, 143, 'Immaterielle Vermögensgegenstände in Entwicklung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3850, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 150, 0, 'Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3851, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 160, 0, 'Verschmelzungsmehrwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3852, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 170, 0, 'Geleistete Anzahlungen auf immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3853, 'SKR04', 'Anlagevermögen', 'Immaterielle Vermögensgegenstände', 179, 0, 'Anzahlungen auf Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3854, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 200, 0, 'Grundstücke, grundstücksgleiche Rechte und Bauten einschließlich der Bauten auf fremden Grundstück'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3855, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 210, 200, 'Grundstücksgleiche Rechte ohne Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3856, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 215, 200, 'Unbebaute Grundstücke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3857, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 220, 200, 'Grundstücksgleiche Rechte (Erbbaurecht, Dauerwohnrecht, unbebaute Grundstücke)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3858, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 225, 200, 'Grundstücke mit Substanzverkehr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3859, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 229, 200, 'Grundstücksanteil des häuslichen Arbeitszimmers'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3860, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 230, 200, 'Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3861, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 235, 200, 'Grundstückswerte eigener bebauter Grundstücke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3862, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 240, 200, 'Geschäftsbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3863, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 250, 200, 'Fabrikbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3864, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 260, 200, 'Andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3865, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 270, 200, 'Garagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3866, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 280, 200, 'Außenanlagen für Geschäfts-, Fabrik- und andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3867, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 285, 200, 'Hof- und Wegbefestigungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3868, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 290, 200, 'Einrichtungen für Geschäfts-. Fabrik- und andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3869, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 300, 200, 'Wohnbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3870, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 305, 200, 'Garagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3871, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 310, 200, 'Außenanlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3872, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 315, 200, 'Hof- und Wegbefestigungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3873, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 320, 200, 'Einrichtungen für Wohnbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3874, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 329, 200, 'Gebäudeteil des häuslichen Arbeitszimmers'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3875, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 330, 200, 'Bauten auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3876, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 340, 200, 'Geschäftsbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3877, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 350, 200, 'Fabrikbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3878, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 360, 200, 'Wohnbauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3879, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 370, 200, 'Andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3880, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 380, 200, 'Garagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3881, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 390, 200, 'Außenanlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3882, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 395, 200, 'Hof- und Wegbefestigungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3883, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 398, 200, 'Einrichtungen für Geschäfts-. Fabrik-, Wohn- und andere Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3884, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 400, 0, 'Technische Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3885, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 420, 400, 'Technische Anlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3886, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 440, 400, 'Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3887, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 450, 400, 'Transportanlagen und Ähnlichen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3888, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 460, 400, 'Maschinengebundene Werkzeuge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3889, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 470, 400, 'Betriebsvorrichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3890, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 500, 0, 'Andere Anlagen, Betriebs- und Geschäftsausstattungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3891, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 510, 500, 'Andere Anlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3892, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 520, 500, 'PKW'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3893, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 540, 500, 'LKW'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3894, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 560, 500, 'Sonstige Transportmittel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3895, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 620, 500, 'Werkzeuge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3896, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 630, 500, 'Betriebsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3897, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 635, 500, 'Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3898, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 640, 500, 'Ladeneinrichtung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3899, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 650, 500, 'Büroeinrichtung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3900, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 660, 500, 'Gerüst- und Schalungsmaterial'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3901, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 670, 500, 'Geringwertige Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3902, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 675, 500, 'Wirtschaftsgüter (Sammelposten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3903, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 680, 500, 'Einbauten in fremde Grundstücke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3904, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 690, 500, 'Sonstige Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3905, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 700, 0, 'Geleistete Anzahlungen und Anlagen im Bau'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3906, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 705, 700, 'Anzahlungen auf Grundstücke und grundstücksgleiche Rechte ohne Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3907, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 710, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf eigenen Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3908, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 720, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten auf eigenen Grundstücken und grundstücksgleichen Rechten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3909, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 725, 700, 'Wohnbauten im Bau auf eigenen Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3910, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 735, 700, 'Anzahlungen auf Wohnbauten auf eigene Grundstücken und grundstücksgleichen Rechten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3911, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 740, 700, 'Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3912, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 750, 700, 'Anzahlungen auf Geschäfts-, Fabrik- und andere Bauten im Bau auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3913, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 755, 700, 'Wohnbauten im Bau auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3914, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 765, 700, 'Anzahlungen auf Wohnbauten auf fremden Grundstücken'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3915, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 770, 700, 'Technische Anlagen und Maschinen im Bau'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3916, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 780, 700, 'Anzahlungen auf technische Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3917, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 785, 700, 'Andere Anlagen, Betriebs- und Geschäftsausstattung im Bau'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3918, 'SKR04', 'Anlagevermögen', 'Sachanlagen', 795, 700, 'Anzahlungen auf andere Anlagen, Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3919, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 800, 700, 'Anteile an verbundenen Unternehmen (Anlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3920, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 803, 800, 'Anteile an verbundenen Unternehmen, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3921, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 804, 800, 'Anteile an verbundenen Unternehmen, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3922, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 805, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3923, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 808, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3924, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 809, 800, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3925, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 810, 700, 'Ausleihungen an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3926, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 813, 810, 'Ausleihungen an verbundene Unternehmen, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3927, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 814, 810, 'Ausleihungen an verbundene Unternehmen, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3928, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 815, 810, 'Ausleihungen an verbundene Unternehmen, Einzelunternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3929, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 820, 700, 'Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3930, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 829, 820, 'Beteiligung einer GmbH & Co. KG an einer Komplementär GmbH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3931, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 830, 820, 'Typisch stille Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3932, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 840, 820, 'Atypische stille Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3933, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 850, 820, 'Beteiligungen an Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3934, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 860, 820, 'Beteiligungen an Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3935, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 880, 700, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3936, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 883, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Personengesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3937, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 885, 880, 'Ausleihungen an Unternehmen, mit denen ein Beteiligungsverhältnis besteht, Kapitalgesellschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3938, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 900, 0, 'Wertpapiere des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3939, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 910, 900, 'Wertpapiere mit Gewinnbeteiligungsansprüchen, die dem Teileinkünfteverfahren unterliegen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3940, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 920, 900, 'Festverzinsliche Wertpapiere'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3941, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 930, 0, 'Sonstige Ausleihungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3942, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 940, 930, 'Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3943, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 960, 930, 'Ausleihungen an Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3944, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an GmbH-Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3945, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 962, 930, 'Ausleihungen an persönlich haftende Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3946, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 963, 930, 'Ausleihungen an Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3947, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 964, 930, 'Ausleihungen an stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3948, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 970, 930, 'Ausleihungen an nahe stehende Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3949, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 980, 0, 'Genossenschaftsanteile zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3950, 'SKR04', 'Anlagevermögen', 'Finanzanlagen', 990, 0, 'Rückdeckungsansprüche aus Lebensversicherungen zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3951, 'SKR04', 'Umlaufvermögen', 'Umlaufvermögen', 1, 1, 'Umlaufvermögen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3952, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1000, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3953, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1001, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3954, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1002, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3955, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1003, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3956, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1004, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3957, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1005, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3958, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1006, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3959, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1007, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3960, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1008, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3961, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1009, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3962, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1010, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3963, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1011, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3964, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1012, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3965, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1013, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3966, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1014, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3967, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1015, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3968, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1016, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3969, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1017, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3970, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1018, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3971, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1019, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3972, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1020, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3973, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1021, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3974, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1022, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3975, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1023, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3976, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1024, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3977, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1025, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3978, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1026, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3979, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1027, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3980, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1028, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3981, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1029, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3982, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1030, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3983, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1031, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3984, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1032, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3985, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1033, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3986, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1034, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3987, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1035, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3988, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1036, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3989, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1037, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3990, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1038, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3991, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1039, 1, 'Roh-, Hilfs- und Betriebsstoffe (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3992, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1040, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3993, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1041, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3994, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1042, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3995, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1043, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3996, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1044, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3997, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1045, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3998, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1046, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 3999, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1047, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4000, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1048, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4001, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1049, 1, 'Unfertige Erzeugnisse, unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4002, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1050, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4003, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1051, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4004, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1052, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4005, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1053, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4006, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1054, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4007, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1055, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4008, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1056, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4009, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1057, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4010, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1058, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4011, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1059, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4012, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1060, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4013, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1061, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4014, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1062, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4015, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1063, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4016, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1064, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4017, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1065, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4018, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1066, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4019, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1067, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4020, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1068, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4021, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1069, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4022, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1070, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4023, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1071, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4024, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1072, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4025, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1073, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4026, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1074, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4027, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1075, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4028, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1076, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4029, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1077, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4030, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1078, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4031, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1079, 1040, 'Unfertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4032, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1080, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4033, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1081, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4034, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1082, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4035, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1083, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4036, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1084, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4037, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1085, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4038, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1086, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4039, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1087, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4040, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1088, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4041, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1089, 1040, 'Unfertige Leistungen (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4042, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1090, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4043, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1091, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4044, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1092, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4045, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1093, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4046, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1094, 1040, 'In Ausführung befindliche Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4047, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1095, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4048, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1096, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4049, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1097, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4050, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1098, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4051, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1099, 1040, 'In Arbeit befindliche Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4052, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1100, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4053, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1101, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4054, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1102, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4055, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1103, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4056, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1104, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4057, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1105, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4058, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1106, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4059, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1107, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4060, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1108, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4061, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1109, 1, 'Fertige Erzeugnisse und Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4062, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1110, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4063, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1111, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4064, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1112, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4065, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1113, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4066, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1114, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4067, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1115, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4068, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1116, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4069, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1117, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4070, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1118, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4071, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1119, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4072, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1120, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4073, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1121, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4074, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1122, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4075, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1123, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4076, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1124, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4077, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1125, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4078, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1126, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4079, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1127, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4080, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1128, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4081, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1129, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4082, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1130, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4083, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1131, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4084, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1132, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4085, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1133, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4086, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1134, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4087, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1135, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4088, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1136, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4089, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1137, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4090, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1138, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4091, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1139, 1100, 'Fertige Erzeugnisse (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4092, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1140, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4093, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1141, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4094, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1142, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4095, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1143, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4096, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1144, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4097, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1145, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4098, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1146, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4099, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1147, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4100, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1148, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4101, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1149, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4102, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1150, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4103, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1151, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4104, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1152, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4105, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1153, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4106, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1154, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4107, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1155, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4108, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1156, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4109, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1157, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4110, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1158, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4111, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1159, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4112, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1160, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4113, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1161, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4114, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1162, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4115, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1163, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4116, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1164, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4117, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1165, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4118, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1166, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4119, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1167, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4120, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1168, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4121, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1169, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4122, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1170, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4123, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1171, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4124, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1172, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4125, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1173, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4126, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1174, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4127, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1175, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4128, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1176, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4129, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1177, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4130, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1178, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4131, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1179, 1100, 'Waren (Bestand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4132, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1180, 1, 'Geleistete Anzahlungen auf Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4133, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1181, 1180, 'Geleistete Anzahlungen auf 7% Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4134, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1182, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4135, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1183, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4136, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1184, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4137, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1185, 1180, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4138, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1186, 1180, 'Geleistete Anzahlungen auf 19% Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4139, 'SKR04', 'Umlaufvermögen', 'Vorräte', 1190, 1180, 'Erhaltene Anzahlungen auf Bestellungen (von Vorräten offen abgesetzt)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4140, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1200, 1, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4141, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1201, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4142, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1202, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4143, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1203, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4144, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1204, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4145, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1205, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4146, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1206, 1200, 'Forderungen aus Lieferungen und Leistungen '); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4147, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1210, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4148, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1211, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4149, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1212, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4150, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1213, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4151, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1214, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4152, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1215, 1200, 'Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmers (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4153, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1216, 1200, 'Forderungen aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4154, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1217, 1200, 'Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4155, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1218, 1200, 'Forderungen aus Lieferungen und Leistungen nach Durchschnittssätzen gemäß § 24 UStG (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4156, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1219, 1200, 'Gegenkonto 1215-1218 bei Aufteilung der Forderungen nach Steuersätzen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4157, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1220, 1200, 'Forderungen nach § 11 Abs. 1 Satz 2 EStG für § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4158, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1221, 1200, 'Forderungen aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4159, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1225, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4160, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1230, 1200, 'Wechsel aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4161, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1231, 1200, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4162, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1232, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4163, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1235, 1200, 'Wechsel aus Lieferungen und Leistungen, Bundesbankfertig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4164, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1240, 1200, 'Zweifelhafte Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4165, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1241, 1200, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4166, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1245, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4167, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1246, 1200, 'Einzelwertberichtigungen auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4168, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1247, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4169, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1248, 1200, 'Pauschalwertberichtigung auf Forderungen mit einer – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4170, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1249, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4171, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1250, 1200, 'Forderungen aus Lieferungen und Leistungen gegen Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4172, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1251, 1200, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4173, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1255, 1200, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4174, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1258, 1200, 'Gegenkonto zu sonstigen Vermögensgegenständen bei Buchungen über Debitorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4175, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1259, 1200, 'Gegenkonto 1221-1229, 1240-1245, 1250-1257, 1270-1279, 1290-1297 bei Aufteilung Debitorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4176, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1260, 1, 'Forderungen gegen verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4177, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1261, 1260, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4178, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1265, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4179, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1266, 1260, 'Besitzwechsel gegen verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4180, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1267, 1260, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4181, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1268, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4182, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1269, 1260, 'Besitzwechsel gegen verbundene Unternehmen, bundesbankfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4183, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1270, 1260, 'Forderungen aus Lieferungen und Leistungen gegen verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4184, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1271, 1260, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4185, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1275, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4186, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1276, 1260, 'Wertberichtigung auf Forderungen gegen verbundene Unternehmen – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4187, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1277, 1260, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4188, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1280, 1, 'Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4189, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1281, 1280, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4190, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1285, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4191, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1286, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4192, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1287, 1280, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4193, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1288, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4194, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1289, 1280, 'Besitzwechsel gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht, bundesbankfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4195, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1290, 1280, 'Forderungen aus Lieferungen und Leistungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4196, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1291, 1280, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4197, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1295, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4198, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1296, 1280, 'Wertberichtigungen auf Forderungen gegen Unternehmen, mit denen ein Beteiligungsverhältnis besteht – Restlaufzeit 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4199, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1297, 1280, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4200, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1298, 1, 'Ausstehende Einlagen auf das gezeichnete Kapital, eingefordert (Forderungen, nicht eingeforderte ausstehende Einlagen s. Konto 2910)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4201, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1299, 1, 'Nachschüsse (Forderungen, Gegenkonto 2929)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4202, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1300, 1, 'Sonstige Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4203, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1301, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4204, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1305, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4205, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1307, 1300, 'Forderungen gegen GmbH-Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4206, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1308, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4207, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1309, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4208, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1310, 1300, 'Forderungen gegen Vorstandsmitglieder und Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4209, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1311, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4210, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1315, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4211, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1317, 1300, 'Forderungen gegen persönlich haftende Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4212, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1318, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4213, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1319, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4214, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1320, 1300, 'Forderungen gegen Aufsichtsrats- und Beirats-Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4215, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1321, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4216, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1325, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4217, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1327, 1300, 'Forderungen gegen Kommanditisten und atypisch stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4218, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1328, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4219, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1329, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4220, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1330, 1300, 'Forderungen gegen sonstige Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4221, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1331, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4222, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1335, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4223, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1337, 1300, 'Forderungen gegen typisch stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4224, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1338, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4225, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1339, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4226, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1340, 1300, 'Forderungen gegen Personal aus Lohn- und Gehaltsabrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4227, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1341, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4228, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1345, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4229, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1349, 1300, 'Ansprüche aus betrieblicher Altersversorgung und Pensionsansprüche (Mitunternehmer)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4230, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1350, 1300, 'Kautionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4231, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1351, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4232, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1355, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4233, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1360, 1300, 'Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4234, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1361, 1300, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4235, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1365, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4236, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1369, 1300, 'Forderungen gegenüber Krankenkassen aus Aufwendungsausgleichsgesetz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4237, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1370, 1300, 'Durchlaufende Posten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4238, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1374, 1300, 'Fremdgeld'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4239, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1375, 1300, 'Agenturwarenabrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4240, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1376, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 2 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4241, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1377, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 2 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4242, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1378, 1300, 'Ansprüche aus Rückdeckungsversicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4243, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1380, 1300, 'Vermögensgegenstände zur Erfüllung von Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4244, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1381, 1300, 'Vermögensgegenstände zur Saldierung mit Pensionsrückstellungen und ähnlichen Verpflichtungen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4245, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1382, 1300, 'Vermögensgegenstände zur Erfüllung von mit der Altersvorsorge vergleichbaren langfristigen Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4246, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1383, 1300, 'Vermögensgegenstände zur Saldierung mit der Altersversorgung vergleichbaren langfristigen Verpflichtungen nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4247, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1390, 1300, 'GmbH-Anteile zum kurzfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4248, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1391, 1300, 'Forderungen gegen Arbeitsgemeinschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4249, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1393, 1300, 'Genussrechte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4250, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1394, 1300, 'Einzahlungsansprüche zu Nebenleistungen oder Zuzahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4251, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1395, 1300, 'Genossenschaftsanteile zum kurzfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4252, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1396, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4253, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1397, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, bewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4254, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1398, 1300, 'Nachträglich abziehbare Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4255, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1399, 1300, 'Zurückzahlende Vorsteuer, § 15a Abs. 1 UStG, unbewegliche Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4256, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1400, 1300, 'Abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4257, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1401, 1300, 'Abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4258, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1402, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4259, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1403, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4260, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1404, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4261, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1405, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4262, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1406, 1300, 'Abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4263, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1407, 1300, 'Abziehbare Vorsteuer nach § 13b UStG 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4264, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1408, 1300, 'Abziehbare Vorsteuer nach § 13b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4265, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1409, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4266, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1410, 1300, 'Aufzuteilende Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4267, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1411, 1300, 'Aufzuteilende Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4268, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1412, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4269, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1413, 1300, 'Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4270, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1414, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4271, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1415, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4272, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1416, 1300, 'Aufzuteilende Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4273, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1417, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4274, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1418, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4275, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1419, 1300, 'Aufzuteilende Vorsteuer nach §§ 13a/13b UStG 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4276, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1420, 1300, 'Forderungen aus Umsatzsteuer-Vorauszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4277, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1421, 1300, 'Umsatzsteuerforderungen laufendes Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4278, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1422, 1300, 'Umsatzsteuerforderungen Vorjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4279, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1425, 1300, 'Umsatzsteuerforderungen frühere Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4280, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1427, 1300, 'Forderungen aus entrichteten Verbrauchsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4281, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1431, 1300, 'Abziehbare Vorsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4282, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1432, 1300, 'Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Ust-Identifikationsnummer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4283, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1433, 1300, 'Entstandene Einfuhrumsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4284, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1434, 1300, 'Vorsteuer in Folgeperiode/im Folgejahr abziehbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4285, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1435, 1300, 'Forderungen aus Gewerbesteuerüberzahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4286, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1436, 1300, 'Vorsteuer aus Erwerb als letzter Abnehmer innerhalb eine Dreiecksgeschäfts'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4287, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1440, 1300, 'Steuererstattungsansprüche gegenüber Ländern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4288, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1450, 1300, 'Körperschaftsteuerrückforderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4289, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1452, 1300, 'Körperschaftsteuerrückforderungen nach § 37 KStG – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4290, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1453, 1300, '- Restlaufzeit größer 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4291, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1456, 1300, 'Forderungen an das Finanzamt aus abgeführtem Bauabzugsbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4292, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1457, 1300, 'Forderung gegenüber Bundesagentur für Arbeit'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4293, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1460, 1300, 'Geldtransit'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4294, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1480, 1300, 'Gegenkonto Vorsteuer § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4295, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1481, 1300, 'Auflösung Vorsteuer aus Vorjahr § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4296, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1482, 1300, 'Vorsteuer aus Investitionen § 4/3 EstG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4297, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1483, 1300, 'Gegenkonto für Vorsteuer nach Durchschnittsätzen für § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4298, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1484, 1300, 'Vorsteuer nach allgemeinen Durchschittssätzen UstVA Kz. 63'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4299, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1485, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, ergebniswirksam'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4300, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1486, 1300, 'Verrechnungskonto Gewinnermittlung § 4/3 EStG, nicht ergebniswirksam'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4301, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1487, 1300, 'Wirtschaftsgüter des Umlaufvermögens gemäß § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4302, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1490, 1300, 'Verrechnungskonto Ist-Versteuerung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4303, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1495, 1300, 'Verrechnungskonto erhaltene Anzahlungen bei Buchungen über Debitorenkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4304, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1496, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4305, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1497, 1300, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4306, 'SKR04', 'Umlaufvermögen', 'Forderungen und sonstige Vermögensgegenstände', 1498, 1300, 'Überleitungskonto Kostenstellen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4307, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1500, 1, 'Anteile an verbundenen Unternehmen (Umlaufvermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4308, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1504, 1, 'Anteile an herrschender oder mehrheitlich beteiligter Gesellschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4309, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1510, 1, 'Sonstige Wertpapiere'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4310, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1520, 1510, 'Finanzwechsel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4311, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1525, 1510, 'Andere Wertpapiere mit unwesentlichen Wertschwankungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4312, 'SKR04', 'Umlaufvermögen', 'Wertpapiere', 1530, 1510, 'Wertpapieranlagen im Rahmen der kurzfristigen Finanzdisposition'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4313, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1550, 1, 'Schecks'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4314, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1600, 1, 'Kasse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4315, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1610, 1600, 'Nebenkasse 1'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4316, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1620, 1600, 'Nebenkasse 2'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4317, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1700, 1, 'Bank (Postbank)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4318, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1720, 1700, 'Bank (Postbank2)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4319, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1730, 1700, 'Bank (Postbank 3)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4320, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1780, 1700, 'LZB-Guthaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4321, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1790, 1700, 'Bundesbankguthaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4322, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1800, 1, 'Bank'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4323, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1810, 1800, 'Bank 1'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4324, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1820, 1800, 'Bank 2'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4325, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1830, 1800, 'Bank 3'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4326, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1840, 1800, 'Bank 4'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4327, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1850, 1800, 'Bank 5'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4328, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1889, 1800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4329, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1890, 1800, 'Finanzmittelanlagen im Rahmen der kurzfristigen Finanzdisposition (nicht im Finanzmittelfonds enthalten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4330, 'SKR04', 'Umlaufvermögen', 'Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks', 1895, 1800, 'Verbindlichkeiten gegenüber Kreditinstituten (nicht im Finanzmittelfonds enthalten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4331, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1900, 1, 'Aktive Rechnungsabgrenzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4332, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1920, 1900, 'Als Aufwand berücksichtigte Zölle und Verbrauchsteuer auf Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4333, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1930, 1900, 'Als Aufwand berücksichtigte Umsatzsteuer auf Anzahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4334, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1940, 1900, 'Damnum/Disagio'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4335, 'SKR04', 'Umlaufvermögen', 'Abgrenzungsposten', 1950, 1, 'Aktive latente Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4336, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapitalkonten/Fremdkapitalkonten', 2, 2, 'Eigenkapitalkonten/Fremdkapitalkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4337, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2000, 2, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4338, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2001, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4339, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2002, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4340, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2003, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4341, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2004, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4342, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2005, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4343, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2006, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4344, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2007, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4345, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2008, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4346, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2009, 2000, 'Festkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4347, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2010, 2, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4348, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2011, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4349, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2012, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4350, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2013, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4351, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2014, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4352, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2015, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4353, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2016, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4354, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2017, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4355, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2018, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4356, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Vollhafter/Einzelunternehmer', 2019, 2000, 'Variables Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4357, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2020, 2, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4358, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2021, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4359, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2022, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4360, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2023, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4361, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2024, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4362, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2025, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4363, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2026, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4364, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2027, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4365, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2028, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4366, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Vollhafter', 2029, 2020, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4367, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2030, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4368, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2031, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4369, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2032, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4370, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2033, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4371, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2034, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4372, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2035, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4373, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2036, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4374, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2037, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4375, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2038, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4376, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2039, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4377, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2040, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4378, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2041, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4379, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2042, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4380, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2043, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4381, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2044, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4382, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2045, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4383, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2046, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4384, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2047, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4385, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2048, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4386, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Einzelunternehmer', 2049, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4387, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2050, 2, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4388, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2051, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4389, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2052, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4390, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2053, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4391, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2054, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4392, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2055, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4393, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2056, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4394, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2057, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4395, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2058, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4396, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2059, 2050, 'Kommandit-Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4397, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2060, 2, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4398, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2061, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4399, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2062, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4400, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2063, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4401, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2064, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4402, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2065, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4403, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2066, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4404, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2067, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4405, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2068, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4406, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter', 2069, 2060, 'Verlustausgleichskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4407, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2070, 2, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4408, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2071, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4409, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2072, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4410, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2073, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4411, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2074, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4412, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2075, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4413, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2076, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4414, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2077, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4415, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2078, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4416, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Fremdkapital Teilhafter', 2079, 2070, 'Gesellschafter-Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4417, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2080, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4418, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2081, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4419, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2082, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4420, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2083, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4421, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2084, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4422, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2085, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4423, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2086, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4424, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2087, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4425, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2088, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4426, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2089, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4427, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2090, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4428, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2091, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4429, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2092, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4430, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2093, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4431, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2094, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4432, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2095, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4433, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2096, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4434, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2097, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4435, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2098, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4436, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Eigenkapital Teilhafter (keine Anfrage)', 2099, 2, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4437, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2100, 2, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4438, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2101, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4439, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2102, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4440, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2103, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4441, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'prp', 2104, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4442, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2105, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4443, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2106, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4444, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2107, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4445, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2108, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4446, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2109, 2100, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4447, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2110, 2, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4448, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2111, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4449, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2112, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4450, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2113, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4451, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2114, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4452, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2115, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4453, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2116, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4454, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2117, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4455, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2118, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4456, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2119, 2110, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4457, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2120, 2, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4458, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2121, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4459, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2122, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4460, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2123, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4461, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2124, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4462, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2125, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4463, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2126, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4464, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2127, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4465, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2128, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4466, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2129, 2120, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4467, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2130, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4468, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2131, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4469, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2132, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4470, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2133, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4471, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2134, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4472, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2135, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4473, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2136, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4474, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2137, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4475, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2138, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4476, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2139, 2130, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4477, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2140, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4478, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2141, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4479, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2142, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4480, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2143, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4481, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2144, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4482, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2145, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4483, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2146, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4484, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2147, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4485, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2148, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4486, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2149, 2140, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4487, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2150, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4488, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2151, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4489, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2152, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4490, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2153, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4491, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2154, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4492, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2155, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4493, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2156, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4494, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2157, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4495, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2158, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4496, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2159, 2150, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4497, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2160, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4498, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2161, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4499, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2162, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4500, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2163, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4501, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2164, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4502, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2165, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4503, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2166, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4504, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2167, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4505, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2168, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4506, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2169, 2160, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4507, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2170, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4508, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2171, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4509, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2172, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4510, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2173, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4511, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2174, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4512, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2175, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4513, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2176, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4514, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2177, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4515, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2178, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4516, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2179, 2170, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4517, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2180, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4518, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2181, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4519, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2182, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4520, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2183, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4521, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2184, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4522, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2185, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4523, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2186, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4524, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2187, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4525, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2188, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4526, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2189, 2180, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4527, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2190, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4528, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2191, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4529, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2192, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4530, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2193, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4531, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2194, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4532, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2195, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4533, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2196, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4534, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2197, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4535, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2198, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4536, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2199, 2190, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4537, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2200, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4538, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2201, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4539, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2202, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4540, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2203, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4541, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2204, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4542, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2205, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4543, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2206, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4544, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2207, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4545, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2208, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4546, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2209, 2200, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4547, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2210, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4548, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2211, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4549, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2212, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4550, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2213, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4551, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2214, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4552, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2215, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4553, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2216, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4554, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2217, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4555, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2218, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4556, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2219, 2210, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4557, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2220, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4558, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2221, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4559, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2222, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4560, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2223, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4561, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2224, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4562, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2225, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4563, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2226, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4564, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2227, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4565, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2228, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4566, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2229, 2220, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4567, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2230, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4568, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2231, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4569, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2232, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4570, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2233, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4571, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2234, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4572, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2235, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4573, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2236, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4574, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2237, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4575, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2238, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4576, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2239, 2230, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4577, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2240, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4578, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2241, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4579, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2242, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4580, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2243, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4581, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2244, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4582, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2245, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4583, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2246, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4584, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2247, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4585, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2248, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4586, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2249, 2240, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4587, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2250, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4588, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2251, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4589, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2252, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4590, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2253, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4591, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2254, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4592, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2255, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4593, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2256, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4594, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2257, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4595, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2258, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4596, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2259, 2250, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4597, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2260, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4598, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2261, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4599, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2262, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4600, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2263, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4601, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2264, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4602, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2265, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4603, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2266, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4604, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2267, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4605, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2268, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4606, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2269, 2260, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4607, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2270, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4608, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2271, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4609, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2272, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4610, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2273, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4611, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2274, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4612, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2275, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4613, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2276, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4614, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2277, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4615, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2278, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4616, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2279, 2270, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4617, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2280, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4618, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2281, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4619, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2282, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4620, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2283, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4621, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2284, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4622, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2285, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4623, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2286, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4624, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2287, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4625, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2288, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4626, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2289, 2280, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4627, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2290, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4628, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2291, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4629, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2292, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4630, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2293, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4631, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2294, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4632, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2295, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4633, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2296, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4634, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2297, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4635, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2298, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4636, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2299, 2290, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4637, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2300, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4638, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2301, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4639, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2302, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4640, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2303, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4641, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2304, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4642, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2305, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4643, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2306, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4644, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2307, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4645, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2308, 2300, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4646, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2309, 2300, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4647, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2310, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4648, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2311, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4649, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2312, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4650, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2313, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4651, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2314, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4652, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2315, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4653, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2316, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4654, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2317, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4655, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2318, 2310, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4656, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2319, 2310, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4657, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2320, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4658, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2321, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4659, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2322, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4660, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2323, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4661, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2324, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4662, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2325, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4663, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2326, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4664, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2327, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4665, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2328, 2320, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4666, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2329, 2320, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4667, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2330, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4668, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2331, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4669, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2332, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4670, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2333, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4671, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2334, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4672, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2335, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4673, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2336, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4674, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2337, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4675, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2338, 2330, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4676, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2339, 2330, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4677, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2340, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4678, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2341, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4679, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2342, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4680, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2343, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4681, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2344, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4682, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2345, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4683, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2346, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4684, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2347, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4685, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2348, 2340, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4686, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2349, 2340, 'Grundstücksaufwand (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4687, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2350, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4688, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2351, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4689, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2352, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4690, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2353, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4691, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2354, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4692, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2355, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4693, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2356, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4694, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2357, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4695, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2358, 2350, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4696, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2359, 2350, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4697, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2360, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4698, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2361, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4699, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2362, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4700, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2363, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4701, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2364, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4702, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2365, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4703, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2366, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4704, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2367, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4705, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2368, 2360, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4706, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2369, 2360, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4707, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2370, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4708, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2371, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4709, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2372, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4710, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2373, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4711, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2374, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4712, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2375, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4713, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2376, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4714, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2377, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4715, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2378, 2370, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4716, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2379, 2370, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4717, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2380, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4718, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2381, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4719, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2382, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4720, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2383, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4721, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2384, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4722, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2385, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4723, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2386, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4724, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2387, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4725, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2388, 2380, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4726, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2389, 2380, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4727, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2390, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4728, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2391, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4729, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2392, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4730, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2393, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4731, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2394, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4732, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2395, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4733, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2396, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4734, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2397, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4735, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2398, 2390, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4736, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Eigenkapital) Vollhafter/Einzelunternehmer', 2399, 2390, 'Grundstücksertrag (Umsatzsteuerschlüssel möglich)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4737, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2500, 2, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4738, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2501, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4739, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2502, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4740, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2503, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4741, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2504, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4742, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2505, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4743, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2506, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4744, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2507, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4745, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2508, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4746, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2509, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4747, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2510, 2, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4748, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2511, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4749, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2512, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4750, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2513, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4751, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2514, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4752, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2515, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4753, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2516, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4754, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2517, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4755, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2518, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4756, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2519, 2500, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4757, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2520, 2, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4758, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2521, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4759, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2522, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4760, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2523, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4761, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2524, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4762, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2525, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4763, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2526, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4764, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2527, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4765, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2528, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4766, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2529, 2520, 'Privateinnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4767, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2530, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4768, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2531, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4769, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2532, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4770, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2533, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4771, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2534, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4772, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2535, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4773, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2536, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4774, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2537, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4775, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2538, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4776, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2539, 2530, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4777, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2540, 2, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4778, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2541, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4779, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2542, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4780, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2543, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4781, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2544, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4782, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2545, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4783, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2546, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4784, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2547, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4785, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2548, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4786, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2549, 2540, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4787, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2550, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4788, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2551, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4789, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2552, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4790, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2553, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4791, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2554, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4792, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2555, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4793, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2556, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4794, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2557, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4795, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2558, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4796, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2559, 2550, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4797, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2560, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4798, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2561, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4799, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2562, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4800, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2563, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4801, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2564, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4802, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2565, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4803, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2566, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4804, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2567, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4805, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2568, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4806, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2569, 2560, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4807, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2570, 2, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4808, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2571, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4809, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2572, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4810, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2573, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4811, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2574, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4812, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2575, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4813, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2576, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4814, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2577, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4815, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2578, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4816, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2579, 2570, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4817, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2580, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4818, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2581, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4819, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2582, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4820, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2583, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4821, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2584, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4822, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2585, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4823, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2586, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4824, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2587, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4825, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2588, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4826, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2589, 2580, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4827, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2590, 2, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4828, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2591, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4829, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2592, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4830, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2593, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4831, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2594, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4832, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2595, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4833, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2596, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4834, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2597, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4835, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2598, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4836, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2599, 2590, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4837, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2600, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4838, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2601, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4839, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2602, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4840, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2603, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4841, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2604, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4842, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2605, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4843, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2606, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4844, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2607, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4845, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2608, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4846, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2609, 2600, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4847, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2610, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4848, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2611, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4849, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2612, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4850, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2613, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4851, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2614, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4852, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2615, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4853, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2616, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4854, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2617, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4855, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2618, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4856, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2619, 2610, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4857, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2620, 2, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4858, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2621, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4859, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2622, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4860, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2623, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4861, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2624, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4862, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2625, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4863, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2626, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4864, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2627, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4865, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2628, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4866, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2629, 2620, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4867, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2630, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4868, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2631, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4869, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2632, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4870, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2633, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4871, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2634, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4872, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2635, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4873, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2636, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4874, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2637, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4875, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2638, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4876, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2639, 2630, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4877, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2640, 2, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4878, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2641, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4879, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2642, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4880, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2643, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4881, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2644, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4882, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2645, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4883, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2646, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4884, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2647, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4885, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2648, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4886, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2649, 2640, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4887, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2650, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4888, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2651, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4889, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2652, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4890, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2653, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4891, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2654, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4892, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2655, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4893, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2656, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4894, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2657, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4895, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2658, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4896, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2659, 2650, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4897, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2660, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4898, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2661, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4899, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2662, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4900, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2663, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4901, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2664, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4902, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2665, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4903, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2666, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4904, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2667, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4905, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2668, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4906, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2669, 2660, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4907, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2670, 2, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4908, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2671, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4909, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2672, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4910, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2673, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4911, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2674, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4912, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2675, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4913, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2676, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4914, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2677, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4915, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2678, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4916, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2679, 2670, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4917, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2680, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4918, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2681, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4919, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2682, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4920, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2683, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4921, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2684, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4922, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2685, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4923, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2686, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4924, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2687, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4925, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2688, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4926, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2689, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4927, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2690, 2, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4928, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2691, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4929, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2692, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4930, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2693, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4931, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2694, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4932, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2695, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4933, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2696, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4934, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2697, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4935, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2698, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4936, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2699, 2680, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4937, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2700, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4938, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2701, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4939, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2702, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4940, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2703, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4941, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2704, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4942, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2705, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4943, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2706, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4944, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2707, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4945, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2708, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4946, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2709, 2700, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4947, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2710, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4948, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2711, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4949, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2712, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4950, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2713, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4951, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2714, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4952, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2715, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4953, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2716, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4954, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2717, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4955, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2718, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4956, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2719, 2710, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4957, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2720, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4958, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2721, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4959, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2722, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4960, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2723, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4961, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2724, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4962, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2725, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4963, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2726, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4964, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2727, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4965, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2728, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4966, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2729, 2720, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4967, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2730, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4968, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2731, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4969, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2732, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4970, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2733, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4971, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2734, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4972, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2735, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4973, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2736, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4974, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2737, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4975, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2738, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4976, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2739, 2730, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4977, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2740, 2, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4978, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2741, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4979, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2742, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4980, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2743, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4981, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2744, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4982, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2745, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4983, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2746, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4984, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2747, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4985, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2748, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4986, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2749, 2740, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4987, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2750, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4988, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2751, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4989, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2752, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4990, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2753, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4991, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2754, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4992, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2755, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4993, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2756, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4994, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2757, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4995, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2758, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4996, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2759, 2750, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4997, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2760, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4998, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2761, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 4999, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2762, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5000, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2763, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5001, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2764, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5002, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2765, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5003, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2766, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5004, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2767, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5005, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2768, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5006, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2769, 2760, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5007, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2770, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5008, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2771, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5009, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2772, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5010, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2773, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5011, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2774, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5012, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2775, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5013, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2776, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5014, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2777, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5015, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2778, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5016, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2779, 2770, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5017, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2780, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5018, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2781, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5019, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2782, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5020, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2783, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5021, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2784, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5022, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2785, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5023, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2786, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5024, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2787, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5025, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2788, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5026, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2789, 2780, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5027, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2790, 2, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5028, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2791, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5029, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2792, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5030, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2793, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5031, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2794, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5032, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2795, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5033, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2796, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5034, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2797, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5035, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2798, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5036, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Privat (Fremdkapital) Teilhafter', 2799, 2790, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5037, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2900, 2, 'Gezeichnetes Kapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5038, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2901, 2900, 'Geschäftsguthaben der verbleibenden Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5039, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2902, 2900, 'Geschäftsguthaben der ausscheidenden Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5040, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2903, 2900, 'Geschäftsguthaben aus gekündigten Geschäftsanteilen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5041, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2906, 2900, 'Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5042, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2907, 2900, 'Gegenkonto Rückständige fällige Einzahlungen auf Geschäftsanteile, vermerkt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5043, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2908, 2900, 'Kapitalerhöhung aus Gesellschaftsmitteln'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5044, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2909, 2900, 'Erworbene eigene Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5045, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gezeichnetes Kapital', 2910, 2900, 'Ausstehende Einlagen auf das gezeichnete Kapital, nicht eingefordert (Passivausweis, vom gezeichneten Kapital offen abgesetzt; eingeforderte ausstehende Einlagen s. Konto 1289)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5046, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2920, 2, 'Kapitalrücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5047, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2925, 2920, 'Kapitalrücklage durch Ausgabe von Anteilen über Nennbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5048, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2926, 2920, 'Kapitalrücklage durch Ausgabe von Schuldverschreibungen für Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5049, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2927, 2920, 'Kapitalrücklage durch Zuzahlungen gegen Gewährung eines Vorzugs für Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5050, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2928, 2920, 'Kapitalrücklage durch Zuzahlungen in das Eigenkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5051, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Kapitalrücklage', 2929, 2920, 'Nachschusskonto (Gegenkonto 1299)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5052, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2930, 2, 'Gesetzliche Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5053, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2935, 2930, 'Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5054, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2937, 3930, 'Andere Ergebnisrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5055, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2950, 2, 'Satzungsmäßige Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5056, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2959, 2950, 'Gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5057, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2960, 2, 'Andere Gewinnrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5058, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2961, 2960, 'Andere Gewinnrücklagen aus dem Erwerb eigener Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5059, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2962, 2960, 'Eigenkapitalanteil von Wertaufholungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5060, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2963, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5061, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2964, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Sachanlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5062, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2965, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Zuschreibung Finanzanlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5063, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2966, 2960, 'Gewinnrücklagen aus den Übergangsvorschriften BilMoG (Auflösung der Sonderposten mit Rücklageanteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5064, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2967, 2960, 'Latente Steuern (Gewinnrücklage Haben) aus erfolgsneutralen Verrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5065, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2968, 2960, 'Latente Steuern (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5066, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnrücklagen', 2969, 2960, 'Rechnungsabgenzungsposten (Gewinnrücklage Soll) aus erfolgsneutralen Verrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5067, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2970, 2, 'Gewinnvortrag vor Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5068, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2975, 2970, 'Gewinnvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5069, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2977, 2978, 'Verlustvortrag vor Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5070, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2978, 2, 'Verlustvortrag vor Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5071, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Gewinnvortrag/Verlustvortrag von Verwendung', 2979, 2, 'Vortrag auf neue Rechnung (Bilanz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5072, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2980, 2, 'Sonderposten mit Rücklageanteil, steuerfreie Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5073, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2981, 2, 'Sonderposten mit Rücklageanteil nach § 6b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5074, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2982, 2, 'Sonderposten mit Rücklageanteil nach EstR R 6.6'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5075, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2988, 2, 'Rücklage für Zuschüsse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5076, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2989, 2, 'Sonderposten mit Rücklageanteil nach § 52 Abs. 16 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5077, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2990, 2, 'Sonderposten mit Rücklageanteil, Sonderabschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5078, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2993, 2, 'Sonderposten mit Rücklageanteil nach § 7g Abs. 2 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5079, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2995, 2, 'Ausgleichsposten bei Entnahmen § 4g EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5080, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2997, 2, 'Sonderposten bei Rücklageanteil § 7g Abs. 5 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5081, 'SKR04', 'Eigenkapitalkonten/Fremdkapitalkonten', 'Sonderposten mit Rücklageanteil', 2999, 2, 'Sonderposten für Zuschüsse und Zulagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5082, 'SKR04', 'Fremdkapitalkonten', 'Fremdkapitalkonten', 3, 3, 'Fremdkapitalkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5083, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3000, 3, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5084, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3005, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen gegenüber Gesellschaftern oder nahestehenden Personen (10 % Beteiligung am Kapital)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5085, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3009, 3000, 'Rückstellungen für Pensionen und ähnliche Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5086, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3010, 3000, 'Rückstellungen für Direktzusagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5087, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3011, 3000, 'Rückstellungen für Zuschussverpflichtungen für Pensionskassen und Lebensversicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5088, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3015, 3000, 'Rückstellungen für pensionähnliche Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5089, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3020, 3, 'Steuerrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5090, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3030, 3020, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5091, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3035, 3020, 'Gewerbesteuerrückstellungen § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5092, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3040, 3020, 'Körperschaftsteuerrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5093, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3050, 3020, 'Steuerrückstellung aus Steuerstundung (BstBK)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5094, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3060, 3020, 'Rückstellungen für latente Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5095, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3065, 3020, 'Passive latente Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5096, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3070, 3, 'Sonstige Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5097, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3074, 3070, 'Rückstellungen für Personalkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5098, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3075, 3070, 'Rückstellungen für unterlassene Aufwendungen für Instandhaltung, Nachholung in den ersten drei Monaten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5099, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3076, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zum langfristigen Verbleib'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5100, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3077, 3070, 'Rückstellungen für mit der Altersversorgung vergleichbare langfristige Verpflichtungen zur Saldierung mit Vermögensgegenständen zum langfristigen Verbleib nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5101, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3079, 3070, 'Urlaubsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5102, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3085, 3070, 'Rückstellungen für Abraum- und Abfallbeseitigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5103, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3090, 3070, 'Rückstellungen für Gewährleistungen (Gegenkonto 6790)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5104, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3092, 3070, 'Rückstellungen für drohende Verluste aus schwebenden Geschäften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5105, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3095, 3070, 'Rückstellungen für Abschluss- und Prüfungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5106, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3096, 3070, 'Rückstellungen zur Erfüllung der Aufbewahrungspflichten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5107, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3098, 3070, 'Aufwandsrückstellungen gemäß § 249 Abs. 2 HGB a. F.'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5108, 'SKR04', 'Fremdkapitalkonten', 'Rückstellungen', 3099, 3070, 'Rückstellungen für Umweltschutz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5109, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3100, 3, 'Anleihen, nicht konvertibel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5110, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3101, 3100, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5111, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3105, 3100, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5112, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3110, 3100, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5113, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3120, 3100, 'Anleihen, konvertibel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5114, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3121, 3120, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5115, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3125, 3120, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5116, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3130, 3120, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5117, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3150, 3, 'Verbindlichkeiten gegenüber Kreditinstituten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5118, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3151, 3150, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5119, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3160, 3150, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5120, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3170, 3150, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5121, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3180, 3150, 'Verbindlichkeiten gegenüber Kreditinstituten aus Teilzahlungsverträgen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5122, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3181, 3180, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5123, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3190, 3180, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5124, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3200, 3180, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5125, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3210, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5126, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3211, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5127, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3212, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5128, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3213, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5129, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3214, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5130, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3215, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5131, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3216, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5132, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3217, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5133, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3218, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5134, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3219, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5135, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3220, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5136, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3221, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5137, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3222, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5138, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3223, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5139, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3224, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5140, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3225, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5141, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3226, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5142, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3227, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5143, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3228, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5144, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3229, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5145, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3230, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5146, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3231, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5147, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3232, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5148, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3233, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5149, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3234, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5150, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3235, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5151, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3236, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5152, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3237, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5153, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3238, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5154, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3239, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5155, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3240, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5156, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3241, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5157, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3242, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5158, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3243, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5159, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3244, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5160, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3245, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5161, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3246, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5162, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3247, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5163, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3248, 3150, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5164, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3249, 3150, 'Gegenkonto 3150-3109 bei Aufteilung der Konten 3210-3248'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5165, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3250, 3, 'Erhaltene Anzahlungen auf Bestellungen (Verbindlichkeiten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5166, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3260, 3250, 'Erhaltene, versteuerte Anzahlungen 7 % USt (Verbindlichkeiten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5167, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3261, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5168, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3262, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5169, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3263, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5170, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3264, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5171, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3270, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5172, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3271, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5173, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3272, 3250, 'Erhaltene, versteuerte Anzahlungen 19 % USt (Verbindlichkeiten)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5174, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3273, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5175, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3274, 3250, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5176, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3280, 3250, 'Erhaltene Anzahlungen – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5177, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3284, 3280, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5178, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3285, 3280, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5179, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3300, 3, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5180, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3301, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5181, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3302, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5182, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3303, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5183, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3305, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5184, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3306, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5185, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3307, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5186, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3309, 3300, 'Gegenkonto 3305-3307 bei Aufteilung der Verbindlichkeiten nach Steuersätzen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5187, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3310, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5188, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3311, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5189, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3312, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5190, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3313, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5191, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3334, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen für Investitionen für § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5192, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3335, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent – Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5193, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3337, 3335, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5194, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3338, 3335, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5195, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3340, 3300, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5196, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3341, 3340, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5197, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3345, 3340, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5198, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3348, 3340, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5199, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3349, 3300, 'Gegenkonto 3335-3348, 3420-3449, 3470-3499 bei Aufteilung Kreditorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5200, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3350, 3, 'Wechselverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5201, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3351, 3350, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5202, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3380, 3350, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5203, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3390, 3350, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5204, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3400, 3, 'Verbindlichkeiten gegenüber verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5205, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3401, 3400, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5206, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3405, 3400, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5207, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3410, 3400, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5208, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3420, 3400, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5209, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3421, 3420, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5210, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3425, 3420, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5211, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3430, 3420, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5212, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3450, 3, 'Verbindlichkeiten gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5213, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3451, 3450, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5214, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3455, 3450, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5215, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3460, 3450, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5216, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3470, 3450, 'Verbindlichkeiten aus Lieferungen und Leistungen gegenüber Unternehmen, mit denen ein Beteiligungsverhältnis besteht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5217, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3471, 3470, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5218, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3475, 3470, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5219, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3480, 3470, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5220, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3500, 3, 'Sonstige Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5221, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3501, 3500, '- Restlaufzeit bis 1Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5222, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3504, 3500, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5223, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3507, 3500, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5224, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3509, 3500, 'Sonstige Verbindlichkeiten nach § 11 Abs. 2 Satz 2 EStG für § 4/3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5225, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3510, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5226, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3511, 3510, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5227, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3514, 3510, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5228, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3517, 3510, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5229, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3519, 3500, 'Verbindlichkeiten gegenüber Gesellschaftern für offene Ausschüttungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5230, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3520, 3500, 'Darlehen typisch stiller Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5231, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3521, 3520, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5232, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3524, 3520, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5233, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3527, 3520, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5234, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3530, 3500, 'Darlehen atypisch stiller Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5235, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3531, 3530, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5236, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3534, 3530, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5237, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3537, 3530, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5238, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3540, 3500, 'Partiarische Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5239, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3541, 3540, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5240, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3544, 3540, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5241, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3547, 3540, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5242, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3550, 3500, 'Erhaltene Kautionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5243, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3551, 3550, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5244, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3554, 3550, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5245, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3557, 3550, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5246, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3560, 3500, 'Darlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5247, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3561, 3560, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5248, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3564, 3560, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5249, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3567, 3560, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5250, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3570, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5251, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3571, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5252, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3572, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5253, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3573, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5254, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3574, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5255, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3575, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5256, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3576, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5257, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3577, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5258, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3578, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5259, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3579, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5260, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3580, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5261, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3581, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5262, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3582, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5263, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3583, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5264, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3584, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5265, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3585, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5266, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3586, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5267, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3587, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5268, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3588, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5269, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3589, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5270, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3590, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5271, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3591, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5272, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3592, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5273, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3593, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5274, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3594, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5275, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3595, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5276, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3596, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5277, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3597, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5278, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3598, 3500, '(frei, in Bilanz kein Restlaufzeitvermerk)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5279, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3599, 3500, 'Gegenkonto 3500-3569 und 3640-3658 bei Aufteilung der Konten 3570-3598'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5280, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3600, 3500, 'Agenturwarenabrechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5281, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3610, 3500, 'Kreditkartenabrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5282, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3611, 3500, 'Verbindlichkeiten gegenüber Arbeitsgemeinschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5283, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3620, 3500, 'Gewinnverfügungskonto stille Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5284, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3630, 3500, 'Sonstige Verrechnungskosten (Interimskonto)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5285, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3635, 3500, 'Sonstige Verbindlichkeiten aus genossenschaftlicher Rückvergütung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5286, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3640, 3500, 'Verbindlichkeiten gegenüber GmbH-Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5287, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3641, 3640, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5288, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3642, 3640, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5289, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3643, 3640, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5290, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3645, 3500, 'Verbindlichkeiten gegenüber persönlich haftenden Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5291, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3646, 3645, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5292, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3647, 3645, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5293, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3648, 3645, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5294, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3650, 3500, 'Verbindlichkeiten gegenüber Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5295, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3651, 3650, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5296, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3652, 3650, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5297, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3653, 3650, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5298, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3655, 3500, 'Verbindlichkeiten gegenüber stillen Gesellschaftern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5299, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3656, 3655, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5300, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3657, 3655, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5301, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3658, 3655, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5302, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3695, 3500, 'Verrechnungskonto geleistete Anzahlungen bei Buchungen über Kreditorenkonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5303, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3700, 3500, 'Verbindlichkeiten aus Steuern und Abgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5304, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3701, 3700, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5305, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3710, 3700, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5306, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3715, 3700, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5307, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3720, 3500, 'Verbindlichkeiten aus Lohn und Gehalt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5308, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3725, 3500, 'Verbindlichkeiten für Einbehaltungen von Arbeitnehmern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5309, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3726, 3500, 'Verbindlichkeiten an das Finanzamt aus abzuführendem Bauabzugsbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5310, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3730, 3500, 'Verbindlichkeiten aus Lohn- und Kirchensteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5311, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3740, 3500, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5312, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3741, 3740, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5313, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3750, 3740, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5314, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3755, 3740, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5315, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3759, 3500, 'Voraussichtliche Beitragsschuld gegenüber den Sozialversicherungsträgern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5316, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3760, 3500, 'Verbindlichkeiten aus Einbehaltungen (KapESt und SolZ, KiSt auf KapESt) für offene Ausschüttungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5317, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3761, 3500, 'Verbindlichkeiten für Verbrauchsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5318, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3770, 3500, 'Verbindlichkeiten aus Vermögensbildung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5319, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3771, 3770, '- Restlaufzeit bis 1 Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5320, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3780, 3770, '- Restlaufzeit 1 bis 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5321, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3785, 3770, '- Restlaufzeit größer 5 Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5322, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3786, 3500, 'Ausgegebene Geschenkgutscheine'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5323, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3790, 3, 'Lohn- und Gehaltsverrechnungskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5324, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3791, 3790, 'Lohn- und Gehaltsverrechnung § 11 Abs. 2 EStG für § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5325, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3796, 3790, 'Verbindlichkeiten im Rahmen der sozialen Sicherheit (für § 4/3 EStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5326, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3798, 3790, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5327, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3799, 3790, 'Steuerzahlungen aus im anderen EU-Land steuerpflichtigen elektronische Dienstleistungen an kleine einzige Anlaufstelle (KEA/MOSS)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5328, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3800, 3, 'Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5329, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3801, 3800, 'Umsatzsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5330, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3802, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5331, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3803, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5332, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3804, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5333, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3805, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5334, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3806, 3800, 'Umsatzsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5335, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3807, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5336, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3808, 3800, 'Umsatzsteuer aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5337, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3809, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb ohne Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5338, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3810, 3800, 'Umsatzsteuer nicht fällig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5339, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3811, 3800, 'Umsatzsteuer nicht fällig 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5340, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3812, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5341, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3813, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5342, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3814, 3800, 'Umsatzsteuer nicht fällig aus im Inland steuerpflichtigen EU-Lieferungen 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5343, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3815, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5344, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3816, 3800, 'Umsatzsteuer nicht fällig 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5345, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3817, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5346, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3818, 3800, 'Umsatzsteuer aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen/Werklieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5347, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3819, 3800, 'Umsatzsteuer aus Erwerb als letzter Abnehmer innerhalb eines Dreiecksgeschäfts'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5348, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3820, 3800, 'Umsatzsteuer-Vorauszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5349, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3830, 3800, 'Umsatzsteuer-Vorauszahlungen 1/11'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5350, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3831, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5351, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3832, 3800, 'Nachsteuer, UstVA Kz. 65'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5352, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3833, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5353, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3834, 3800, 'Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5354, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3835, 3800, 'Umsatzsteuer nach § 13b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5355, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3836, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5356, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3837, 3800, 'Umsatzsteuer nach § 13b UStG 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5357, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3838, 3800, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5358, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3839, 3800, 'Umsatzsteuer aus der Auslagerung von Gegenständen aus einem Umsatzsteuerlager'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5359, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3840, 3800, 'Umsatzsteuer laufendes Jahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5360, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3841, 3800, 'Umsatzsteuer Vorjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5361, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3845, 3800, 'Umsatzsteuer frühere Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5362, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3850, 3800, 'Einfuhrumsatzsteuer aufgeschoben bis ...'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5363, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3851, 3800, 'In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerbeträge, UstVA Kz. 69'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5364, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3854, 3800, 'Steuerzahlungen an andere Länder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5365, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3860, 3, 'Verbindlichkeiten aus Umsatzsteuer-Vorauszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5366, 'SKR04', 'Fremdkapitalkonten', 'Verbindlichkeiten', 3865, 3800, 'Umsatzsteuer in Folgeperiode fällig (§§ 13 Abs. 1 Nr. 6, 13b Abs. 2 UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5367, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3900, 3, 'Passive Rechnungsabgrenzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5368, 'SKR04', 'Fremdkapitalkonten', 'Rechnungsabgrenzungsposten', 3950, 3900, 'Abgrenzung unterjährig pauschal gebuchter Abschreibungen für BWA'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5369, 'SKR04', 'Betriebliche Erträge', 'Betriebliche Erträge', 4, 4, 'Betriebliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5370, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4000, 4, 'Umsatzerlöse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5371, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4001, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5372, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4002, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5373, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4003, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5374, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4004, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5375, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4005, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5376, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4006, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5377, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4007, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5378, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4008, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5379, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4009, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5380, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4010, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5381, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4011, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5382, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4012, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5383, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4013, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5384, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4014, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5385, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4015, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5386, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4016, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5387, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4017, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5388, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4018, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5389, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4019, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5390, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4020, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5391, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4021, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5392, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4022, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5393, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4023, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5394, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4024, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5395, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4025, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5396, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4026, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5397, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4027, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5398, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4028, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5399, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4029, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5400, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4030, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5401, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4031, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5402, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4032, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5403, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4033, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5404, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4034, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5405, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4035, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5406, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4036, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5407, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4037, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5408, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4038, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5409, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4039, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5410, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4040, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5411, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4041, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5412, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4042, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5413, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4043, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5414, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4044, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5415, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4045, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5416, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4046, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5417, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4047, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5418, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4048, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5419, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4049, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5420, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4050, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5421, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4051, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5422, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4052, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5423, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4053, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5424, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4054, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5425, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4055, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5426, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4056, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5427, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4057, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5428, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4058, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5429, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4059, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5430, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4060, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5431, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4061, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5432, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4062, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5433, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4063, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5434, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4064, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5435, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4065, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5436, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4066, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5437, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4067, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5438, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4068, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5439, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4069, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5440, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4070, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5441, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4071, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5442, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4072, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5443, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4073, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5444, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4074, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5445, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4075, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5446, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4076, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5447, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4077, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5448, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4078, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5449, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4079, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5450, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4080, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5451, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4081, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5452, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4082, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5453, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4083, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5454, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4084, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5455, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4085, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5456, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4086, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5457, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4087, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5458, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4088, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5459, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4089, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5460, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4090, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5461, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4091, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5462, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4092, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5463, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4093, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5464, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4094, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5465, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4095, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5466, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4096, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5467, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4097, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5468, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4098, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5469, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4099, 4000, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5470, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4100, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5471, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4101, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5472, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4102, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5473, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4103, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5474, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4104, 4000, 'Steuerfreie Umsätze § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5475, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4105, 4000, 'Steuerfreie Umsätze nach § 4 Nr. 12 UStG (Vermietung und Verpachtung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5476, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4110, 4000, 'Sonstige steuerfreie Umsätze Inland'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5477, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4120, 4000, 'Steuerfreie Umsätze § 4 Nr. 1a UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5478, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4125, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen § 4 Nr. 1b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5479, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4130, 4000, 'Lieferungen des ersten Abnehmers bei innergemeinschaftlichen Dreiecksgeschäften § 25b Abs. 2 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5480, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4135, 4000, 'Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer-Identifikationsnummer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5481, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4136, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5482, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4137, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5483, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4138, 4000, 'Umsatzerlöse nach §§ 25 und 25a UStG ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5484, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4139, 4000, 'Umsatzerlöse aus Reiseleistungen § 25 Abs. 2 UStG, steuerfrei'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5485, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4140, 4000, 'Steuerfreie Umsätze Offshore etc.'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5486, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4150, 4000, 'Sonstige steuerfreie Umsätze (z. B. § 4 Nr. 2-7 UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5487, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4160, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend, § 4 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5488, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4165, 4000, 'Steuerfreie Umsätze ohne Vorsteuerabzug zum Gesamtumsatz gehörend'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5489, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4180, 4000, 'Erlöse, die mit den Durchschnittssätzen des § 24 UStG verteuert werden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5490, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4182, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5491, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4183, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5492, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4185, 4000, 'Erlöse als Kleinunternehmer i. S. d. $ 19 Abs. 1 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5493, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4186, 4000, 'Erlöse aus Geldspielautomaten 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5494, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4187, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5495, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4188, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5496, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4200, 4000, 'Erlöse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5497, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4300, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5498, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4301, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5499, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4302, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5500, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4303, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5501, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4304, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5502, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4305, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5503, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4306, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5504, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4307, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5505, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4308, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5506, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4309, 4000, 'Erlöse 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5507, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4310, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5508, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4311, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5509, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4312, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5510, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4313, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5511, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4314, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5512, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4315, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5513, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4316, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5514, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4317, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5515, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4318, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5516, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4319, 4000, 'Erlöse aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5517, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4320, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5518, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4321, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5519, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4322, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5520, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4323, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5521, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4324, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5522, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4325, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5523, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4326, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5524, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4327, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5525, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4328, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5526, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4329, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5527, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4330, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5528, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4331, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen elektronischen Dienstleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5529, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4332, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5530, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4333, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5531, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4334, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5532, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4335, 4000, 'Erlöse aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5533, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4336, 4000, 'Erlöse aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5534, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4337, 4000, 'Erlöse aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5535, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4338, 4000, 'Erlöse aus im Drittland steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5536, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4339, 4000, 'Erlöse aus im anderen EU-Land steuerbaren Leistungen, im Inland nicht steuerbare Umsätze'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5537, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4340, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5538, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4341, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5539, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4342, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5540, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4343, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5541, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4344, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5542, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4345, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5543, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4346, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5544, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4347, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5545, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4348, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5546, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4349, 4000, 'Erlöse 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5547, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4400, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5548, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4401, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5549, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4402, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5550, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4403, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5551, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4404, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5552, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4405, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5553, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4406, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5554, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4407, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5555, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4408, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5556, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4409, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5557, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4410, 4000, 'Erlöse 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5558, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4411, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5559, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4412, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5560, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4413, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5561, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4414, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5562, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4415, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5563, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4416, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5564, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4417, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5565, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4418, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5566, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4419, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5567, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4420, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5568, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4421, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5569, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4422, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5570, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4423, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5571, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4424, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5572, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4425, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5573, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4426, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5574, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4427, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5575, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4428, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5576, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4429, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5577, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4430, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5578, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4431, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5579, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4432, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5580, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4433, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5581, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4434, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5582, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4435, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5583, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4436, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5584, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4437, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5585, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4438, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5586, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4439, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5587, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4440, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5588, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4441, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5589, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4442, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5590, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4443, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5591, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4444, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5592, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4445, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5593, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4446, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5594, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4447, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5595, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4448, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5596, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4449, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5597, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4499, 4000, 'Nebenerlöse (Bezug zu Materialaufwand)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5598, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4500, 4, 'Sonderbetriebseinnahmen, Tätigkeitsvergütung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5599, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4501, 4, 'Sonderbetriebseinnahmen, Miet-/Pachteinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5600, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4502, 4, 'Sonderbetriebseinnahmen, Zinseinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5601, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4503, 4, 'Sonderbetriebseinnahmen, Haftungsvergütung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5602, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4504, 4, 'Sonderbetriebseinnahmen, Pensionszahlungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5603, 'SKR04', 'Betriebliche Erträge', 'Konten für die Verbuchung von Sonderbetriebseinnahmen', 4505, 4, 'Sonderbetriebseinnahmen, sonstige Sonderbetriebseinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5604, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4510, 4000, 'Erlöse Abfallverwertung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5605, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4520, 4000, 'Erlöse Leergut'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5606, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4560, 4000, 'Provisionsumsätze'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5607, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4561, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5608, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4562, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5609, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4563, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5610, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4564, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 8 ff. UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5611, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4565, 4000, 'Provisionsumsätze, steuerfrei (§ 4 Nr. 5 UStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5612, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4566, 4000, 'Provisionsumsätze 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5613, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4567, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5614, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4568, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5615, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4569, 4000, 'Provisionsumsätze 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5616, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4570, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5617, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4571, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5618, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4572, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5619, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4573, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5620, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4574, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5621, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4575, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, steuerfrei § 4 Nr. 5 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5622, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4576, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5623, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4577, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5624, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4578, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5625, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4579, 4000, 'Sonstige Erträge aus Provisionen, Lizenzen und Patenten, 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5626, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4580, 4000, 'Statistisches Konto Erlöse zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5627, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4581, 4000, 'Statistisches Konto Erlöse zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5628, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4582, 4000, 'Statistisches Konto Erlöse steuerfrei und nicht steuerbar (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5629, 'SKR04', 'Betriebliche Erträge', 'Statistische Konten EÜR', 4589, 4000, 'Gegenkonto 4580-4582 bei Aufteilung der Erlöse nach Steuersätzen (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5630, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4600, 4000, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5631, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4605, 4000, 'Entnahme von Gegenständen ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5632, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4608, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5633, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4609, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5634, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4610, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5635, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4611, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5636, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4612, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5637, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4613, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5638, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4614, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5639, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4615, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5640, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4616, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5641, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4617, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5642, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4618, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5643, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4619, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5644, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4620, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5645, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4621, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5646, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4622, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5647, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4623, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5648, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4624, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5649, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4625, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5650, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4626, 4000, 'Entnahme durch Unternehmer für Zwecke außerhalb des Unternehmens (Waren) 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5651, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4627, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5652, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4628, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5653, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4629, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5654, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4630, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5655, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4631, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5656, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4632, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5657, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4633, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5658, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4634, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5659, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4635, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5660, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4636, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5661, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4637, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5662, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4638, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Telefon-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5663, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4639, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens ohne USt (Kfz-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5664, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4640, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5665, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4641, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5666, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4642, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5667, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4643, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5668, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4644, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5669, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4645, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Kfz-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5670, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4646, 4000, 'Verwendung von Gegenständen für Zwecke außerhalb des Unternehmens 19 % USt (Telefon-Nutzung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5671, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4647, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5672, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4648, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5673, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4649, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5674, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4650, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5675, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4651, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5676, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4652, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5677, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4653, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5678, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4654, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5679, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4655, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5680, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4656, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5681, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4657, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5682, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4658, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5683, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4659, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5684, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4660, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5685, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4661, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5686, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4662, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5687, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4663, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5688, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4664, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5689, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4665, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5690, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4666, 4000, 'Unentgeltliche Erbringung einer sonstigen Leistung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5691, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4667, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5692, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4668, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5693, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4669, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5694, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4670, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5695, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4671, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5696, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4672, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5697, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4673, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5698, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4674, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5699, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4675, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5700, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4676, 4000, 'Unentgeltliche Zuwendung von Waren 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5701, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4677, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5702, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4678, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5703, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4679, 4000, 'Unentgeltliche Zuwendung von Waren ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5704, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4680, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5705, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4681, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5706, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4682, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5707, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4683, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5708, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4684, 4000, 'Unentgeltliche Zuwendung von Waren 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5709, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4685, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5710, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4686, 4000, 'Unentgeltliche Zuwendung von Gegenständen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5711, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4688, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5712, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4689, 4000, 'Unentgeltliche Zuwendung von Gegenständen ohne USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5713, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4690, 4000, 'Nicht steuerbare Umsätze (Innenumsätze)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5714, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4695, 4000, 'Umsatzsteuervergütungen, z.B. nach § 24 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5715, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4699, 4000, 'Direkt mit dem Umsatz verbundene Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5716, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4700, 4000, 'Erlösschmälerungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5717, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4701, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5718, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4702, 4700, 'Erlösschmälerungen für steuerfreie Umsätze nach § 4 Nr. 2-7 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5719, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4703, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze ohne Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5720, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4704, 4700, 'Erlösschmälerungen für sonstige steuerfreie Umsätze mit Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5721, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4705, 4700, 'Erlösschmälerungen aus steuerfreien Umsätzen § 4 Nr. 1a UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5722, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4706, 4700, 'Erlösschmälerungen für steuerfreie innergemeinschaftliche Dreiecksgeschäfte nach § 25b Abs. 2, 4 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5723, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4710, 4700, 'Erlösschmälerungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5724, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4711, 4700, 'Erlösschmälerungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5725, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4712, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5726, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4713, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5727, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4714, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5728, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4715, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5729, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4716, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5730, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4717, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5731, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4718, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5732, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4719, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5733, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4720, 4700, 'Erlösschmälerungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5734, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4721, 4700, 'Erlösschmälerungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5735, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4722, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5736, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4723, 4700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5737, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4724, 4700, 'Erlösschmälerungen aus steuerfreien innergemeinschaftlichen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5738, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4725, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5739, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4726, 4700, 'Erlösschmälerungen aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5740, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4727, 4700, 'Erlösschmälerungen aus im anderen EU-Land steuerpflichtigen Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5741, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4728, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5742, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4729, 4000, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5743, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4730, 4000, 'Gewährte Skonti'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5744, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4731, 4730, 'Gewährte Skonti 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5745, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4732, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5746, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4733, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5747, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4734, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5748, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4735, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5749, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4736, 4730, 'Gewährte Skonti 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5750, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4737, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5751, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4738, 4730, 'Gewährte Skonti aus Lieferungen von Mobilfunkgeräten, Tablet-Computern, Spielekonsolen und integrierten Schaltkreisen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5752, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4741, 4730, 'Gewährte Skonti aus Leistungen, für die der Leistungsempfänger die Umsatzsteuer nach § 13b UStG schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5753, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4742, 4730, 'Gewährte Skonti aus Erlösen aus im anderen EU-Land steuerpflichtigen sonstigen Leistungen, für die der Leistungsempfänger die Umsatzsteuer schuldet'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5754, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4743, 4730, 'Gewährte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen § 4 Nr. 1b UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5755, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4744, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5756, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4745, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5757, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4746, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5758, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4747, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5759, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4748, 4730, 'Gewährte Skonti aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5760, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4749, 4730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5761, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4750, 4769, 'Gewährte Boni 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5762, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4751, 4769, 'Gewährte Boni 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5763, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4752, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5764, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4753, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5765, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4754, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5766, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4755, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5767, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4756, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5768, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4757, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5769, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4758, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5770, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4759, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5771, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4760, 4769, 'Gewährte Boni 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5772, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4761, 4769, 'Gewährte Boni 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5773, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4762, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5774, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4763, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5775, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4764, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5776, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4765, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5777, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4766, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5778, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4767, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5779, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4768, 4769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5780, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4769, 4000, 'Gewährte Boni'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5781, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4770, 4000, 'Gewährte Rabatte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5782, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4780, 4770, 'Gewährte Rabatte 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5783, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4781, 4770, 'Gewährte Rabatte 7 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5784, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4782, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5785, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4783, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5786, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4784, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5787, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4785, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5788, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4786, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5789, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4787, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5790, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4788, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5791, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4789, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5792, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4790, 4770, 'Gewährte Rabatte 19 % Ust'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5793, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4791, 4770, 'Gewährte Rabatte 19 % Ust'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5794, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4792, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5795, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4793, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5796, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4794, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5797, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4795, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5798, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4796, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5799, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4797, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5800, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4798, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5801, 'SKR04', 'Betriebliche Erträge', 'Umsatzerlöse', 4799, 4770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5802, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4800, 4, 'Bestandsveränderungen – fertige Erzeugnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5803, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4810, 4, 'Bestandsveränderungen – unfertige Erzeugnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5804, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4815, 4, 'Bestandsveränderungen – unfertige Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5805, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4816, 4, 'Bestandsveränderungen in Ausführung befindlicher Bauaufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5806, 'SKR04', 'Betriebliche Erträge', 'Erhöhung oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen', 4818, 4, 'Bestandsveränderungen in Arbeit befindlicher Aufträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5807, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4820, 4, 'Andere aktivierte Eigenleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5808, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4824, 4820, 'Aktivierte Eigenleistungen (den Herstellungskosten zurechenbare Fremdkapitalzinsen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5809, 'SKR04', 'Betriebliche Erträge', 'Andere aktivierte Eigenleistungen', 4825, 4820, 'Aktivierte Eigenleistungen zur Erstellung von selbst geschaffenen immateriellen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5810, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4830, 4, 'Sonstige betriebliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5811, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4832, 4830, 'Sonstige betriebliche Erträge von verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5812, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4833, 4830, 'Andere Nebenerlöse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5813, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4834, 4830, 'Sonstige Erträge betrieblich und regelmäßig 16 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5814, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4835, 4830, 'Sonstige Erträge betrieblich und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5815, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4836, 4830, 'Sonstige Erträge betrieblich und regelmäßig 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5816, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4837, 4830, 'Sonstige Erträge betriebsfremd und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5817, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4838, 4830, 'Erstattete Vorsteuer anderer Länder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5818, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4839, 4830, 'Sonstige Erträge unregelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5819, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4840, 4830, 'Erträge aus der Währungsumrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5820, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4841, 4830, 'Sonstige Erträge betrieblich und regelmäßig, steuerfrei § 4 Nr. 8 ff. UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5821, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4842, 4830, 'Sonstige betriebliche Erträge steuerfrei z. B. § 4 Nr. 2-7 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5822, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4843, 4830, 'Erträge aus Bewertung Finanzmittelfonds'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5823, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4844, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5824, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4845, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5825, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4846, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5826, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4847, 4830, 'Erträge aus der Währungsumrechnung (nicht § 256a HGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5827, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4848, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5828, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4849, 4830, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5829, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4850, 4830, 'Erlöse aus Verkäufen immaterieller Vermögensgengenstände (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5830, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4851, 4830, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5831, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4852, 4830, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5832, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4855, 4830, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5833, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4856, 4830, 'Anlagenabgänge immaterielle Vermögensgegenstände (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5834, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4857, 4830, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5835, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4858, 4830, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG (Restbuchwert bei Buchgewinn)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5836, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4860, 4830, 'Grundstückserträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5837, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4861, 4860, 'Erlöse aus Vermietung und Verpachtung, umsatzsteuerfrei § 4 Nr. 12 UStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5838, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4862, 4860, 'erlöse aus Vermietung und Verpachtung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5839, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4863, 4860, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5840, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4864, 4860, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5841, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4865, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens 19 % USt für § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5842, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4866, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5843, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4867, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens, umsatzsteuerfrei § 4 Nr. 8 ff. UStG i. V. m. § 4 Abs. 3 Satz 4 EStG, § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5844, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4869, 4830, 'Erlöse aus Verkäufen von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5845, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4900, 4830, 'Erträge aus dem Abgang von Gegenständen des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5846, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4901, 4830, 'Erträge aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5847, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4905, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens außer Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5848, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4906, 4830, 'Erträge aus dem Abgang von Gegenständen des Umlaufvermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5849, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4910, 4830, 'Erträge aus Zuschreibungen des Sachanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5850, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4911, 4830, 'Erträge aus Zuschreibungen des immateriellen Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5851, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4912, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5852, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4913, 4830, 'Erträge aus Zuschreibungen des Finanzanlagevermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5853, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4914, 4830, 'Erträge aus Zuschreibungen § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5854, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4915, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens (außer Vorräte)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5855, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4916, 4830, 'Erträge aus Zuschreibungen des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 Satz 8 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5856, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4920, 4830, 'Erträge aus der Herabsetzung der Pauschalwertberichtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5857, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4923, 4830, 'Erträge aus der Herabsetzung der Einzelwertberichtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5858, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4925, 4830, 'Erträge aus abgeschriebenen Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5859, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4927, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5860, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4828, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 6b Abs. 10 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5861, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4829, 4830, 'Erträge aus der Auflösung der Rücklage für Ersatzbeschaffung R 6.6 EstR'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5862, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4930, 4830, 'Erträge aus der Auflösung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5863, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4932, 4830, 'Erträge aus der Herabsetzung von Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5864, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4935, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5865, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4936, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen (Ansparabschreibung nach § 7 g Abs. 2 EStG)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5866, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4937, 4830, 'Erträge aus der Auflösung steuerrechtlicher Sonderabschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5867, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4938, 4830, 'Erträge aus der Auflösung einer steuerlichen Rücklage nach § 4g EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5868, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4939, 4830, 'Erträge aus der Auflösung von steuerlichen Rücklagen nach 3 53 Abs, 16 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5869, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4940, 4830, 'Verrechnete sonstige Sachbezüge (keine Waren)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5870, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4941, 4830, 'Sachbezüge 7 % USt (Waren)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5871, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4942, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5872, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4943, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5873, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4944, 4830, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5874, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4945, 4830, 'Sachbezüge 19 % USt (Waren)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5875, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4946, 4830, 'Verrechnete sonstige Sachbezüge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5876, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4947, 4830, 'Verrechnete sonstige Sachbezüge aus Kfz-Gestellung 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5877, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4948, 4830, 'Verrechnete sonstige Sachbezüge 19 % USt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5878, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4949, 4830, 'Verrechnete sonstige Sachbezüge ohne Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5879, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4960, 4830, 'Periodenfremde Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5880, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4970, 4830, 'Versicherungsentschädigungen und Schadenersatzleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5881, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4972, 4830, 'Erstattungen Aufwendungsausgleichsgesetz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5882, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4975, 4830, 'Investitionszuschüsse (steuerpflichtig)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5883, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4980, 4830, 'Investitionszulagen (steuerfrei)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5884, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4981, 4830, 'Steuerfreie Erträge aus der Auflösung von steuerlichen Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5885, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4982, 4830, 'Sonstige steuerfreie Betriebseinnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5886, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4987, 4830, 'Erträge aus der Aktivierung unentgeltlich erworbener Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5887, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4989, 4830, 'Kostenerstattungen, Rückvergütungen und Gutschriften für frühere Jahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5888, 'SKR04', 'Betriebliche Erträge', 'Sonstige betriebliche Erträge', 4992, 4830, 'Erträge aus Verwaltungskostenumlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5889, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 5, 5, 'Betriebliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5890, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5000, 5, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5891, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5001, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5892, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5002, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5893, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5003, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5894, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5004, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5895, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5005, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5896, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5006, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5897, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5007, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5898, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5008, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5899, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5009, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5900, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5010, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5901, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5011, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5902, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5012, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5903, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5013, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5904, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5014, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5905, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5015, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5906, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5016, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5907, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5017, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5908, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5018, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5909, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5019, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5910, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5020, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5911, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5021, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5912, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5022, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5913, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5023, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5914, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5024, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5915, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5025, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5916, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5026, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5917, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5027, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5918, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5028, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5919, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5029, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5920, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5030, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5921, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5031, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5922, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5032, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5923, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5033, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5924, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5034, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5925, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5035, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5926, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5036, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5927, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5037, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5928, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5038, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5929, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5039, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5930, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5040, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5931, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5041, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5932, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5042, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5933, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5043, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5934, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5044, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5935, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5045, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5936, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5046, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5937, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5047, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5938, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5048, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5939, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5049, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5940, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5050, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5941, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5051, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5942, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5052, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5943, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5053, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5944, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5054, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5945, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5055, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5946, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5056, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5947, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5057, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5948, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5058, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5949, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5059, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5950, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5060, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5951, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5061, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5952, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5062, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5953, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5063, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5954, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5064, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5955, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5065, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5956, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5066, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5957, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5067, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5958, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5068, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5959, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5069, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5960, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5070, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5961, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5071, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5962, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5072, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5963, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5073, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5964, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5074, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5965, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5075, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5966, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5076, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5967, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5077, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5968, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5078, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5969, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5079, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5970, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5080, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5971, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5081, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5972, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5082, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5973, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5083, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5974, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5084, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5975, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5085, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5976, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5086, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5977, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5087, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5978, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5088, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5979, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5089, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5980, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5090, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5981, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5091, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5982, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5092, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5983, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5093, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5984, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5094, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5985, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5095, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5986, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5096, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5987, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5097, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5988, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5098, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5989, 'SKR04', 'Betriebliche Aufwendungen', 'Material- und Stoffverbrauch', 5099, 5000, 'Aufwendungen für Roh-, Hilfs- und Betriebsstoffe und für bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5990, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5100, 5, 'Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5991, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5110, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5992, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5111, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5993, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5112, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5994, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5113, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5995, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5114, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5996, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5115, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5997, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5116, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5998, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5117, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 5999, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5118, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6000, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5119, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6001, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5120, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6002, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5121, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6003, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5122, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6004, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5123, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6005, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5124, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6006, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5125, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6007, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5126, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6008, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5127, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6009, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5128, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6010, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5129, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6011, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5130, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6012, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5131, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6013, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5132, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6014, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5133, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6015, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5134, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6016, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5135, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6017, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5136, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6018, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5137, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6019, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5138, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6020, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5139, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6021, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5140, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6022, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5141, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6023, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5142, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6024, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5143, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6025, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5144, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6026, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5145, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6027, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5146, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6028, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5147, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6029, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5148, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6030, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5149, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6031, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5150, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6032, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5151, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6033, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5152, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6034, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5153, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6035, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5154, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6036, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5155, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6037, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5156, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6038, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5157, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6039, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5158, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6040, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5159, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6041, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5160, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6042, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5161, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6043, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5162, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6044, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5163, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6045, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5164, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6046, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5165, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6047, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5166, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6048, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5167, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6049, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5168, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6050, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5169, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6051, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5170, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6052, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5171, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6053, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5172, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6054, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5173, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6055, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5174, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6056, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5175, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6057, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5176, 5100, 'Einkauf Roh-, Hilfs- und Betriebsstoffe aus einem USt-Lager § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6058, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5177, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6059, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5178, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6060, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5179, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6061, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5180, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6062, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5181, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6063, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5182, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6064, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5183, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6065, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5184, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6066, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5185, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6067, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5186, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6068, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5187, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6069, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5188, 5100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6070, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5189, 5100, 'Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6071, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5190, 5, 'Energiestoffe (Fertigung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6072, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5191, 5190, 'Energiestoffe (Fertigung) 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6073, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5192, 5190, 'Energiestoffe (Fertigung) 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6074, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5193, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6075, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5194, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6076, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5195, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6077, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5196, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6078, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5197, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6079, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5198, 5190, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6080, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5200, 5, 'Wareneingang'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6081, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5300, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6082, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5301, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6083, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5302, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6084, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5303, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6085, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5304, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6086, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5305, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6087, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5306, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6088, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5307, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6089, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5308, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6090, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5309, 5200, 'Wareneingang Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6091, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5310, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6092, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5311, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6093, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5312, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6094, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5313, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6095, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5314, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6096, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5315, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6097, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5316, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6098, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5317, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6099, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5318, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6100, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5319, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6101, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5320, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6102, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5321, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6103, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5322, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6104, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5323, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6105, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5324, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6106, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5325, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6107, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5326, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6108, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5327, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6109, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5328, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6110, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5329, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6111, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5330, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6112, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5331, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6113, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5332, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6114, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5333, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6115, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5334, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6116, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5335, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6117, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5336, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6118, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5337, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6119, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5338, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6120, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5339, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6121, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5340, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6122, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5341, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6123, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5342, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6124, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5343, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6125, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5344, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6126, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5345, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6127, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5346, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6128, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5347, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6129, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5348, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6130, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5349, 5200, 'Wareneingang ohne Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6131, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5400, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6132, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5401, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6133, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5402, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6134, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5403, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6135, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5404, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6136, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5405, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6137, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5406, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6138, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5407, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6139, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5408, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6140, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5409, 5200, 'Wareneingang 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6141, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5410, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6142, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5411, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6143, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5412, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6144, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5413, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6145, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5414, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6146, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5415, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6147, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5416, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6148, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5417, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6149, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5418, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6150, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5419, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6151, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5420, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6152, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5421, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6153, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5422, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6154, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5423, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6155, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5424, 5200, 'Innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6156, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5425, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6157, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5426, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6158, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5427, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6159, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5428, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6160, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5429, 5200, 'Innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6161, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5430, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6162, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5431, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6163, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5432, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6164, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5433, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6165, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5434, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6166, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5435, 5200, 'Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6167, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5436, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6168, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5437, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6169, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5438, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6170, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5439, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6171, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5440, 5200, 'Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatz-Identifikationsnummer 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6172, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5441, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6173, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5442, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6174, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5443, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6175, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5444, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6176, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5445, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6177, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5446, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6178, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5447, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6179, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5448, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6180, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5449, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6181, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5500, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6182, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5501, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6183, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5502, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6184, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5503, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6185, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5504, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6186, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5505, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6187, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5506, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6188, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5507, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6189, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5508, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6190, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5509, 5200, 'Wareneingang 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6191, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5510, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6192, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5511, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6193, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5512, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6194, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5513, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6195, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5514, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6196, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5515, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6197, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5516, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6198, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5517, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6199, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5518, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6200, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5519, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6201, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5520, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6202, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5521, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6203, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5522, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6204, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5523, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6205, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5524, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6206, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5525, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6207, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5526, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6208, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5527, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6209, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5528, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6210, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5529, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6211, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5530, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6212, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5531, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6213, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5532, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6214, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5533, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6215, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5534, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6216, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5535, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6217, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5536, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6218, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5537, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6219, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5538, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6220, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5539, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6221, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5540, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6222, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5541, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6223, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5542, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6224, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5543, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6225, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5544, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6226, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5545, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6227, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5546, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6228, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5547, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6229, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5548, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6230, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5549, 5200, 'Wareneingang 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6231, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5550, 5200, 'Steuerfreier innergemeinschaftlicher Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6232, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5551, 5200, 'Wareneingang im Drittland steuerbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6233, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5552, 5200, 'Erwerb 1. Abnehmer innerhalb eines Dreiecksgeschäftes'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6234, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5553, 5200, 'Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6235, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5554, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6236, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5555, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6237, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5556, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6238, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5557, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6239, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5558, 5200, 'Wareneingang im anderen EU-Land steuerbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6240, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5559, 5200, 'Steuerfreie Einfuhren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6241, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5560, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6242, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5561, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6243, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5562, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6244, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5563, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6245, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5564, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6246, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5565, 5200, 'Waren aus einem Umsatzsteuerlager, § 13a UStG 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6247, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5566, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6248, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5567, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6249, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5568, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6250, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5569, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6251, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5600, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6252, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5601, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6253, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5602, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6254, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5603, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6255, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5604, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6256, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5605, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6257, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5606, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6258, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5607, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6259, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5608, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6260, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5609, 5200, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6261, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5610, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6262, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5611, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6263, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5612, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6264, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5613, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6265, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5614, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6266, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5615, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6267, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5616, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6268, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5617, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6269, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5618, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6270, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5619, 5200, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6271, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5650, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6272, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5651, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6273, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5652, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6274, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5653, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6275, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5654, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6276, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5655, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6277, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5656, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6278, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5657, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6279, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5658, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6280, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5659, 5200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6281, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5660, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6282, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5661, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6283, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5662, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6284, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5663, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6285, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5664, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6286, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5665, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6287, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5666, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6288, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5667, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6289, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5668, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6290, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5669, 5200, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6291, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5700, 5200, 'Nachlässe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6292, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5701, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6293, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5710, 5700, 'Nachlässe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6294, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5711, 5700, 'Nachlässe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6295, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5712, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6296, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5713, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6297, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5714, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6298, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5715, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6299, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5716, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6300, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5717, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6301, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5718, 5700, 'Nachlässe aus Einkauf Roh-, Hilfs- und Betriebsstoffe, innergemeinschaftlicher Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6302, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5719, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6303, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5720, 5700, 'Nachlässe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6304, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5722, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6305, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5723, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6306, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5724, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6307, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5725, 5700, 'Nachlässe aus innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6308, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5726, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6309, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5727, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6310, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5728, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6311, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5729, 5700, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6312, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5730, 5200, 'Erhaltene Skonti'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6313, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5731, 5730, 'Erhaltene Skonti 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6314, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5732, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6315, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5733, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6316, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5734, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6317, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5735, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6318, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5736, 5730, 'Erhaltene Skonti 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6319, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5737, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6320, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5738, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6321, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5739, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6322, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5740, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6323, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5741, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6324, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5742, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6325, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5743, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6326, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5744, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe aus steuerpflichtigem innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6327, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5745, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6328, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5746, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6329, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5747, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6330, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5748, 5730, 'Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6331, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5749, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6332, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5750, 5769, 'Erhaltene Boni 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6333, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5751, 5769, 'Erhaltene Boni 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6334, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5752, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6335, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5753, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6336, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5754, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6337, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5755, 5769, 'Erhaltene Boni aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6338, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5756, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6339, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5757, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6340, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5758, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6341, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5759, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6342, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5760, 5769, 'Erhaltene Boni 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6343, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5761, 5769, 'Erhaltene Boni 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6344, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5762, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6345, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5763, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6346, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5764, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6347, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5765, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6348, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5766, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6349, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5767, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6350, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5768, 5769, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6351, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5769, 5200, 'Erhaltene Boni'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6352, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5770, 5200, 'Erhaltene Rabatte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6353, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5780, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6354, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5781, 5770, 'Erhaltene Rabatte 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6355, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5782, 5770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6356, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5783, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6357, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5784, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6358, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5785, 5770, 'Erhaltene Rabatte aus Einkauf Roh-, Hilfs- und Betriebsstoffe 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6359, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5786, 5770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6360, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5787, 5770, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6361, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5788, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6362, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5789, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6363, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5790, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6364, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5791, 5770, 'Erhaltene Rabatte 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6365, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5792, 5730, 'Erhaltene Skonti aus Erwerb Roh-, Hilfs- und Betriebsstoffe als letzter Abnehmer innerhalb Dreiecksgeschäft 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6366, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5793, 5730, 'Erhaltene Skonti aus Erwerb Waren als letzter Abnehmer innerhalb Dreiecksgeschäfte 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6367, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5794, 5730, 'Erhaltene Skonti 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6368, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5795, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6369, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5796, 5730, 'Erhaltene Skonti 10,7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6370, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5797, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6371, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5798, 5730, 'Erhaltene Skonti aus Einkauf Roh-, Hilfs- und Betriebsstoffe 5,5 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6372, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5799, 5730, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6373, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5800, 5, 'Bezugsnebenkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6374, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5820, 5, 'Leergut'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6375, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5840, 5, 'Zölle und Einfuhrabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6376, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5860, 5, 'Verrechnete Stoffkosten (Gegenkonto 5000-99)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6377, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5880, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe sowie bezogene Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6378, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5881, 5, 'Bestandsveränderungen Waren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6379, 'SKR04', 'Betriebliche Aufwendungen', 'Materialaufwand', 5885, 5, 'Bestandsveränderungen Roh-, Hilfs- und Betriebsstoffe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6380, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5900, 5, 'Fremdleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6381, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5906, 5900, 'Fremdleistungen 19 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6382, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5907, 5900, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6383, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5908, 5900, 'Fremdleistungen 7 % Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6384, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5909, 5900, 'Fremdleistungen ohne Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6385, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5910, 5, 'Bauleistungen eine im Inland ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6386, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5911, 5910, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6387, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5912, 5910, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6388, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5913, 5, 'Sonstige Leistungen eines im andere EU-Land ansässigen Unternehmens 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6389, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5914, 5913, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6390, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5915, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 7 % Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6391, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5916, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6392, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5917, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6393, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5918, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6394, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5919, 5915, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6395, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5920, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6396, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5921, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6397, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5922, 5921, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6398, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5923, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6399, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5924, 5923, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6400, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5925, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6401, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5926, 5, 'Leistungen eines im Ausland ansässigen Unternehmers 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6402, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5927, 5926, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6403, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5928, 5926, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6404, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5829, 5926, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6405, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5930, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6406, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5931, 5930, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6407, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5932, 5930, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6408, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5933, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6409, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5934, 5933, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6410, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5935, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 7 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6411, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5936, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6412, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5937, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6413, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5938, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6414, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5939, 5935, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6415, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5940, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6416, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5941, 5, 'Bauleistungen eines im Inland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6417, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5942, 5941, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6418, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5943, 5, 'Sonstige Leistungen eines im anderen EU-Land ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6419, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5944, 5943, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6420, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5945, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6421, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5946, 5, 'Leistungen eines im Ausland ansässigen Unternehmers ohne Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6422, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5947, 5946, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6423, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5948, 5946, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6424, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5949, 5946, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6425, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5950, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6426, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5951, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird 19 % Vorsteuer und 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6427, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5952, 5951, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6428, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5953, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6429, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5954, 5, 'Erhaltene Skonti aus Leistungen, für die als Leistungsempfänger die Steuer nach § 13b UStG geschuldet wird ohne Vorsteuer, mit 19 % Umsatzsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6430, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5955, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6431, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5956, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6432, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5957, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6433, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5958, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6434, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5959, 5954, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6435, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5960, 5, 'Leistungen nach § 13b UStG mit Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6436, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5965, 5, 'Leistungen nach § 13b UStG ohne Vorsteuerabzug'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6437, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5970, 5, 'Fremdleistungen (Miet- und Pachtzinsen bewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6438, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5975, 5, 'Fremdleistungen (Miet- und Pachtzinsen unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6439, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5980, 5, 'Fremdleistungen (Entgelte für Rechte und Lizenzen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6440, 'SKR04', 'Betriebliche Aufwendungen', 'Aufwendungen für bezogene Leistungen', 5985, 5, 'Fremdleistungen (Vergütungen für die Überlassung von Wirtschaftsgütern – mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6441, 'SKR04', 'Betriebliche Aufwendungen', 'Betriebliche Aufwendungen', 6, 6, 'Betriebliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6442, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6000, 6, 'Löhne und Gehälter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6443, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6010, 6000, 'Löhne'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6444, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6020, 6000, 'Gehälter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6445, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6024, 6000, 'Geschäftsführergehälter der GmbH-Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6446, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6026, 6000, 'Tantiemen Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6447, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6027, 6000, 'Geschäftsführergehälter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6448, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6028, 6000, 'Vergütung an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6449, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6029, 6000, 'Tantiemen Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6450, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6030, 6000, 'Aushilfslöhne'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6451, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6035, 6000, 'Löhne für Minijobs'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6452, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6036, 6000, 'Pauschale Steuern für Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6453, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6037, 6000, 'Pauschale Steuern für Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6454, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6038, 6000, 'Pauschale Steuern für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6455, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6039, 6000, 'Pauschale Steuern für Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6456, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6040, 6000, 'Pauschale Steuer für Aushilfen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6457, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6045, 6000, 'Bedienungsgelder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6458, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6050, 6000, 'Ehegattengehalt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6459, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6060, 6000, 'Freiwillige soziale Aufwendungen, lohnsteuerpflichtig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6460, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6066, 6000, 'Freiwillige Zuwendungen an Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6461, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6067, 6000, 'Freiwillige Zuwendungen an Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6462, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6068, 6000, 'Freiwillige Zuwendungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6463, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6069, 6000, 'Pauschale Steuer auf sonstige Bezüge (z. B. Fahrtkostenzuschüsse)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6464, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6070, 6000, 'Krankengeldzuschüsse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6465, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6071, 6000, 'Sachzuwendungen und Dienstleistungen an Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6466, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6072, 6000, 'Sachzuwendungen und Dienstleistungen an Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6467, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6073, 6000, 'Sachzuwendungen und Dienstleistungen an Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6468, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6074, 6000, 'Sachzuwendungen und Dienstleistungen an angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6469, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6075, 6000, 'Zuschüsse der Agenturen für Arbeit (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6470, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6076, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6471, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6077, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6472, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6078, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für angestellte Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6473, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6079, 6000, 'Aufwendungen aus der Veränderung von Urlaubsrückstellungen für Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6474, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6080, 6000, 'Vermögenswirksame Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6475, 'SKR04', 'Betriebliche Aufwendungen', 'Löhne und Gehälter', 6090, 6000, 'Fahrtkostenerstattung Wohnung/Arbeitsstätte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6476, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6100, 6, 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6477, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6110, 6100, 'Gesetzliche soziale Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6478, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6118, 6100, 'Gesetzliche soziale Aufwendungen für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6479, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6120, 6100, 'Beiträge zur Berufsgenossenschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6480, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6130, 6100, 'Freiwillige soziale Aufwendungen, lohnsteuerfrei'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6481, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6140, 6100, 'Aufwendungen für Altersversorgung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6482, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6147, 6100, 'Pauschale Steuer auf sonstige Bezüge (z. B. Direktversicherungen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6483, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6148, 6100, 'Aufwendungen für Altersversorgung für Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6484, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6149, 6100, 'Aufwendungen für Altersversorgung für Gesellschafter-Geschäftsführer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6485, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6150, 6100, 'Versorgungskasse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6486, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6160, 6100, 'Aufwendungen für Unterstützung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6487, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6170, 6100, 'Sonstige soziale Abgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6488, 'SKR04', 'Betriebliche Aufwendungen', 'Soziale Abgaben und Aufwendungen für Altersversorgung und für Unterstützung', 6171, 6100, 'Soziale Abgaben für Minijobber'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6489, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6200, 6, 'Abschreibungen auf immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6490, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6201, 6, 'Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6491, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6205, 6, 'Abschreibungen auf den Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6492, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6209, 6, 'Außerplanmäßige Abschreibungen auf den Geschäfts- oder Firmenwert'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6493, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6210, 6, 'Außerplanmäßige Abschreibungen auf immaterielle Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6494, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6211, 6, 'Außerplanmäßige Abschreibungen auf selbst geschaffene immaterielle Vermögensgegenstände'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6495, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6220, 6, 'Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Gebäude)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6496, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6221, 6, 'Abschreibungen auf Gebäude'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6497, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6222, 6, 'Abschreibungen auf Kfz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6498, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6223, 6, 'Abschreibungen auf Gebäudeteil des häuslichen Arbeitszimmers'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6499, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6230, 6, 'Außerplanmäßige Abschreibungen auf Sachanlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6500, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6231, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung der Gebäude'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6501, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6232, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung des Kfz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6502, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6233, 6, 'Absetzung für außergewöhnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6503, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6240, 6, 'Abschreibungen auf Sachanlagen auf Grund steuerlicher Sondervorschriften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6504, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6241, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (ohne Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6505, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6242, 6, 'Sonderabschreibungen nach § 7g Abs. 5 EStG (für Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6506, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6243, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (ohne Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6507, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6244, 6, 'Kürzung der Anschaffungs- oder Herstellungskosten gemäß § 7g Abs. 2 EStG (für Kfz)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6508, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6250, 6, 'Kaufleasing'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6509, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6260, 6, 'Sofortabschreibungen geringwertiger Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6510, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6262, 6, 'Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6511, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6264, 6, 'Abschreibungen auf den Sammelposten Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6512, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6266, 6, 'Außerplanmäßige Abschreibungen auf aktivierte, geringwertige Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6513, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf immaterielle Vermögensgegenstände des Anlagevermögens und Sachanlagen', 6268, 6266, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6514, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6270, 6, 'Abschreibungen auf sonstige Vermögensgegenstände des Umlaufvermögens (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6515, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6272, 6, 'Abschreibungen auf Umlaufvermögen, steuerrechtlich bedingt (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6516, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6278, 6, 'Abschreibungen auf Roh-, Hilfs- und Betriebsstoffe/Waren (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6517, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6279, 6, 'Abschreibungen auf fertige und unfertige Erzeugnisse (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6518, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6280, 6, 'Forderungsverluste (soweit unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6519, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6281, 6, 'Forderungsverluste 7 % USt (sowie unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6520, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6282, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6521, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6283, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6522, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6284, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6523, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6285, 6281, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6524, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6286, 6, 'Forderungsverluste 19 % USt (sowie unüblich hoch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6525, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6287, 6286, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6526, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6288, 6286, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6527, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6290, 6, 'Abschreibungen auf Forderungen gegenüber Kapitalgesellschaften, an denen eine Beteiligung besteht (soweit unüblich hoch), § 3c EstG/ § 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6528, 'SKR04', 'Betriebliche Aufwendungen', 'Abschreibungen auf Vermögensgegenstände des Umlaufvermögens, soweit diese die in der Kapitalgesellschaft üblichen Abschreibungen überschreiten', 6291, 6, 'Abschreibungen auf Forderungen gegenüber Gesellschaftern und nahe stehenden Personen (soweit unüblich hoch), § 8b Abs. 3 StG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6529, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6300, 6, 'Sonstige betriebliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6530, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6302, 6, 'Interimskonto für Aufwendungen in einem anderen Land, bei denen eine Vorsteuervergütung möglich ist'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6531, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6303, 6, 'Fremdleistungen/Fremdarbeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6532, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6304, 6, 'Sonstige Aufwendungen betrieblich und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6533, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6305, 6, 'Raumkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6534, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6310, 6, 'Miete (unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6535, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6312, 6, 'Miete/Aufwendungen für doppelte Haushaltsführung Unternehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6536, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6313, 6, 'Vergütung an Gesellschafter für die miet- oder pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6537, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6314, 6, 'Vergütung an Mitunternehmer für die mietweise Überassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6538, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6315, 6, 'Pacht (unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6539, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6316, 6, 'Leasing (unbewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6540, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6317, 6, 'Aufwendungen für gemietete oder gepachtete unbewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6541, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6318, 6, 'Miet- und Pachtnebenkosten, die gewerbesteuerlich nicht hinzuzurechnen sind'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6542, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6319, 6, 'Vergütung an Mitunternehmer für die pachtweise Überlassung ihrer unbeweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6543, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6320, 6, 'Heizung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6544, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6325, 6, 'Gas, Strom, Wasser'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6545, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6330, 6, 'Reinigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6546, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6335, 6, 'Instandhaltung betrieblicher Räume'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6547, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6340, 6, 'Abgaben für betrieblich genutzten Grundbesitz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6548, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6345, 6, 'Sonstige Raumkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6549, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6348, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6550, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6349, 6, 'Aufwendungen für ein häusliches Arbeitszimmer (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6551, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6350, 6, 'Grundstücksaufwendungen, betrieblich'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6552, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6352, 6, 'Sonstige Grundstücksaufwendungen (neutral)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6553, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6390, 6, 'Zuwendungen, Spenden, steuerlich nicht abziehbar'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6554, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6391, 6, 'Zuwendungen, Spenden für wissenschaftliche und kulturelle Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6555, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6392, 6, 'Zuwendungen, Spenden für mildtätige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6556, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6393, 6, 'Zuwendungen, Spenden für kirchliche, religiöse und gemeinnützige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6557, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6394, 6, 'Zuwendungen, Spenden an politische Parteien'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6558, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6395, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für gemeinnützige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6559, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6396, 6395, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6560, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6397, 6, 'Zuwendungen, Spenden in das zu erhaltende Vermögen (Vermögensstock) einer Stiftung für kirchliche, religiöse und gemeinnützige Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6561, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6398, 6, 'Zuwendungen, Spenden an Stiftungen in das zu erhaltene Vermögen (Vermögensstock) einer Stiftung für wissenschaftliche, mildtätige, kulturelle Zwecke'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6562, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6400, 6, 'Versicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6563, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6405, 6, 'Versicherungen für Gebäude'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6564, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6410, 6, 'Netto-Prämie für Rückdeckung künftiger Versorgungsleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6565, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6420, 6, 'Beiträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6566, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6430, 6, 'Sonstige Abgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6567, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6436, 6, 'Steuerlich abzugsfähige Verspätungszuschläge und Zwangsgelder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6568, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6437, 6, 'Steuerlich nicht abzugsfähige Verspätungszuschläge und Zwangsgelder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6569, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6440, 6, 'Ausgleichsabgabe i. S d. Schwerbehindertengesetzes'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6570, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6450, 6, 'Reparaturen und Instandhaltung von Bauten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6571, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6460, 6, 'Reparaturen und Instandhaltung von technischen Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6572, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6470, 6, 'Reparaturen und Instandhaltung von anderen Anlagen und Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6573, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6475, 6, 'Zuführung zu Aufwandsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6574, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6485, 6, 'Reparaturen und Instandhaltung von anderen Anlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6575, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6490, 6, 'Sonstige Reparaturen und Instandhaltung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6576, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6495, 6, 'Wartungskosten für Hard- und Software'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6577, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6498, 6, 'Mietleasing beweglicher Wirtschaftsgüter für technische Anlagen und Maschinen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6578, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6500, 6, 'Fahrzeugkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6579, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6520, 6, 'Kfz-Versicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6580, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6530, 6, 'Laufende Kfz-Betriebskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6581, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6540, 6, 'Kfz-Reparaturen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6582, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6550, 6, 'Garagenmiete'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6583, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6560, 6, 'Mietleasing Kfz'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6584, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6570, 6, 'Sonstige Kfz-Kosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6585, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6580, 6, 'Mautgebühren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6586, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6590, 6, 'Kfz-Kosten für betrieblich genutzte zum Privatvermögen gehörende Kraftfahrzeuge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6587, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6595, 6, 'Fremdfahrzeugkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6588, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6600, 6, 'Werbekosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6589, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6605, 6, 'Streuartikel'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6590, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6610, 6, 'Geschenke abzugsfähig ohne § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6591, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6611, 6, 'Geschenke abzugsfähig mit § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6592, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6612, 6, 'Pauschale Steuern für Geschenke und Zugaben abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6593, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6620, 6, 'Geschenke nicht abzugsfähig ohne § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6594, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6621, 6, 'Geschenke nicht abzugsfähig mit § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6595, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6622, 6, 'Pauschale Steuern für Geschenke und Zuwendungen nicht abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6596, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6625, 6, 'Geschenke ausschließlich betrieblich genutzt'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6597, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6629, 6, 'Zugaben mit § 37b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6598, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6630, 6, 'Repräsentationskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6599, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6640, 6, 'Bewirtungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6600, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6641, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6601, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6642, 6, 'Sonstige eingeschränkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6602, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6643, 6, 'Aufmerksamkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6603, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6644, 6, 'Nicht abzugsfähige Bewirtungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6604, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6645, 6, 'Nicht abzugsfähige Betriebsausgaben aus Werbe- und Repräsentationskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6605, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6650, 6, 'Reisekosten Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6606, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6660, 6, 'Reisekosten Arbeitnehmer Übernachtungsaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6607, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6663, 6, 'Reisekosten Arbeitnehmer Fahrtkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6608, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6664, 6, 'Reisekosten Arbeitnehmer Verpflegungsmehraufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6609, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6665, 6664, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6610, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6668, 6, 'Kilometergelderstattung Arbeitnehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6611, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6670, 6, 'Reisekosten Unternehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6612, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6672, 6, 'Reisekosten Unternehmer (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6613, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6673, 6, 'Reisekosten Unternehmer Fahrtkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6614, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6674, 6, 'Reisekosten Unternehmer Verpflegungsmehraufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6615, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6680, 6, 'Reisekosten Unternehmer Übernachtungsaufwand und Reisenebenkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6616, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6685, 6680, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6617, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6686, 6680, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6618, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6688, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6619, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6689, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (nicht abziehbarer Anteil)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6620, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6690, 6, 'Fahrten zwischen Wohnung und Betriebsstätte und Familienheimfahrten (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6621, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6691, 6, 'Verpflegungsmehraufwenungen im Rahmen der doppelten Haushaltsführung Unternehmer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6622, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6700, 6, 'Kosten der Warenabgabe'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6623, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6710, 6, 'Verpackungsmaterial'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6624, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6740, 6, 'Ausgangsfrachten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6625, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6760, 6, 'Transportversicherungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6626, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6770, 6, 'Verkaufsprovision'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6627, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6780, 6, 'Fremdarbeiten (Vertrieb)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6628, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6790, 6, 'Aufwand für Gewährleistung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6629, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6800, 6, 'Porto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6630, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6805, 6, 'Telefon'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6631, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6810, 6, 'Telefax und Internetkosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6632, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6815, 6, 'Bürobedarf'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6633, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6820, 6, 'Zeitschriften, Bücher (Fachliteratur)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6634, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6821, 6, 'Fortbildungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6635, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6822, 6, 'Freiwillige Sozialleistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6636, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6823, 6, 'Vergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6637, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6824, 6, 'Haftungsvergütung an Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6638, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6825, 6, 'Rechts- und Beratungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6639, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6827, 6, 'Abschluss- und Prüfungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6640, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6830, 6, 'Buchführungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6641, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6833, 6, 'Vergütungen an Gesellschafter für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6642, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6834, 6, 'Vergütungen an Mitunternehmer für die miet- oder pachtweise Überlassung ihrer beweglichen Wirtschaftsgüter § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6643, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6835, 6, 'Mieten für Einrichtungen (bewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6644, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6836, 6, 'Pacht (bewegliche Wirtschaftsgüter)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6645, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6837, 6, 'Aufwendungen für die zeitlich befristete Überlassung von Rechten (Lizenzen, Konzessionen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6646, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6838, 6, 'Aufwendungen für gemietete oder gepachtete bewegliche Wirtschaftsgüter, die gewerbesteuerlich hinzuzurechnen sind'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6647, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6840, 6, 'Mietleasing beweglicher Wirtschaftsgüter für Betriebs- und Geschäftsausstattung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6648, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6845, 6, 'Werkzeuge und Kleingeräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6649, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6850, 6, 'Sonstiger Betriebsbedarf'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6650, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6854, 6, 'Genossenschaftliche Rückvergütung an Mitglieder'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6651, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6855, 6, 'Nebenkosten des Geldverkehrs'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6652, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6856, 6, 'Aufwendungen aus Anteilen an Kapitalgesellschaften §§ 3Nr. 40, 3c EStG/§ 8b Abs. 1 und 4 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6653, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6857, 6, 'Veräußerungskosten § 3 Nr. 40 EStG/§ 8b Abs. 2 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6654, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6859, 6, 'Aufwendungen für Abraum- und Abfallbeseitigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6655, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6860, 6, 'Nicht abziehbare Vorsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6656, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6865, 6, 'Nicht abziehbare Vorsteuer 7 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6657, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6871, 6, 'Nicht abziehbare Vorsteuer 19 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6658, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6875, 6, 'Nicht abziehbare Vorsteuer der Aufsichtsratsvergütungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6659, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6876, 6, 'Abziehbare Aufsichtsratsvergütungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6660, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6880, 6, 'Aufwendungen aus der Währungsumrechnung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6661, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6881, 6, 'Aufwendungen aus der Währungsumrechnung (nicht § 256a HGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6662, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6883, 6, 'Aufwendungen aus Bewertung Finanzmittelfonds'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6663, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6884, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1a UStG (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6664, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6885, 6, 'Erlöse aus Verkäufen Sachanlagevermögen 19 % USt (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6665, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6886, 6885, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6666, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6887, 6885, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6667, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6888, 6, 'Erlöse aus Verkäufen Sachanlagevermögen steuerfrei § 4 Nr. 1b UStG (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6668, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6889, 6, 'Erlöse aus Verkäufen Sachanlagevermögen (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6669, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6890, 6, 'Erlöse aus Verkäufen immaterieller Vermögensgegenstände (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6670, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6891, 6, 'Erlöse aus Verkäufen Finanzanlagen (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6671, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6892, 6, 'Erlöse aus Verkäufen Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6672, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6895, 6, 'Anlagenabgänge Sachanlagen (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6673, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6896, 6, 'Anlagenabgänge immaterielle Vermögensgengenstände (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6674, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6897, 6, 'Anlagenabgänge Finanzanlagen (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6675, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6898, 6, 'Anlagenabgänge Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (Restbuchwert bei Buchverlust)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6676, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6900, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6677, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6903, 6, 'Verluste aus der Veräußerung von Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6678, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6905, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens außer Vorräte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6679, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6906, 6, 'Verluste aus dem Abgang von Gegenständen des Anlagevermögens (außer Vorräte) § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6680, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6907, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens nach § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6681, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6908, 6, 'Abgang von Wirtschaftsgütern des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG nach § 4 Abs. 3 Satz 4 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6682, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6910, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6683, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6912, 6, 'Abschreibungen auf Umlaufvermögen außer Vorräte und Wertpapiere des Umlaufvermögens, steuerrechtlich bedingt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6684, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6918, 6, 'Aufwendungen aus dem Erwerb eigener Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6685, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6920, 6, 'Einstellung in die Pauschalwertberechtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6686, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6922, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6687, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6923, 6, 'Einstellung in die Einzelwertberichtigung auf Forderungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6688, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6924, 6, 'Einstellungen in die steuerliche Rücklage nach § 6b Abs. 10 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6689, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6927, 6, 'Einstellung in steuerliche Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6690, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6928, 6, 'Einstellung in die Rücklage für Ersatzbeschaffung nach R 6.6 EstR'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6691, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6929, 6, 'Einstellungen in die steuerliche Rücklage nach § 4g EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6692, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6930, 6, 'Forderungsverluste (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6693, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6931, 6, 'Forderungsverluste 7 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6694, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6932, 6, 'Forderungsverluste aus steuerfreien EU-Lieferungen (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6695, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6933, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 7 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6696, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6934, 6933, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6697, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6935, 6933, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6698, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6936, 6, 'Forderungsverluste 19 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6699, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6937, 6936, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6700, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6938, 6, 'Forderungsverluste aus im Inland steuerpflichtigen EU-Lieferungen 19 % USt (übliche Höhe)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6701, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6939, 6938, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6702, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6960, 6, 'Periodenfremde Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6703, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6967, 6, 'Sonstige Aufwendungen betriebsfremd und regelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6704, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6968, 6, 'Sonstige nicht abziehbare Ausfwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6705, 'SKR04', 'Betriebliche Aufwendungen', 'Sonstige betriebliche Aufwendungen', 6969, 6, 'Sonstige Aufwendungen unregelmäßig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6706, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6970, 6, 'Kalkulatorischer Unternehmerlohn'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6707, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6972, 6, 'Kalkulatorische Miete/Pacht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6708, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6974, 6, 'Kalkulatorische Zinsen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6709, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6976, 6, 'Kalkulatorische Abschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6710, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6978, 6, 'Kalkulatorische Wagnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6711, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6979, 6, 'Kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6712, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6980, 6, 'Verrechneter kalkulatorischer Unternehmerlohn'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6713, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6982, 6, 'Verrechnete kalkulatorische Miete/Pacht'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6714, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6984, 6, 'Verrechnete kalkulatorische Zinsen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6715, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6986, 6, 'Verrechnete kalkulatorische Abschreibungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6716, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6988, 6, 'Verrechnete kalkulatorische Wagnisse'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6717, 'SKR04', 'Betriebliche Aufwendungen', 'Kalkulatorische Kosten', 6989, 6, 'Verrechneter kalkulatorischer Lohn für unentgeltliche Mitarbeiter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6718, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6990, 6, 'Herstellungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6719, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6992, 6, 'Verwaltungskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6720, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6994, 6, 'Vertriebskosten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6721, 'SKR04', 'Betriebliche Aufwendungen', 'Kosten bei Anwendungen des Umsatzkostenverfahrens', 6999, 6, 'Gegenkonto 6990-6998'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6722, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Weitere Erträge und Aufwendungen', 7, 7, 'Weitere Erträge und Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6723, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7000, 7, 'Erträge aus Beteiligungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6724, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7004, 7000, 'Erträge aus Beteiligungen an Personengesellschaften (verbundene Unternehmen), § 9 GewStG bzw. § 18 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6725, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7005, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (Beteiligung) § 3 Nr. 40 EStG/§ 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6726, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7006, 7000, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6727, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7008, 7000, 'Gewinnanteile aus gewerblichen und selbstständigen Mitunternehmerschaften, § 9 GewStG bzw. § 18 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6728, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Beteiligungen', 7009, 7000, 'Erträge aus Beteiligungen an verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6729, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7010, 7, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6730, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7011, 7010, 'Erträge aus Ausleihungen des Finanzanlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6731, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7012, 7100, 'Erträge aus Ausleihungen des Finanzanlagevermögens an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6732, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7013, 7100, 'Erträge aus Anteilen an Personengesellschaften (Finanzanlagevermögen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6733, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7014, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Finanzanlagevermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6734, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7015, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6735, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7016, 7100, 'Erträge aus Anteilen an Personengesellschaften (verbundene Unternehmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6736, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7017, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Kapitalgesellschaften (verbunden Unternehmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6737, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7018, 7100, 'Erträge aus anderen Wertpapieren des Finanzanlagevermögens an Personengesellschaften (verbundene Unternehmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6738, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7019, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6739, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7020, 7100, 'Zins- und Dividendenerträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6740, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus anderen Wertpapieren und Ausleihungen des Finanzanlagevermögens', 7030, 7100, 'Erhaltene Ausgleichszahlungen (als außenstehender Aktionär)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6741, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7100, 7, 'Sonstige Zinsen und ähnliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6742, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7102, 7100, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6743, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7103, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (Umlaufvermögen) § 3 Nr. 40 EStG/§ 8b Abs. 1 und 4 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6744, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7104, 7100, 'Erträge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) § 3 Nr. 40 EStG/ § 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6745, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7105, 7100, 'ZINSERTräge § 233a AO, steuerpflichtig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6746, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7106, 7100, 'ZINSERTräge § 233a AO, steuerfrei (Anlage A KSt)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6747, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7107, 7100, 'ZINSERTräge § 233a AO, § 4 Abs. 5b EStG, steuerfrei'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6748, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7109, 7100, 'Sonstige Zinsen und ähnliche Erträge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6749, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7110, 7100, 'Sonstige ZINSERTräge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6750, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7115, 7100, 'Erträge aus anderen Wertpapieren und Ausleihungen des Umlaufvermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6751, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7119, 7100, 'Sonstige ZINSERTräge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6752, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7120, 7100, 'Zinsähnliche Erträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6753, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7128, 7100, 'ZINSERTrag aus vorzeitiger Rückzahlung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6754, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7129, 7100, 'Zinsähnliche Erträge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6755, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7130, 7100, 'Diskonterträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6756, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7139, 7100, 'Diskonterträge aus verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6757, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7140, 7100, 'Steuerfreie ZINSERTräge aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6758, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7141, 7100, 'ZINSERTräge aus der Abzinsung von Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6759, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7142, 7100, 'ZINSERTräge aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6760, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7143, 7100, 'ZINSERTräge aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6761, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7144, 7100, 'ZINSERTräge aus Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6762, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Zinsen und ähnliche Erträge', 7145, 7100, 'Erträge aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6763, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7190, 7, 'Erträge aus Verlustübernahme'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6764, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7192, 7, 'Erhaltene Gewinne auf Grund einer Gewinngemeinschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6765, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags erhaltene Gewinne', 7194, 7, 'Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6766, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7200, 7, 'Abschreibungen auf Finanzanlagen (dauerhaft)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6767, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7201, 7, 'Abschreibungen auf Finanzanlagen (nicht dauerhaft)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6768, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7204, 7, 'Abschreibungen auf Finanzanlagen § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG (dauerhaft)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6769, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7207, 7, 'Abschreibungen auf Finanzanlagen – verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6770, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7208, 7, 'Aufwendungen auf Grund von Verlustanteilen an gewerbliche und selbständigen Mitunternehmerschaften, § 8 GewStG bzw. § 18 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6771, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7210, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6772, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7214, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6773, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7217, 7, 'Abschreibungen auf Wertpapiere des Umlaufvermögens – verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6774, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7250, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6775, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufvermögens', 7255, 7, 'Abschreibungen auf Finanzanlagen auf Grund § 6b EstG-Rücklage, § 3 Nr. 40 EStG/§ 8b Abs. 3 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6776, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7300, 7, 'Zinsen und ähnliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6777, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7302, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6778, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7303, 7300, 'Steuerlich abzugsfähige andere Nebenleistungen zu Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6779, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7304, 7300, 'Steuerlich nicht abzugsfähige andere Nebenleistungen zu Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6780, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7305, 7300, 'Zinsaufwendungen § 233a AO abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6781, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7306, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO nicht abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6782, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7307, 7300, 'Zinsen aus Abzinsung des Körperschaftsteuer-Erhöhungsbetrags § 38 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6783, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7308, 7300, 'Zinsaufwendungen § 233a AO nicht abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6784, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7309, 7300, 'Zinsaufwendungen an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6785, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7310, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6786, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7311, 7300, 'Zinsaufwendungen §§ 234 bis 2347 AO abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6787, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7313, 7300, 'Nicht abzugsfähige Schuldzinsen gemäß § 4Abs. 4A EStG (Hinzurechnungsbetrag)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6788, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7316, 7300, 'Zinsen für Gesellschafterdarlehen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6789, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7317, 7300, 'Zinsen an Gesellschafter mit einer Beteiligung von mehr als 25 % bzw. diesen nahe stehende Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6790, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7318, 7300, 'Zinsen auf Kontokorrentkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6791, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7319, 7300, 'Zinsaufwendungen für kurzfristige Verbindlichkeiten an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6792, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7320, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6793, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7323, 7300, 'Abschreibungen auf Disagio zur Finanzierung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6794, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7324, 7300, 'Abschreibungen auf Disagio zur Finanzierung des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6795, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7325, 7300, 'Zinsaufwendungen für Gebäude, die zum Betriebsvermögen gehören'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6796, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7326, 7300, 'Zinsen zur Finanzierung des Anlagevermögens'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6797, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7327, 7300, 'Renten und dauernde Lasten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6798, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7328, 7300, 'Zinsaufwendungen für Kapitalüberlassung durch Mitunternehmer § 15 EStG (mit Sonderbetriebseinnahme korrespondierend)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6799, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7329, 7300, 'Zinsaufwendungen für langfristige Verbindlichkeiten an verbundene Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6800, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7330, 7300, 'Zinsähnliche Aufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6801, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7339, 7300, 'Zinsähnliche Aufwendungen an verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6802, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7340, 7300, 'Diskontaufwendungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6803, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7349, 7300, 'Diskontaufwendungen an verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6804, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7350, 7300, 'Zinsen und ähnliche Aufwendungen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6805, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7351, 7300, 'Zinsen und ähnliche Aufwendungen an verbundene Unternehmen §§ 3 Nr. 40, 3c EStG/§ 8b Abs. 1 KStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6806, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7355, 7300, 'Kreditprovisionen und Verwaltungskostenbeiträge'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6807, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7360, 7300, 'Zinsanteil der Zuführung zu Pensionsrückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6808, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7361, 7300, 'Zinsaufwendungen aus der Abzinsung von Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6809, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7362, 7300, 'Zinsaufwendungen aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6810, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7363, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6811, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7364, 7300, 'Zinsaufwendungen aus der Abzinsung von Pensionsrückstellungen und ähnlichen/vergleichbaren Verpflichtungen zur Verrechnung nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6812, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7365, 7300, 'Aufwendungen aus Vermögensgegenständen zur Verrechnung nach § 246 Abs. 2 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6813, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Zinsen und ähnliche Aufwendungen', 7366, 7300, 'Steuerlich nicht abzugsfähige Zinsaufwendungen aus der Abzinsung von Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6814, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7390, 7, 'Aufwendungen aus Verlustübernahme'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6815, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7392, 7, 'Abgeführte Gewinne auf Grund einer Gewinngemeinschaft'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6816, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7394, 7, 'Abgeführte Gewinne auf Grund eines Gewinn- oder Teilgewinnabführungsvertrags'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6817, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus Verlustübernahme und auf Grund einer Gewinngemeinschaft, eines Gewinn- oder Teilgewinnabführungsvertrags abgeführte Gewinne', 7399, 7, 'Abgeführte Gewinnanteile (Soll)/ausgeglichene Verlustanteile (Haben) bei stiller Gesellschaft § 8 GesStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6818, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7400, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6819, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7401, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6820, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7450, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6821, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7451, 7, 'Erträge durch Verschmelzung und Umwandlung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6822, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6823, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7452, 7451, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6824, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Erträge', 7454, 7, 'Gewinn aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6825, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7460, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6826, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7461, 7460, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6827, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7462, 7460, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6828, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7463, 7460, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6829, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Erträge aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7464, 7, 'Erträge aus der Anwendungen von Übergangsvorschriften (latente Steuern)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6830, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7500, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6831, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7501, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6832, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7550, 7, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6833, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7551, 7, 'Verluste durch Verschmelzung und Umwandlung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6834, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7552, 7, 'Verluste durch außergewöhnliche Schadensfälle'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6835, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7553, 7, 'Aufwendungen für Restrukturierungs- und Sanierungsmaßnahmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6836, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige betriebliche Aufwendungen', 7554, 7, 'Verluste aus der Veräußerung oder der Aufgabe von Geschäftsaktivitäten nach Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6837, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7560, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6838, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7561, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Pensionsrückstellungen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6839, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7562, 7561, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6840, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Aufwendungen aus der Anwendung von Übergangsvorschriften i. S. d. BilMoG', 7563, 7, 'Aufwendungen aus der Anwendung von Übergangsvorschriften (Latente Steuern)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6841, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7600, 7, 'Körperschaftsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6842, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7603, 7, 'Körperschaftsteuer für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6843, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7604, 7, 'Körperschaftsteuererstattungen für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6844, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7607, 7, 'Solidaritätszuschlagerstattungen für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6845, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6846, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7608, 7, 'Solidaritätszuschlag für Vorjahre'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6847, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7610, 7, 'Gewerbesteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6848, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7630, 7, 'Kapitalertragsteuer 25 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6849, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7633, 7, 'Anrechenbarer Solidaritätszuschlag auf Kapitalertragsteuer 25 %'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6850, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7638, 7, 'Ausländische Steuer auf im Inland steuerfrei DBA-Einkünfte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6851, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7639, 7, 'Anrechnung / Abzug ausländischer Quellensteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6852, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7640, 7639, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6853, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7641, 7, 'Gewerbesteuernachtzahlungen und Gewerbesteuererstattungen für Vorjahre, § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6854, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7642, 7641, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6855, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7643, 7, 'Erträge aus der Auflösung von Gewerbesteuerrückstellungen, § 4 Abs. 5b EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6856, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7644, 7643, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6857, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7645, 7, 'Aufwendungen aus der Zuführung und Auflösung von latenten Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6858, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7646, 7, 'Aufwendungen aus der Zuführung zu Steuerrückstellungen für Steuerstundung (BstBK)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6859, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7648, 7, 'Erträge aus der Auflösung von Steuerrückstellungen für Steuerstundung (BstBK)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6860, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Steuern vom Einkommen und Ertrag', 7649, 7, 'Erträge aus der Zuführung und Auflösung von latenten Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6861, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7650, 7, 'Sonstige Betriebssteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6862, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7675, 7, 'Verbrauchssteuer (sonstige Steuern)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6863, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7678, 7, 'Ökosteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6864, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7680, 7, 'Grundsteuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6865, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7685, 7, 'Kfz-Steuer'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6866, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7690, 7, 'Steuernachzahlungen Vorjahre für sonstige Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6867, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7692, 7, 'Steuererstattungen Vorjahre für sonstige Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6868, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7694, 7, 'Erträge aus der Auflösung von Rückstellungen für sonstige Steuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6869, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7700, 7, 'Gewinnvortrag nach Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6870, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7705, 7700, 'Gewinnvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6871, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7720, 7, 'Verlustvortrag nach Verwendung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6872, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7725, 7720, 'Verlustvortrag nach Verwendung (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6873, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Sonstige Steuern', 7730, 7, 'Entnahmen aus der Kapitalrücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6874, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7735, 7, 'Entnahmen aus der gesetzlichen Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6875, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7740, 7, 'Entnahmen aus dem Ausgleichsposten für aktivierte eigene Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6876, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7743, 7, 'Entnahmen aus der Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6877, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7744, 7, 'Entnahmen aus anderen Ergebnisrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6878, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7745, 7, 'Entnahmen aus satzungsmäßigen Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6879, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7750, 7, 'Entnahmen aus anderen Gewinnrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6880, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7751, 7750, 'Entnahmen aus gesamthänderisch gebundenen Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6881, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7755, 7, 'Erträge aus Kapitalherabsetzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6882, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Entnahmen aus Gewinnrücklagen', 7760, 7, 'Einstellungen in die Kapitalrücklage nach den Vorschriften über die vereinfachte Kapitalherabsetzung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6883, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7765, 7, 'Einstellungen in die gesetzliche Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6884, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7770, 7, 'Einstellungen in den Ausgleichsposten für aktivierte eigen Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6885, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7773, 7, 'Einstellungen in die Rücklage für Anteile an einem herrschenden oder mehrheitlich beteiligten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6886, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7775, 7, 'Einstellungen in satzungsmäßige Rücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6887, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7780, 7, 'Einstellungen in andere Gewinnrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6888, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7781, 7780, 'Einstellungen in gesamthänderisch gebundene Rücklagen (mit Aufteilung für Kapitalkontenentwicklung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6889, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7785, 7, 'Einstellungen in andere Ergebnisrücklagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6890, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7790, 7, 'Vorabausschüttungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6891, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7795, 7, 'Vortrag auf neue Rechnung (GuV)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6892, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7800, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6893, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7801, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6894, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7802, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6895, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7803, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6896, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7804, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6897, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7805, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6898, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7806, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6899, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7807, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6900, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7808, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6901, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7809, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6902, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7810, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6903, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7811, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6904, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7812, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6905, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7813, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6906, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7814, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6907, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7815, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6908, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7816, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6909, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7817, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6910, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7818, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6911, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7819, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6912, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7820, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6913, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7821, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6914, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7822, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6915, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7823, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6916, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7824, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6917, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7825, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6918, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7826, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6919, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7827, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6920, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7828, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6921, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7829, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6922, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7830, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6923, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7831, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6924, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7832, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6925, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7833, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6926, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7834, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6927, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7835, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6928, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7836, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6929, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7837, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6930, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7838, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6931, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7839, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6932, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7840, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6933, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7841, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6934, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7842, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6935, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7843, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6936, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7844, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6937, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7845, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6938, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7846, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6939, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7847, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6940, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7848, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6941, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7849, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6942, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7850, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6943, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7851, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6944, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7852, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6945, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7853, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6946, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7854, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6947, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7855, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6948, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7856, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6949, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7857, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6950, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7858, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6951, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7859, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6952, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7860, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6953, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7861, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6954, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7862, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6955, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7863, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6956, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7864, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6957, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7865, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6958, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7866, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6959, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7867, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6960, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7868, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6961, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7869, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6962, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7870, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6963, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7871, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6964, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7872, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6965, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7873, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6966, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7874, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6967, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7875, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6968, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7876, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6969, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7877, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6970, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7878, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6971, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7879, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6972, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7880, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6973, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7881, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6974, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7882, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6975, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7883, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6976, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7884, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6977, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7885, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6978, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7886, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6979, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7887, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6980, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7888, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6981, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7889, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6982, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7890, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6983, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7891, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6984, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7892, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6985, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7893, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6986, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7894, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6987, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7895, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6988, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7896, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6989, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7897, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6990, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7898, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6991, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7899, 7, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6992, 'SKR04', 'Weitere Erträge und Aufwendungen', 'Einstellungen in Gewinnrücklagen', 7900, 7, '(reserviertes Konto)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6993, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6994, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8000, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6995, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8001, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6996, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8002, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6997, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8003, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6998, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8004, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 6999, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8005, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7000, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8006, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7001, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8007, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7002, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8008, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7003, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8009, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7004, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8010, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7005, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8011, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7006, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8012, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7007, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8013, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7008, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8014, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7009, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8015, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7010, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8016, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7011, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8017, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7012, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8018, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7013, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8019, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7014, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8020, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7015, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8021, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7016, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8022, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7017, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8023, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7018, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8024, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7019, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8025, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7020, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8026, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7021, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8027, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7022, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8028, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7023, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8029, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7024, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8030, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7025, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8031, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7026, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8032, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7027, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8033, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7028, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8034, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7029, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8035, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7030, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8036, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7031, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8037, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7032, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8038, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7033, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8039, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7034, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8040, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7035, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8041, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7036, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8042, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7037, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8043, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7038, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8044, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7039, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8045, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7040, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8046, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7041, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8047, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7042, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8048, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7043, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8049, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7044, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8050, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7045, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8051, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7046, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8052, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7047, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8053, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7048, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8054, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7049, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8055, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7050, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8056, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7051, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8057, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7052, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8058, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7053, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8059, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7054, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8060, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7055, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8061, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7056, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8062, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7057, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8063, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7058, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8064, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7059, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8065, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7060, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8066, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7061, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8067, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7062, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8068, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7063, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8069, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7064, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8070, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7065, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8071, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7066, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8072, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7067, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8073, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7068, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8074, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7069, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8075, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7070, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8076, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7071, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8077, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7072, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8078, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7073, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8079, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7074, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8080, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7075, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8081, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7076, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8082, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7077, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8083, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7078, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8084, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7079, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8085, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7080, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8086, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7081, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8087, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7082, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8088, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7083, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8089, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7084, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8090, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7085, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8091, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7086, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8092, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7087, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8093, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7088, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8094, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7089, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8095, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7090, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8096, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7091, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8097, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7092, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8098, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7093, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8099, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7094, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8100, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7095, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8101, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7096, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8102, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7097, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8103, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7098, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8104, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7099, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8105, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7100, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8106, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7101, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8107, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7102, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8108, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7103, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8109, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7104, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8110, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7105, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8111, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7106, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8112, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7107, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8113, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7108, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8114, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7109, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8115, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7110, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8116, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7111, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8117, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7112, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8118, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7113, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8119, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7114, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8120, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7115, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8121, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7116, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8122, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7117, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8123, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7118, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8124, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7119, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8125, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7120, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8126, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7121, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8127, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7122, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8128, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7123, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8129, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7124, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8130, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7125, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8131, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7126, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8132, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7127, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8133, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7128, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8134, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7129, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8135, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7130, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8136, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7131, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8137, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7132, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8138, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7133, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8139, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7134, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8140, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7135, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8141, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7136, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8142, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7137, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8143, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7138, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8144, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7139, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8145, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7140, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8146, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7141, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8147, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7142, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8148, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7143, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8149, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7144, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8150, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7145, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8151, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7146, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8152, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7147, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8153, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7148, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8154, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7149, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8155, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7150, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8156, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7151, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8157, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7152, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8158, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7153, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8159, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7154, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8160, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7155, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8161, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7156, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8162, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7157, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8163, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7158, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8164, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7159, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8165, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7160, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8166, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7161, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8167, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7162, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8168, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7163, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8169, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7164, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8170, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7165, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8171, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7166, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8172, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7167, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8173, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7168, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8174, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7169, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8175, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7170, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8176, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7171, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8177, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7172, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8178, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7173, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8179, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7174, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8180, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7175, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8181, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7176, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8182, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7177, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8183, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7178, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8184, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7179, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8185, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7180, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8186, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7181, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8187, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7182, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8188, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7183, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8189, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7184, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8190, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7185, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8191, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7186, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8192, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7187, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8193, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7188, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8194, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7189, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8195, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7190, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8196, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7191, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8197, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7192, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8198, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7193, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8199, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7194, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8200, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7195, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8201, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7196, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8202, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7197, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8203, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7198, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8204, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7199, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8205, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7200, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8206, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7201, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8207, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7202, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8208, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7203, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8209, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7204, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8210, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7205, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8211, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7206, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8212, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7207, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8213, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7208, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8214, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7209, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8215, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7210, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8216, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7211, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8217, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7212, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8218, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7213, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8219, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7214, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8220, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7215, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8221, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7216, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8222, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7217, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8223, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7218, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8224, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7219, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8225, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7220, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8226, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7221, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8227, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7222, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8228, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7223, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8229, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7224, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8230, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7225, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8231, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7226, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8232, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7227, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8233, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7228, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8234, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7229, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8235, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7230, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8236, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7231, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8237, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7232, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8238, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7233, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8239, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7234, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8240, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7235, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8241, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7236, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8242, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7237, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8243, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7238, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8244, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7239, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8245, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7240, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8246, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7241, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8247, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7242, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8248, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7243, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8249, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7244, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8250, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7245, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8251, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7246, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8252, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7247, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8253, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7248, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8254, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7249, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8255, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7250, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8256, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7251, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8257, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7252, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8258, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7253, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8259, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7254, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8260, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7255, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8261, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7256, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8262, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7257, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8263, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7258, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8264, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7259, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8265, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7260, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8266, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7261, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8267, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7262, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8268, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7263, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8269, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7264, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8270, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7265, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8271, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7266, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8272, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7267, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8273, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7268, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8274, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7269, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8275, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7270, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8276, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7271, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8277, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7272, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8278, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7273, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8279, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7274, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8280, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7275, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8281, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7276, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8282, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7277, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8283, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7278, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8284, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7279, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8285, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7280, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8286, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7281, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8287, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7282, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8288, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7283, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8289, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7284, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8290, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7285, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8291, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7286, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8292, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7287, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8293, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7288, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8294, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7289, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8295, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7290, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8296, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7291, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8297, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7292, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8298, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7293, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8299, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7294, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8300, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7295, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8301, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7296, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8302, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7297, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8303, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7298, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8304, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7299, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8305, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7300, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8306, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7301, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8307, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7302, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8308, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7303, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8309, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7304, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8310, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7305, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8311, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7306, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8312, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7307, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8313, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7308, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8314, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7309, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8315, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7310, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8316, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7311, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8317, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7312, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8318, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7313, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8319, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7314, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8320, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7315, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8321, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7316, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8322, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7317, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8323, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7318, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8324, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7319, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8325, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7320, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8326, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7321, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8327, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7322, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8328, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7323, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8329, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7324, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8330, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7325, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8331, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7326, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8332, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7327, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8333, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7328, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8334, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7329, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8335, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7330, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8336, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7331, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8337, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7332, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8338, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7333, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8339, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7334, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8340, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7335, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8341, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7336, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8342, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7337, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8343, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7338, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8344, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7339, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8345, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7340, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8346, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7341, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8347, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7342, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8348, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7343, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8349, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7344, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8350, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7345, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8351, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7346, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8352, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7347, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8353, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7348, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8354, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7349, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8355, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7350, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8356, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7351, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8357, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7352, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8358, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7353, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8359, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7354, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8360, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7355, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8361, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7356, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8362, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7357, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8363, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7358, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8364, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7359, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8365, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7360, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8366, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7361, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8367, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7362, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8368, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7363, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8369, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7364, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8370, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7365, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8371, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7366, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8372, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7367, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8373, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7368, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8374, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7369, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8375, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7370, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8376, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7371, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8377, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7372, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8378, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7373, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8379, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7374, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8380, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7375, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8381, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7376, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8382, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7377, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8383, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7378, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8384, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7379, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8385, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7380, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8386, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7381, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8387, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7382, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8388, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7383, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8389, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7384, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8390, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7385, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8391, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7386, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8392, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7387, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8393, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7388, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8394, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7389, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8395, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7390, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8396, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7391, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8397, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7392, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8398, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7393, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8399, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7394, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8400, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7395, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8401, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7396, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8402, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7397, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8403, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7398, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8404, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7399, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8405, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7400, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8406, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7401, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8407, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7402, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8408, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7403, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8409, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7404, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8410, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7405, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8411, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7406, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8412, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7407, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8413, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7408, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8414, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7409, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8415, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7410, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8416, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7411, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8417, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7412, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8418, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7413, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8419, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7414, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8420, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7415, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8421, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7416, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8422, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7417, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8423, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7418, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8424, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7419, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8425, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7420, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8426, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7421, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8427, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7422, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8428, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7423, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8429, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7424, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8430, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7425, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8431, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7426, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8432, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7427, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8433, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7428, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8434, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7429, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8435, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7430, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8436, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7431, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8437, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7432, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8438, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7433, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8439, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7434, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8440, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7435, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8441, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7436, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8442, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7437, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8443, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7438, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8444, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7439, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8445, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7440, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8446, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7441, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8447, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7442, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8448, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7443, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8449, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7444, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8450, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7445, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8451, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7446, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8452, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7447, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8453, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7448, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8454, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7449, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8455, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7450, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8456, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7451, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8457, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7452, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8458, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7453, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8459, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7454, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8460, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7455, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8461, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7456, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8462, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7457, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8463, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7458, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8464, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7459, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8465, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7460, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8466, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7461, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8467, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7462, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8468, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7463, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8469, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7464, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8470, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7465, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8471, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7466, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8472, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7467, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8473, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7468, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8474, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7469, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8475, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7470, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8476, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7471, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8477, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7472, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8478, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7473, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8479, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7474, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8480, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7475, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8481, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7476, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8482, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7477, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8483, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7478, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8484, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7479, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8485, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7480, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8486, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7481, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8487, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7482, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8488, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7483, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8489, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7484, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8490, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7485, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8491, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7486, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8492, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7487, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8493, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7488, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8494, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7489, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8495, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7490, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8496, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7491, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8497, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7492, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8498, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7493, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8499, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7494, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8500, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7495, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8501, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7496, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8502, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7497, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8503, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7498, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8504, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7499, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8505, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7500, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8506, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7501, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8507, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7502, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8508, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7503, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8509, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7504, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8510, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7505, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8511, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7506, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8512, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7507, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8513, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7508, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8514, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7509, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8515, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7510, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8516, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7511, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8517, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7512, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8518, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7513, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8519, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7514, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8520, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7515, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8521, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7516, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8522, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7517, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8523, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7518, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8524, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7519, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8525, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7520, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8526, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7521, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8527, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7522, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8528, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7523, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8529, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7524, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8530, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7525, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8531, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7526, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8532, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7527, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8533, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7528, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8534, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7529, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8535, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7530, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8536, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7531, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8537, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7532, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8538, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7533, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8539, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7534, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8540, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7535, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8541, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7536, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8542, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7537, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8543, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7538, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8544, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7539, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8545, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7540, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8546, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7541, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8547, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7542, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8548, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7543, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8549, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7544, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8550, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7545, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8551, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7546, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8552, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7547, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8553, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7548, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8554, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7549, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8555, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7550, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8556, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7551, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8557, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7552, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8558, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7553, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8559, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7554, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8560, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7555, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8561, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7556, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8562, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7557, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8563, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7558, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8564, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7559, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8565, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7560, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8566, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7561, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8567, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7562, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8568, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7563, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8569, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7564, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8570, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7565, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8571, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7566, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8572, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7567, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8573, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7568, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8574, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7569, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8575, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7570, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8576, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7571, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8577, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7572, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8578, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7573, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8579, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7574, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8580, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7575, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8581, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7576, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8582, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7577, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8583, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7578, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8584, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7579, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8585, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7580, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8586, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7581, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8587, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7582, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8588, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7583, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8589, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7584, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8590, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7585, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8591, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7586, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8592, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7587, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8593, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7588, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8594, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7589, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8595, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7590, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8596, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7591, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8597, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7592, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8598, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7593, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8599, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7594, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8600, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7595, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8601, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7596, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8602, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7597, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8603, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7598, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8604, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7599, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8605, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7600, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8606, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7601, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8607, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7602, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8608, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7603, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8609, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7604, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8610, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7605, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8611, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7606, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8612, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7607, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8613, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7608, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8614, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7609, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8615, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7610, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8616, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7611, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8617, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7612, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8618, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7613, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8619, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7614, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8620, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7615, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8621, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7616, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8622, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7617, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8623, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7618, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8624, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7619, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8625, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7620, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8626, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7621, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8627, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7622, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8628, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7623, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8629, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7624, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8630, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7625, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8631, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7626, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8632, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7627, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8633, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7628, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8634, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7629, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8635, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7630, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8636, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7631, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8637, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7632, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8638, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7633, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8639, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7634, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8640, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7635, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8641, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7636, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8642, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7637, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8643, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7638, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8644, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7639, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8645, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7640, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8646, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7641, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8647, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7642, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8648, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7643, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8649, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7644, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8650, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7645, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8651, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7646, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8652, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7647, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8653, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7648, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8654, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7649, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8655, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7650, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8656, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7651, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8657, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7652, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8658, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7653, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8659, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7654, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8660, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7655, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8661, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7656, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8662, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7657, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8663, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7658, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8664, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7659, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8665, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7660, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8666, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7661, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8667, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7662, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8668, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7663, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8669, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7664, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8670, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7665, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8671, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7666, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8672, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7667, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8673, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7668, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8674, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7669, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8675, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7670, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8676, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7671, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8677, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7672, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8678, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7673, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8679, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7674, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8680, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7675, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8681, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7676, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8682, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7677, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8683, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7678, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8684, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7679, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8685, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7680, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8686, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7681, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8687, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7682, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8688, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7683, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8689, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7684, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8690, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7685, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8691, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7686, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8692, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7687, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8693, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7688, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8694, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7689, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8695, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7690, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8696, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7691, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8697, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7692, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8698, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7693, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8699, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7694, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8700, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7695, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8701, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7696, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8702, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7697, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8703, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7698, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8704, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7699, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8705, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7700, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8706, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7701, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8707, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7702, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8708, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7703, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8709, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7704, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8710, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7705, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8711, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7706, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8712, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7707, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8713, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7708, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8714, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7709, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8715, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7710, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8716, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7711, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8717, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7712, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8718, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7713, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8719, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7714, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8720, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7715, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8721, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7716, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8722, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7717, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8723, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7718, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8724, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7719, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8725, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7720, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8726, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7721, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8727, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7722, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8728, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7723, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8729, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7724, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8730, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7725, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8731, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7726, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8732, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7727, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8733, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7728, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8734, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7729, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8735, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7730, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8736, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7731, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8737, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7732, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8738, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7733, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8739, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7734, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8740, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7735, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8741, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7736, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8742, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7737, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8743, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7738, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8744, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7739, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8745, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7740, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8746, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7741, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8747, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7742, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8748, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7743, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8749, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7744, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8750, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7745, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8751, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7746, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8752, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7747, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8753, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7748, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8754, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7749, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8755, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7750, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8756, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7751, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8757, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7752, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8758, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7753, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8759, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7754, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8760, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7755, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8761, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7756, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8762, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7757, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8763, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7758, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8764, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7759, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8765, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7760, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8766, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7761, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8767, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7762, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8768, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7763, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8769, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7764, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8770, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7765, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8771, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7766, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8772, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7767, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8773, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7768, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8774, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7769, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8775, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7770, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8776, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7771, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8777, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7772, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8778, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7773, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8779, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7774, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8780, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7775, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8781, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7776, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8782, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7777, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8783, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7778, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8784, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7779, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8785, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7780, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8786, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7781, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8787, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7782, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8788, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7783, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8789, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7784, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8790, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7785, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8791, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7786, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8792, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7787, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8793, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7788, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8794, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7789, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8795, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7790, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8796, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7791, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8797, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7792, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8798, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7793, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8799, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7794, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8800, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7795, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8801, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7796, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8802, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7797, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8803, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7798, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8804, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7799, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8805, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7800, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8806, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7801, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8807, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7802, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8808, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7803, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8809, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7804, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8810, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7805, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8811, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7806, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8812, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7807, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8813, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7808, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8814, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7809, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8815, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7810, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8816, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7811, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8817, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7812, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8818, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7813, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8819, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7814, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8820, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7815, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8821, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7816, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8822, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7817, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8823, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7818, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8824, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7819, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8825, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7820, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8826, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7821, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8827, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7822, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8828, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7823, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8829, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7824, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8830, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7825, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8831, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7826, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8832, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7827, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8833, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7828, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8834, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7829, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8835, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7830, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8836, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7831, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8837, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7832, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8838, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7833, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8839, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7834, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8840, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7835, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8841, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7836, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8842, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7837, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8843, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7838, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8844, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7839, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8845, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7840, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8846, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7841, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8847, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7842, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8848, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7843, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8849, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7844, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8850, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7845, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8851, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7846, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8852, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7847, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8853, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7848, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8854, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7849, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8855, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7850, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8856, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7851, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8857, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7852, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8858, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7853, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8859, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7854, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8860, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7855, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8861, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7856, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8862, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7857, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8863, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7858, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8864, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7859, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8865, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7860, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8866, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7861, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8867, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7862, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8868, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7863, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8869, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7864, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8870, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7865, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8871, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7866, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8872, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7867, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8873, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7868, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8874, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7869, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8875, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7870, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8876, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7871, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8877, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7872, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8878, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7873, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8879, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7874, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8880, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7875, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8881, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7876, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8882, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7877, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8883, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7878, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8884, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7879, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8885, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7880, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8886, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7881, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8887, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7882, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8888, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7883, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8889, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7884, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8890, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7885, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8891, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7886, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8892, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7887, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8893, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7888, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8894, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7889, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8895, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7890, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8896, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7891, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8897, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7892, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8898, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7893, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8899, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7894, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8900, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7895, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8901, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7896, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8902, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7897, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8903, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7898, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8904, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7899, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8905, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7900, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8906, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7901, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8907, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7902, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8908, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7903, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8909, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7904, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8910, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7905, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8911, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7906, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8912, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7907, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8913, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7908, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8914, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7909, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8915, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7910, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8916, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7911, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8917, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7912, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8918, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7913, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8919, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7914, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8920, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7915, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8921, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7916, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8922, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7917, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8923, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7918, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8924, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7919, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8925, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7920, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8926, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7921, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8927, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7922, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8928, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7923, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8929, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7924, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8930, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7925, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8931, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7926, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8932, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7927, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8933, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7928, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8934, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7929, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8935, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7930, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8936, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7931, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8937, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7932, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8938, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7933, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8939, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7934, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8940, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7935, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8941, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7936, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8942, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7937, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8943, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7938, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8944, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7939, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8945, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7940, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8946, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7941, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8947, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7942, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8948, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7943, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8949, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7944, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8950, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7945, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8951, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7946, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8952, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7947, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8953, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7948, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8954, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7949, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8955, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7950, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8956, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7951, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8957, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7952, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8958, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7953, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8959, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7954, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8960, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7955, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8961, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7956, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8962, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7957, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8963, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7958, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8964, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7959, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8965, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7960, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8966, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7961, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8967, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7962, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8968, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7963, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8969, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7964, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8970, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7965, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8971, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7966, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8972, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7967, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8973, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7968, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8974, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7969, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8975, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7970, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8976, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7971, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8977, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7972, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8978, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7973, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8979, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7974, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8980, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7975, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8981, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7976, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8982, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7977, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8983, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7978, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8984, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7979, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8985, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7980, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8986, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7981, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8987, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7982, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8988, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7983, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8989, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7984, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8990, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7985, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8991, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7986, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8992, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7987, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8993, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7988, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8994, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7989, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8995, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7990, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8996, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7991, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8997, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7992, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8998, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7993, 'SKR04', 'Zur freien Verfügung', 'Zur freien Verfügung', 8999, 8, 'Zur freien Verfügung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7994, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 9, 9, 'Vortrags-, Kapital-, Korrektur- und statistische Konten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7995, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9000, 9, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7996, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9001, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7997, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9002, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7998, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9003, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 7999, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9004, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8000, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9005, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8001, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9006, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8002, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9007, 9000, 'Saldenvorträge, Sachkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8003, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9008, 9, 'Saldenvorträge, Debitoren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8004, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9009, 9, 'Saldenvorträge, Kreditoren'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8005, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9060, 9009, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8006, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9069, 9009, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8007, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9070, 9, 'Offene Posten aus 2000'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8008, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9071, 9, 'Offene Posten aus 2001'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8009, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9072, 9, 'Offene Posten aus 2002'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8010, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9073, 9, 'Offene Posten aus 2003'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8011, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9074, 9, 'Offene Posten aus 2004'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8012, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9075, 9, 'Offene Posten aus 2005'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8013, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9076, 9, 'Offene Posten aus 2006'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8014, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9077, 9, 'Offene Posten aus 2007'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8015, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9078, 9, 'Offene Posten aus 2008'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8016, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9079, 9, 'Offene Posten aus 2009'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8017, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9080, 9, 'Offene Posten aus 2010'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8018, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9081, 9, 'Offene Posten aus 2011'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8019, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9082, 9, 'Offene Posten aus 2012'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8020, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9083, 9, 'Offene Posten aus 2013'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8021, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9084, 9, 'Offene Posten aus 2014'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8022, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9085, 9, 'Offene Posten aus 2015'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8023, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9086, 9, 'Offene Posten aus 2016'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8024, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9087, 9, 'Offene Posten aus 2017'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8025, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9088, 9, 'Offene Posten aus 2018'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8026, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9089, 9088, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8027, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9090, 9, 'Summenvortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8028, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9091, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8029, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9092, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8030, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9093, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8031, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9094, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8032, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9095, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8033, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9096, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8034, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9097, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8035, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vortragskonten', 9098, 9090, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8036, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9101, 9, 'Verkaufstage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8037, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9102, 9, 'Anzahl der Barkunden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8038, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9103, 9, 'Beschäftigte Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8039, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9104, 9, 'Unbezahlte Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8040, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9105, 9, 'Verkaufskräfte'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8041, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9106, 9, 'Geschäftsraum qm'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8042, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9107, 9, 'Verkaufsraum qm'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8043, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9116, 9, 'Anzahl Rechnungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8044, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9117, 9, 'Anzahl Kreditkunden monatlich'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8045, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9118, 9, 'Anzahl Kreditkunden aufgelaufen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8046, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9120, 9, 'Erweiterungsinvestitionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8047, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9130, 9120, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8048, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9131, 9120, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8049, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9135, 9, 'Auftragseingang im Geschäftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8050, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Betriebswirtschaftliche Auswertungen (BWA)', 9140, 9, 'Auftragsbestand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8051, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9141, 9, 'Variables Kapital TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8052, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9142, 9, 'Variables Kapital – Anteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8053, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9143, 9142, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8054, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9144, 9142, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8055, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Variables Kapital Teilhafter', 9145, 9142, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8056, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9146, 9, 'Variables Kapital Vollhafter – Übertragung einer § 6b EstG-Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8057, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9147, 9, 'Variables Kapital Teilhafter – Übertragung einer § 6b EstG-Rücklage'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8058, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9148, 9147, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8059, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapitaländerungen durch Übertragungen einer § 6b EStG Rücklage', 9149, 9147, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8060, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9150, 9, 'Festkapital – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8061, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9151, 9, 'Variables Kapital – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8062, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9152, 9, 'Verlust-/Vortragskonto – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8063, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9153, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8064, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9154, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8065, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9155, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8066, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9156, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8067, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9157, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8068, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9158, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8069, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Vollhafter', 9159, 9155, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8070, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9160, 9, 'Kommandit-Kapital – andere Kapitalkontenanpassungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8071, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9161, 9, 'Variables Kapital – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8072, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9162, 9, 'Verlustausgleichskonto – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8073, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9163, 9, 'Kapitalkonto III – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8074, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9164, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8075, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9165, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – andere Kapitalkontenanpassungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8076, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9166, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8077, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9167, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8078, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9168, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8079, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Andere Kapitalkontenanpassungen: Teilhafter', 9169, 9165, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8080, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9170, 9, 'Festkapital – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8081, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9171, 9, 'Variables Kapital – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8082, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9172, 9, 'Verlust-/Vortragskonto – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8083, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9173, 9, 'Kapitalkonto III – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8084, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9174, 9, 'Ausstehende Einlagen auf das Komplementär-Kapital, nicht eingefordert – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8085, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9175, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen VH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8086, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9176, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8087, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9177, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8088, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9178, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8089, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Vollhafter', 9179, 9175, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8090, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9180, 9, 'Kommandit-Kapital – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8091, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9181, 9, 'Variables Kapital – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8092, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9182, 9, 'Verlustausgleichskonto – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8093, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9183, 9, 'Kapitalkonto III – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8094, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9184, 9, 'Ausstehende Einlagen auf das Kommandit-Kapital, nicht eingefordert – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8095, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9185, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen – Umbuchungen TH'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8096, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9186, 9185, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8097, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9187, 9185, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8098, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9188, 9185, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8099, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Umbuchungen auf andere Kapitalkonten: Teilhafter', 9189, 9, 'Verrechnungskonto für Umbuchungen zwischen Gesellschafter-Eigenkapitalkonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8100, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9190, 9, 'Gegenkonto für Mengeneinheiten Konten 9101-9107 und Konten 9116-9118'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8101, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Gegenkonto zu Statistischen Konten für Betriebswirtschaftliche Auswertungen', 9199, 9, 'Gegenkonto zu Konten 9120, 9135-9140'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8102, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9200, 9, 'Beschäftigte Personen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8103, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9201, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8104, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9202, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8105, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9203, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8106, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9204, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8107, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9205, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8108, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9206, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8109, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9207, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8110, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9208, 9200, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8111, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9209, 9, 'Gegenkonto zu 9200'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8112, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9210, 9, 'Produktive Löhne'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8113, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den Kennziffernteil der Bilanz', 9219, 9, 'Gegenkonto zu 9120'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8114, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9220, 9, 'Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8115, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9221, 9, 'Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8116, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9229, 9, 'Gegenkonto zu 9220-9221'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8117, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9230, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8118, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9232, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8119, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9234, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8120, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer Währung', 9239, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8121, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9240, 9, 'Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8122, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9241, 9, 'Investitionsverbindlichkeiten aus Sachanlagekäufen bei Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8123, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9242, 9, 'Investitionsverbindlichkeiten aus Käufen von immateriellen Vermögensgegenständen bei Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8124, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9243, 9, 'Investitionsverbindlichkeiten aus Käufen von Finanzanlagen bei Leistungsverbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8125, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9244, 9, 'Gegenkonto zu Konto 9240-9243'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8126, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9245, 9, 'Forderungen aus Sachnanlageverkäufen bei sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8127, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9246, 9, 'Forderungen aus Verkäufen immaterieller Vermögensgegenstände bei sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8128, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9247, 9, 'Forderungen aus Verkäufen von Finanzanlagen bei sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8129, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9249, 9, 'Gegenkonto zu Konto 9245-47'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8130, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9250, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8131, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9255, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8132, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalflussrechnung', 9259, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8133, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9260, 9, 'Kurzfristige Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8134, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9262, 9, 'Mittelfristige Rückstellungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8135, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9264, 9, 'Langfristige Rückstellungen, außer Pensionen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8136, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Aufgliederung der Rückstellungen', 9269, 9, 'Gegenkonto zu Konten 9260-9268'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8137, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9270, 9, 'Gegenkonto zu 9271-9279 (Soll-Buchung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8138, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9271, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8139, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9272, 9, 'Verbindlichkeiten aus der Begebung und Übertragung von Wechseln gegenüber verbundenen/assoziierten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8140, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9273, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8141, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9274, 9, 'Verbindlichkeiten aus Bürgschaften, Wechsel- und Scheckbürgschaften gegenüber verbundenen/assoziierten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8142, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9275, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8143, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9276, 9, 'Verbindlichkeiten aus Gewährleistungsverträgen gegenüber verbundenen/assoziierten Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8144, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9277, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8145, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9278, 9, 'Haftungen aus der Bestellung von Sicherheiten für fremde Verbindlichkeiten gegenüber verbundenen/assoziierten Unternehemn'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8146, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für in der Bilanz auszuweisende Haftungsverhältnisse', 9279, 9, 'Verpflichtungen aus Treuhandvermögen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8147, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9280, 9, 'Gegenkonto zu 9281-9284'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8148, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9281, 9, 'Verpflichtungen aus Miet- und Leasingverträgen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8149, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9282, 9, 'Verpflichtungen aus Miet- und Leasingverträgen gegenüber verbundenen Unternehmen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8150, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9283, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8151, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen', 9284, 9, 'Andere Verpflichtungen gemäß § 285 Nr. 3 HGB gegenüber verbundenen Unternehemen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8152, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9285, 9, 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach „ 253 Abs. 6 HGB (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8153, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Unterschiedsbetrag aus der Abzinsung von Altersversorgungsverpflichtungen nach § 253 Abs. 6 HGB', 9286, 9, 'Gegenkonto zu 9285'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8154, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9287, 9, 'Zinsen bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8155, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9288, 9, 'Mahngebühren bei Buchungen über Debitoren bei § 4 Abs. 3 EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8156, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9289, 9, 'Gegenkonto zu 9287 und 9288'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8157, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9290, 9, 'Statistisches Konto steuerfreie Auslagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8158, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9291, 9, 'Gegenkonto zu 9290'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8159, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9292, 9, 'Statistisches Konto Fremdgeld'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8160, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9293, 9, 'Gegenkonto zu 9292'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8161, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9295, 9, 'Einlagen stiller Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8162, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9297, 9, 'Steuerrechtlicher Ausgleichsposten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8163, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9300, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8164, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9301, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8165, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9302, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8166, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9303, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8167, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9304, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8168, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9305, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8169, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9306, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8170, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9307, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8171, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9308, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8172, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9309, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8173, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9310, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8174, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9311, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8175, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9312, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8176, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9313, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8177, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9314, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8178, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9315, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8179, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9316, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8180, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9317, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8181, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9318, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8182, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9319, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8183, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9320, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8184, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9326, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8185, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9327, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8186, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9328, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8187, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9329, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8188, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9330, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8189, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9331, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8190, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9332, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8191, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9333, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8192, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9334, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8193, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9335, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8194, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9336, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8195, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9337, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8196, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9338, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8197, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9339, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8198, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9340, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8199, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9341, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8200, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9342, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8201, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9343, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8202, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9346, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8203, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9347, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8204, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9348, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8205, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9349, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8206, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9357, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8207, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9358, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8208, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9359, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8209, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9360, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8210, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9365, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8211, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9366, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8212, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9367, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8213, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9371, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8214, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9372, 9, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8215, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9390, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8216, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9391, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8217, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9392, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8218, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9393, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8219, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9394, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8220, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9395, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8221, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9396, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8222, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9397, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8223, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9398, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8224, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für § 4 Abs. 3 EStG', 9399, 9, '(zur freien Verfügung)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8225, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9849', 9400, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8226, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9848', 9401, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8227, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9847', 9402, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8228, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9846', 9403, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8229, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9845', 9404, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8230, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9844', 9405, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8231, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9843', 9406, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8232, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9842', 9407, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8233, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9841', 9408, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8234, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9840', 9409, 9, 'Privatentnahmen allgemein'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8235, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9839', 9410, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8236, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9838', 9411, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8237, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9837', 9412, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8238, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9836', 9413, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8239, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9835', 9414, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8240, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9834', 9415, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8241, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9833', 9416, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8242, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9832', 9417, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8243, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9831', 9418, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8244, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9830', 9419, 9, 'Privatsteuern'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8245, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9829', 9420, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8246, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9828', 9421, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8247, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9827', 9422, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8248, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9826', 9423, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8249, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9825', 9424, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8250, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9824', 9425, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8251, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9823', 9426, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8252, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9822', 9427, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8253, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9821', 9428, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8254, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9820', 9429, 9, 'Sonderausgaben beschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8255, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9819', 9430, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8256, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9818', 9431, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8257, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9817', 9432, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8258, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9816', 9433, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8259, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9815', 9434, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8260, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9814', 9435, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8261, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9813', 9436, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8262, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9812', 9437, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8263, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9811', 9438, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8264, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9810', 9439, 9, 'Sonderausgaben unbeschränkt abzugsfähig'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8265, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9809', 9440, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8266, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9808', 9441, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8267, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9807', 9442, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8268, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9806', 9443, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8269, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9805', 9444, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8270, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9804', 9445, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8271, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9803', 9446, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8272, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9802', 9447, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8273, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9801', 9448, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8274, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9800', 9449, 9, 'Zuwendungen, Spenden'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8275, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9799', 9450, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8276, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9798', 9451, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8277, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9797', 9452, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8278, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9796', 9453, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8279, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9795', 9454, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8280, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9794', 9455, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8281, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9793', 9456, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8282, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9792', 9457, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8283, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9791', 9458, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8284, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9790', 9459, 9, 'Außergewöhnliche Belastungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8285, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9789', 9460, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8286, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9788', 9461, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8287, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9787', 9462, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8288, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9786', 9463, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8289, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9785', 9464, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8290, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9784', 9465, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8291, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9783', 9466, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8292, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9782', 9467, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8293, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9781', 9468, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8294, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9780', 9469, 9, 'Grundstücksaufwand'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8295, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9779', 9470, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8296, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9778', 9471, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8297, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9777', 9472, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8298, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9776', 9473, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8299, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9775', 9474, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8300, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9774', 9475, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8301, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9773', 9476, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8302, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9772', 9477, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8303, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9771', 9478, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8304, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9770', 9479, 9, 'Grundstücksertrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8305, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9769', 9480, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8306, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9768', 9481, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8307, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9767', 9482, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8308, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9766', 9483, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8309, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9765', 9484, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8310, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9764', 9485, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8311, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9763', 9486, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8312, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9762', 9487, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8313, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9761', 9488, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8314, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9760', 9489, 9, 'Unentgeltliche Wertabgaben'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8315, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9759', 9490, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8316, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9758', 9491, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8317, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9757', 9492, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8318, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9756', 9493, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8319, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9755', 9494, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8320, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9754', 9495, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8321, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9753', 9496, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8322, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9752', 9497, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8323, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9751', 9498, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8324, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Privat Teilhafter (Eigenkapital, für Verrechnung mit Kapitalkonto III – Konto 9840-9750', 9499, 9, 'Privateinlagen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8325, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9500, 9, 'Anteil für Konto 2000 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8326, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9501, 9, 'Anteil für Konto 2001 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8327, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9502, 9, 'Anteil für Konto 2002 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8328, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9503, 9, 'Anteil für Konto 2003 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8329, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9504, 9, 'Anteil für Konto 2004 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8330, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9505, 9, 'Anteil für Konto 2005 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8331, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9506, 9, 'Anteil für Konto 2006 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8332, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9507, 9, 'Anteil für Konto 2007 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8333, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9508, 9, 'Anteil für Konto 2008 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8334, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9509, 9, 'Anteil für Konto 2009 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8335, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9510, 9, 'Anteil für Konto 2010 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8336, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9511, 9, 'Anteil für Konto 2011 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8337, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9512, 9, 'Anteil für Konto 2012 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8338, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9513, 9, 'Anteil für Konto 2013 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8339, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9514, 9, 'Anteil für Konto 2014 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8340, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9515, 9, 'Anteil für Konto 2015 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8341, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9516, 9, 'Anteil für Konto 2016 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8342, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9517, 9, 'Anteil für Konto 2017 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8343, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9518, 9, 'Anteil für Konto 2018 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8344, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9519, 9, 'Anteil für Konto 2019 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8345, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9520, 9, 'Anteil für Konto 2020 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8346, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9521, 9, 'Anteil für Konto 2021 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8347, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9522, 9, 'Anteil für Konto 2022 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8348, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9523, 9, 'Anteil für Konto 2023 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8349, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9524, 9, 'Anteil für Konto 2024 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8350, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9525, 9, 'Anteil für Konto 2025 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8351, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9526, 9, 'Anteil für Konto 2026 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8352, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9527, 9, 'Anteil für Konto 2027 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8353, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9528, 9, 'Anteil für Konto 2028 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8354, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9529, 9, 'Anteil für Konto 2029 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8355, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9530, 9, 'Anteil für Konto 9910 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8356, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9531, 9, 'Anteil für Konto 9911 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8357, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9532, 9, 'Anteil für Konto 9912 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8358, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9533, 9, 'Anteil für Konto 9913 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8359, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9534, 9, 'Anteil für Konto 9914 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8360, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9535, 9, 'Anteil für Konto 9915 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8361, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9536, 9, 'Anteil für Konto 9916 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8362, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9537, 9, 'Anteil für Konto 9917 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8363, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9538, 9, 'Anteil für Konto 9918 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8364, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9539, 9, 'Anteil für Konto 9919 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8365, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9540, 9, 'Anteil für Konto 0060 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8366, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9541, 9, 'Anteil für Konto 0061 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8367, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9542, 9, 'Anteil für Konto 0062 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8368, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9543, 9, 'Anteil für Konto 0063 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8369, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9544, 9, 'Anteil für Konto 0064 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8370, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9545, 9, 'Anteil für Konto 0065 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8371, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9546, 9, 'Anteil für Konto 0066 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8372, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9547, 9, 'Anteil für Konto 0067 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8373, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9548, 9, 'Anteil für Konto 0068 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8374, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9549, 9, 'Anteil für Konto 0069 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8375, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9550, 9, 'Anteil für Konto 2050 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8376, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9551, 9, 'Anteil für Konto 2051 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8377, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9552, 9, 'Anteil für Konto 2052 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8378, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9553, 9, 'Anteil für Konto 2053 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8379, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9554, 9, 'Anteil für Konto 2054 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8380, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9555, 9, 'Anteil für Konto 2055 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8381, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9556, 9, 'Anteil für Konto 2056 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8382, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9557, 9, 'Anteil für Konto 2057 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8383, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9558, 9, 'Anteil für Konto 2058 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8384, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9559, 9, 'Anteil für Konto 2059 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8385, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9560, 9, 'Anteil für Konto 2060 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8386, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9561, 9, 'Anteil für Konto 2061 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8387, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9562, 9, 'Anteil für Konto 2062 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8388, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9563, 9, 'Anteil für Konto 2063 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8389, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9564, 9, 'Anteil für Konto 2064 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8390, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9565, 9, 'Anteil für Konto 2065 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8391, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9566, 9, 'Anteil für Konto 2066 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8392, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9567, 9, 'Anteil für Konto 2067 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8393, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9568, 9, 'Anteil für Konto 2068 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8394, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9569, 9, 'Anteil für Konto 2069 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8395, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9570, 9, 'Anteil für Konto 2070 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8396, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9571, 9, 'Anteil für Konto 2071 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8397, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9572, 9, 'Anteil für Konto 2072 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8398, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9573, 9, 'Anteil für Konto 2073 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8399, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9574, 9, 'Anteil für Konto 2074 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8400, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9575, 9, 'Anteil für Konto 2075 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8401, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9576, 9, 'Anteil für Konto 2076 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8402, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9577, 9, 'Anteil für Konto 2077 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8403, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9578, 9, 'Anteil für Konto 2078 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8404, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9579, 9, 'Anteil für Konto 2079 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8405, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9580, 9, 'Anteil für Konto 9820 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8406, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9581, 9, 'Anteil für Konto 9821 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8407, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9582, 9, 'Anteil für Konto 9822 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8408, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9583, 9, 'Anteil für Konto 9823 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8409, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9584, 9, 'Anteil für Konto 9824 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8410, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9585, 9, 'Anteil für Konto 9825 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8411, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9586, 9, 'Anteil für Konto 9826 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8412, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9587, 9, 'Anteil für Konto 9827 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8413, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9588, 9, 'Anteil für Konto 9828 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8414, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9589, 9, 'Anteil für Konto 9829 Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8415, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9590, 9, 'Anteil für Konto 0080 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8416, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9591, 9, 'Anteil für Konto 0081 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8417, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9592, 9, 'Anteil für Konto 0082 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8418, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9593, 9, 'Anteil für Konto 0083 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8419, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9594, 9, 'Anteil für Konto 0084 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8420, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9595, 9, 'Anteil für Konto 0085 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8421, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9596, 9, 'Anteil für Konto 0086 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8422, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9597, 9, 'Anteil für Konto 0087 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8423, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9598, 9, 'Anteil für Konto 0088 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8424, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9599, 9, 'Anteil für Konto 0089 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8425, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9600, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8426, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9601, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8427, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9602, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8428, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9603, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8429, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9604, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8430, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9605, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8431, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9606, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8432, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9607, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8433, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9608, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8434, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9609, 9, 'Name des Gesellschafters Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8435, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9610, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8436, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9611, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8437, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9612, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8438, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9613, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8439, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9614, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8440, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9615, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8441, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9616, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8442, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9617, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8443, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9618, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8444, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9619, 9, 'Tätigkeitsvergütung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8445, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9620, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8446, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9621, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8447, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9622, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8448, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9623, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8449, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9624, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8450, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9625, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8451, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9626, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8452, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9627, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8453, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9628, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8454, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9629, 9, 'Tantieme Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8455, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9630, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8456, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9631, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8457, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9632, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8458, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9633, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8459, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9634, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8460, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9635, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8461, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9636, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8462, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9637, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8463, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9638, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8464, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9639, 9, 'Darlehensverzinsung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8465, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9640, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8466, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9641, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8467, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9642, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8468, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9643, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8469, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9644, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8470, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9645, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8471, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9646, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8472, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9647, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8473, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9648, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8474, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9649, 9, 'Gebrauchsüberlassung Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8475, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9650, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8476, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9651, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8477, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9652, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8478, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9653, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8479, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9654, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8480, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9655, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8481, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9656, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8482, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9658, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8483, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9659, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8484, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9660, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8485, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9661, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8486, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9662, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8487, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9663, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8488, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9664, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8489, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9665, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8490, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9666, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8491, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9667, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8492, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9668, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8493, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9669, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8494, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9670, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8495, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9671, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8496, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9672, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8497, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9673, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8498, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9674, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8499, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9675, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8500, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9676, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8501, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9677, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8502, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9678, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8503, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9679, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8504, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9680, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8505, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9681, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8506, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9682, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8507, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9683, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8508, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9684, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8509, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9685, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8510, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9686, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8511, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9687, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8512, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9688, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8513, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9689, 9, 'Sonstige Vergütungen Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8514, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9690, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8515, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9691, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8516, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9692, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8517, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9693, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8518, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9694, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8519, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9695, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8520, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9696, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8521, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9697, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8522, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9698, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8523, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9699, 9, 'Restanteil Vollhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8524, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9700, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8525, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9701, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8526, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9702, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8527, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9703, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8528, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9704, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8529, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9705, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8530, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9706, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8531, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9707, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8532, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9708, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8533, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9709, 9, 'Name des Gesellschafters Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8534, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9710, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8535, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9711, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8536, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9712, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8537, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9713, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8538, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9714, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8539, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9715, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8540, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9716, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8541, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9717, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8542, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9718, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8543, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9719, 9, 'Tätigkeitsvergütung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8544, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9720, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8545, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9721, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8546, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9722, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8547, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9723, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8548, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9724, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8549, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9725, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8550, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9726, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8551, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9727, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8552, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9728, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8553, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9729, 9, 'Tantieme Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8554, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9730, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8555, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9731, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8556, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9732, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8557, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9733, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8558, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9734, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8559, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9735, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8560, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9736, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8561, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9737, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8562, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9738, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8563, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9739, 9, 'Darlehensverzinsung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8564, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9740, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8565, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9741, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8566, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9742, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8567, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9743, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8568, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9744, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8569, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9745, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8570, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9746, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8571, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9747, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8572, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9748, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8573, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9749, 9, 'Gebrauchsüberlassung Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8574, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9750, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8575, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9751, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8576, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9752, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8577, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9753, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8578, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9754, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8579, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9755, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8580, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9756, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8581, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9757, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8582, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9758, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8583, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9759, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8584, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9760, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8585, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9761, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8586, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9762, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8587, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9763, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8588, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9764, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8589, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9765, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8590, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9766, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8591, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9767, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8592, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9768, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8593, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9769, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8594, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9770, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8595, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9771, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8596, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9772, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8597, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9773, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8598, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9774, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8599, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9775, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8600, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9776, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8601, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9777, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8602, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9778, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8603, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9779, 9, 'Sonstige Vergütungen Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8604, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9780, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8605, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9781, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8606, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9782, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8607, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9783, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8608, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9784, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8609, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9785, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8610, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9786, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8611, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9787, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8612, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9788, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8613, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9789, 9, 'Anteil für Konto 9840 Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8614, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9790, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8615, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9791, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8616, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9792, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8617, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9793, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8618, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9794, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8619, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9795, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8620, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9796, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8621, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9797, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8622, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9798, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8623, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9799, 9, 'Restanteil Teilhafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8624, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Kapitalkontenentwicklung', 9800, 9, 'Abstimmsummenkonto für den Import von Buchungssätzen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8625, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9802, 9, 'Gesamthänderisch gebundene Rücklagen – andere Kapitalkontenanpassungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8626, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9803, 9, 'Gewinnvortrag/Verlustvortrag – andere Kapitalkontenanpassungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8627, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9804, 9, 'Gesamthänderisch gebundene Rücklagen – Umbuchungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8628, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Rücklagen, Gewinn-, Verlustvortrag', 9805, 9, 'Gewinnvortrag/Verlustvortrag – Umbuchungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8629, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9806, 9, 'Zuzurechnender Anteil am Jahresüberschuss/Jahresfehlbetrag – je Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8630, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9807, 9, 'Zuzurechnender Anteil am Bilanzgewinn/Bilanzverlust – je Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8631, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9808, 9, 'Gegenkonto für zuzurechnenden Anteil am Jahresüberschuss/Jahresfehlbetrag'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8632, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Anteile an den Posten Jahresüberschuss/-fehlbetrag bzw. Bilanzgewinn/-verlust', 9809, 9, 'Gegenkonto für zuzurechnenden Anteil am Bilanzgewinn/Bilanzverlust'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8633, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9810, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8634, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9811, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8635, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9812, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8636, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9813, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8637, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9814, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8638, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9815, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8639, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9816, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8640, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9817, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8641, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9818, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8642, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9819, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8643, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9820, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8644, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9821, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8645, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9822, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8646, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9823, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8647, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9824, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8648, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9825, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8649, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9826, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8650, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9827, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8651, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9828, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8652, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9829, 9, 'Verlust-/Vortragskonto'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8653, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9830, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8654, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9831, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8655, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9832, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8656, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9833, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8657, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9834, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8658, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9835, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8659, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9836, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8660, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9837, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8661, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9838, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8662, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Vollhafter', 9839, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8663, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9840, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8664, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9841, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8665, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9842, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8666, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9843, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8667, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9844, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8668, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9845, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8669, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9846, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8670, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9847, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8671, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9848, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8672, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9849, 9, 'Kapitalkonto III'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8673, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9850, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8674, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9851, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8675, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9852, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8676, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9853, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8677, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9854, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8678, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9855, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8679, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9856, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8680, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9857, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8681, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9858, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8682, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Kapital Personenhandelsgesellschaft Teilhafter', 9859, 9, 'Verrechnungskonto für Einzahlungsverpflichtungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8683, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9860, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8684, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9861, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8685, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9862, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8686, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9863, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8687, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9864, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8688, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9865, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8689, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9866, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8690, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9867, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8691, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9868, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8692, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9869, 9, 'Einzahlungsverpflichtungen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8693, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9870, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8694, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9871, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8695, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9872, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8696, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9873, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8697, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9874, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8698, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9875, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8699, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9876, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8700, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9877, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8701, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9878, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8702, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Einzahlungsverpflichtungen im Bereich Forderungen', 9879, 9, 'Einzahlungsverpflichtungen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8703, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9880, 9, 'Ausgleichsposten für aktivierte eigen Anteile'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8704, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Ausgleichsposten für aktivierte eigene Anteil und Bilanzierungshilfen', 9882, 9880, ''); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8705, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9883, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8706, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Nicht durch Vermögenseinlagen gedeckte Entnahmen', 9884, 9, 'Nicht durch Vermögenseinlagen gedeckte Entnahmen Kommanditisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8707, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9885, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen persönlich haftender Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8708, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen', 9886, 9, 'Verrechnungskonto für nicht durch Vermögenseinlagen gedeckte Entnahmen Kommandisten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8709, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9887, 9, 'Steueraufwand der Gesellschafter'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8710, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Steueraufwand der Gesellschafter', 9889, 9, 'Gegenkonto zu 9887'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8711, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9890, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8712, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Gewinnzuschlag', 9891, 9, 'Statistisches Konto für den Gewinnzuschlag nach §§ 6b, 6c EStG (Soll) – Gegenkonto zu 9890'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8713, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)', 9892, 9, 'Veränderung der gesamthänderisch gebundenen Rücklagen (Einlagen/Entnahmen)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8714, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9893, 9, 'Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8715, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9894, 9, 'Umsatzsteuer in den Forderungen zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8716, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9895, 9, 'Gegenkonto 9893-9894 für die Aufteilung der Umsatzsteuer (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8717, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9696, 9, 'Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8718, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9897, 9, 'Vorsteuer in den Verbindlichkeiten zum ermäßigten Umsatzsteuersatz (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8719, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/Verbindlichkeiten (EÜR)', 9899, 9, 'Gegenkonto 9896-9897 für die Aufteilung der Vorsteuer (EÜR)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8720, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9910, 9, 'Gegenkonto zur Minderung der Entnahmen $ 4 (4a) EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8721, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9911, 9, 'Minderung der Entnahmen § 4 (4a) EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8722, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9912, 9, 'Erhöhung der Entnahmen § 4 (4a) EStG'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8723, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten zu § 4 (4a) EStG', 9913, 9, 'Gegenkonto zur Erhöhung der Entnahmen § 4 (4a) EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8724, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9916, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8725, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9917, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 3. vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8726, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9918, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8727, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9919, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 3. vorangegangenen Wirtschaftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8728, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9960, 9, 'Bewertungskorrektur zu Forderungen aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8729, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9961, 9, 'Bewertungskorrektur zu sonstigen Verbindlichkeiten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8730, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9962, 9, 'Bewertungskorrektur zu Guthaben bei Kreditinstituten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8731, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9963, 9, 'Bewertungskorrektur zu Verbindlichkeiten gegenüber Kreditinstituten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8732, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9964, 9, 'Bewertungskorrektur zu Verbindlichkeiten aus Lieferungen und Leistungen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8733, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Konten zu Bewertungskorrekturen', 9965, 9, 'Bewertungskorrektur zu sonstigen Vermögensgegenständen'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8734, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9970, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8735, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9971, 9, 'Investitionsabzugsbetrag § 7g Abs. 1 EStG, außerbilanziell (Haben) – Gegenkonto 9970'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8736, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9972, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus vorangegangenen Wirtschaftsjahr, außerbilanziell (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8737, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9973, 9, 'Hinzurechnung Investitionsabzugsbetrag § 7g Abs. 2 EStG aus dem 2. vorangegangenen Wirtschaftsjahren, außerbilanziell (Soll) – Gegenkonto zu 9972, 9916, 9917'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8738, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9974, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im vorangegangenen Wirtschaftsjahr'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8739, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den außerhalb der Bilanz zu berücksichtigenden Investitionsabzugsbetrag § 7 EStG', 9975, 9, 'Rückgängigmachung Investitionsabzugsbetrag § 7b Abs. 3, 4 EStG im 2. vorangegangenen Wirtschaftsjahren – Gegenkonto 9974, 9918, 9919'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8740, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9976, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Haben)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8741, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9977, 9, 'Nicht abzugsfähige Zinsaufwendungen gemäß § 4h EStG (Soll) – Gegenkonto zu 9976'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8742, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9978, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Soll)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8743, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Zinsschranke § 4h EStG/§ 8a KStG', 9979, 9, 'Abziehbare Zinsaufwendungen aus Vorjahren gemäß § 4h EStG (Haben) – Gegenkonto zu 9978'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8744, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9980, 9, 'Anteil Belastung au Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8745, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9981, 9, 'Verrechnungskonto für Anteil Belastung auf Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8746, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9982, 9, 'Anteil Gutschrift auf Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8747, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für den GuV-Ausweis in „Gutschrift bzw. Belastung auf Verbindlichkeitskonten“ bei den Zuordnungstabellen für PersHG nach KapCoRiLiG', 9983, 9, 'Verrechnungskonto für Anteil Gutschrift auf Verbindlichkeitskonten'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8748, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9984, 9, 'Gewinnkorrektur nach § 60 Abs. 2 EstDV – Erhöhung handelsrechtliches Ergebnis durch Habenbuchung – Minderung handelrechtliches Ergebnis durch Sollbuchung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8749, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für die Gewinnkorrektur nach § 60 Abs. 2 EstDV', 9985, 9, 'Gegenkonto zu 9984'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8750, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9986, 9, 'Ergebnisverteilung auf Fremdkapital'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8751, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9987, 9, 'Bilanzberichtigung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8752, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für Korrekturbuchungen in der Überleitungsrechnung', 9989, 9, 'Gegenkonto 9986-9988'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8753, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9990, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8754, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9991, 9, 'Erträge (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8755, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9992, 9, 'Erträge von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8756, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9993, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8757, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9994, 9, 'Aufwendungen (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8758, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9995, 9, 'Aufwendungen von außergewöhnlicher Größenordnung oder Bedeutung (aperiodisch)'); +INSERT INTO llx_accounting_account (entity, rowid, fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label) VALUES (__ENTITY__, 8759, 'SKR04', 'Vortrags-, Kapital-, Korrektur- und statistische Konten', 'Statistische Konten für außergewöhnliche und aperiodische Geschäftsvorfälle für Anhangsangabe nach § 285 Nr. 31 und Nr. 32 HGB', 9998, 9, 'Gegenkonto 9990-9997'); From 96c1814793bba17ba56d83d7b29d584cd6b2f97d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 27 Sep 2018 11:33:28 +0200 Subject: [PATCH 34/81] FIX XSS vulnerability reported by Mary Princy E --- htdocs/admin/company.php | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/htdocs/admin/company.php b/htdocs/admin/company.php index 949038b4413..9b312e7e228 100644 --- a/htdocs/admin/company.php +++ b/htdocs/admin/company.php @@ -327,20 +327,20 @@ if ($action == 'edit' || $action == 'updateedit') // Name print ''; - print ''."\n"; + print ''."\n"; // Addresse print ''; - print ''."\n"; + print ''."\n"; print ''; - print ''."\n"; + print ''."\n"; print ''; - print ''."\n"; + print ''."\n"; // Country @@ -362,29 +362,29 @@ if ($action == 'edit' || $action == 'updateedit') print ''; - print ''; + print ''; print ''."\n"; print ''; - print ''; + print ''; print ''."\n"; print ''; - print ''; + print ''; print ''."\n"; // Web print ''; - print ''; + print ''; print ''."\n"; // Barcode if (! empty($conf->barcode->enabled)) { print ''; - print ''; + print ''; print ''; } @@ -423,19 +423,19 @@ if ($action == 'edit' || $action == 'updateedit') // Managing Director(s) print ''; - print ''; + print ''; // GDPR contact print ''; print $form->textwithpicto($langs->trans("GDPRContact"), $langs->trans("GDPRContactDesc")); print ''; - print ''; + print ''; // Capital print ''; - print ''; + print ''; // Juridical Status @@ -454,7 +454,7 @@ if ($action == 'edit' || $action == 'updateedit') print ''; if (! empty($mysoc->country_code)) { - print ''; + print ''; } else { @@ -470,7 +470,7 @@ if ($action == 'edit' || $action == 'updateedit') print ''; if (! empty($mysoc->country_code)) { - print ''; + print ''; } else { @@ -486,7 +486,7 @@ if ($action == 'edit' || $action == 'updateedit') print ''; if (! empty($mysoc->country_code)) { - print ''; + print ''; } else { @@ -502,7 +502,7 @@ if ($action == 'edit' || $action == 'updateedit') print ''; if (! empty($mysoc->country_code)) { - print ''; + print ''; } else { @@ -518,7 +518,7 @@ if ($action == 'edit' || $action == 'updateedit') print ''; if (! empty($mysoc->country_code)) { - print ''; + print ''; } else { @@ -534,7 +534,7 @@ if ($action == 'edit' || $action == 'updateedit') print ''; if (! empty($mysoc->country_code)) { - print ''; + print ''; } else { @@ -546,7 +546,7 @@ if ($action == 'edit' || $action == 'updateedit') // TVA Intra print ''; - print ''; + print ''; print ''; // Object of the company From 7b86776f6b1039111cec8dde34f1e8716ce7601e Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 27 Sep 2018 12:42:52 +0200 Subject: [PATCH 35/81] Introduce option MAIN_INCLUDE_ZERO_VAT_IN_REPORTS to solve a regression on feature to report vat by rate when rate is zero --- htdocs/core/lib/tax.lib.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/htdocs/core/lib/tax.lib.php b/htdocs/core/lib/tax.lib.php index 57bb32ef1a3..1cce7527018 100644 --- a/htdocs/core/lib/tax.lib.php +++ b/htdocs/core/lib/tax.lib.php @@ -172,7 +172,7 @@ function tax_by_thirdparty($type, $db, $y, $date_start, $date_end, $modetax, $di if ($date_start && $date_end) $sql.= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 0"; // Limit to products $sql.= " AND d.date_start is null AND d.date_end IS NULL)"; // enhance detection of products - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture; } else @@ -213,7 +213,7 @@ function tax_by_thirdparty($type, $db, $y, $date_start, $date_end, $modetax, $di if ($date_start && $date_end) $sql.= " AND pa.datep >= '".$db->idate($date_start)."' AND pa.datep <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 0"; // Limit to products $sql.= " AND d.date_start is null AND d.date_end IS NULL)"; // enhance detection of products - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture.", pf.rowid"; } @@ -320,7 +320,7 @@ function tax_by_thirdparty($type, $db, $y, $date_start, $date_end, $modetax, $di if ($date_start && $date_end) $sql.= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 1"; // Limit to services $sql.= " OR d.date_start is NOT null OR d.date_end IS NOT NULL)"; // enhance detection of service - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture; } else @@ -361,7 +361,7 @@ function tax_by_thirdparty($type, $db, $y, $date_start, $date_end, $modetax, $di if ($date_start && $date_end) $sql.= " AND pa.datep >= '".$db->idate($date_start)."' AND pa.datep <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 1"; // Limit to services $sql.= " OR d.date_start is NOT null OR d.date_end IS NOT NULL)"; // enhance detection of service - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture.", pf.rowid"; } @@ -465,7 +465,7 @@ function tax_by_thirdparty($type, $db, $y, $date_start, $date_end, $modetax, $di if ($date_start && $date_end) $sql.= " AND p.datep >= '".$db->idate($date_start)."' AND p.datep <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = -1"; $sql.= " OR e.date_debut is NOT null OR e.date_fin IS NOT NULL)"; // enhance detection of service - $sql.= " AND (d.".$f_rate." <> 0 OR d.total_tva <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.total_tva <> 0)"; $sql.= " ORDER BY e.rowid"; if (! $sql) @@ -641,7 +641,7 @@ function tax_by_rate($type, $db, $y, $q, $date_start, $date_end, $modetax, $dire if ($date_start && $date_end) $sql.= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 0"; // Limit to products $sql.= " AND d.date_start is null AND d.date_end IS NULL)"; // enhance detection of products - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture; } else @@ -682,7 +682,7 @@ function tax_by_rate($type, $db, $y, $q, $date_start, $date_end, $modetax, $dire if ($date_start && $date_end) $sql.= " AND pa.datep >= '".$db->idate($date_start)."' AND pa.datep <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 0"; // Limit to products $sql.= " AND d.date_start is null AND d.date_end IS NULL)"; // enhance detection of products - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture.", pf.rowid"; } @@ -789,7 +789,7 @@ function tax_by_rate($type, $db, $y, $q, $date_start, $date_end, $modetax, $dire if ($date_start && $date_end) $sql.= " AND f.datef >= '".$db->idate($date_start)."' AND f.datef <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 1"; // Limit to services $sql.= " OR d.date_start is NOT null OR d.date_end IS NOT NULL)"; // enhance detection of service - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture; } else @@ -830,7 +830,7 @@ function tax_by_rate($type, $db, $y, $q, $date_start, $date_end, $modetax, $dire if ($date_start && $date_end) $sql.= " AND pa.datep >= '".$db->idate($date_start)."' AND pa.datep <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = 1"; // Limit to services $sql.= " OR d.date_start is NOT null OR d.date_end IS NOT NULL)"; // enhance detection of service - $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.".$total_tva." <> 0)"; $sql.= " ORDER BY d.rowid, d.".$fk_facture.", pf.rowid"; } @@ -934,7 +934,7 @@ function tax_by_rate($type, $db, $y, $q, $date_start, $date_end, $modetax, $dire if ($date_start && $date_end) $sql.= " AND p.datep >= '".$db->idate($date_start)."' AND p.datep <= '".$db->idate($date_end)."'"; $sql.= " AND (d.product_type = -1"; $sql.= " OR e.date_debut is NOT null OR e.date_fin IS NOT NULL)"; // enhance detection of service - $sql.= " AND (d.".$f_rate." <> 0 OR d.total_tva <> 0)"; + if (empty($conf->global->MAIN_INCLUDE_ZERO_VAT_IN_REPORTS)) $sql.= " AND (d.".$f_rate." <> 0 OR d.total_tva <> 0)"; $sql.= " ORDER BY e.rowid"; if (! $sql) From 09796338503824a79e9bbefb418b6565336fcd40 Mon Sep 17 00:00:00 2001 From: Emma Date: Thu, 27 Sep 2018 14:22:33 +0200 Subject: [PATCH 36/81] Fix state name for list field title in adherent --- htdocs/adherents/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/adherents/list.php b/htdocs/adherents/list.php index 7b90878dff7..51e1a8b244e 100644 --- a/htdocs/adherents/list.php +++ b/htdocs/adherents/list.php @@ -582,7 +582,7 @@ if (! empty($arrayfields['t.libelle']['checked'])) print_liste_field_titr if (! empty($arrayfields['d.address']['checked'])) print_liste_field_titre($arrayfields['d.address']['label'],$_SERVER["PHP_SELF"],'d.address','',$param,'',$sortfield,$sortorder); if (! empty($arrayfields['d.zip']['checked'])) print_liste_field_titre($arrayfields['d.zip']['label'],$_SERVER["PHP_SELF"],'d.zip','',$param,'',$sortfield,$sortorder); if (! empty($arrayfields['d.town']['checked'])) print_liste_field_titre($arrayfields['d.town']['label'],$_SERVER["PHP_SELF"],'d.town','',$param,'',$sortfield,$sortorder); -if (! empty($arrayfields['state.nom']['checked'])) print_liste_field_titre($arrayfields['state.town']['label'],$_SERVER["PHP_SELF"],"state.nom","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['state.nom']['checked'])) print_liste_field_titre($arrayfields['state.nom']['label'],$_SERVER["PHP_SELF"],"state.nom","",$param,'',$sortfield,$sortorder); if (! empty($arrayfields['country.code_iso']['checked'])) print_liste_field_titre($arrayfields['country.code_iso']['label'],$_SERVER["PHP_SELF"],"country.code_iso","",$param,'align="center"',$sortfield,$sortorder); if (! empty($arrayfields['d.phone']['checked'])) print_liste_field_titre($arrayfields['d.phone']['label'],$_SERVER["PHP_SELF"],'d.phone','',$param,'',$sortfield,$sortorder); if (! empty($arrayfields['d.phone_perso']['checked'])) print_liste_field_titre($arrayfields['d.phone_perso']['label'],$_SERVER["PHP_SELF"],'d.phone_perso','',$param,'',$sortfield,$sortorder); From a623d8083028c32516f36c20d83b71c535d29a23 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 27 Sep 2018 16:38:18 +0200 Subject: [PATCH 37/81] Work on mandatory form fields --- htdocs/admin/defaultvalues.php | 27 ++++++++++++++++++++------- htdocs/core/lib/admin.lib.php | 5 +++++ htdocs/core/lib/functions.lib.php | 6 ++---- htdocs/langs/en_US/admin.lang | 1 + 4 files changed, 28 insertions(+), 11 deletions(-) diff --git a/htdocs/admin/defaultvalues.php b/htdocs/admin/defaultvalues.php index 984ddfbefd7..2e4d25ae294 100644 --- a/htdocs/admin/defaultvalues.php +++ b/htdocs/admin/defaultvalues.php @@ -1,5 +1,5 @@ +/* Copyright (C) 2017-2018 Laurent Destailleur * Copyright (C) 2017-2018 Regis Houssin * * This program is free software; you can redistribute it and/or modify @@ -17,8 +17,13 @@ */ /** - * \file htdocs/admin/defaultvalues.php - * \brief Page to set default values used used in a create form + * \file htdocs/admin/defaultvalues.php + * \brief Page to set default values used used in a create form + * Default values are stored into $user->default_values[url]['createform']['querystring'|'_noquery_'][paramkey]=paramvalue + * Default filters are stored into $user->default_values[url]['filters']['querystring'|'_noquery_'][paramkey]=paramvalue + * Default sort order are stored into $user->default_values[url]['sortorder']['querystring'|'_noquery_'][paramkey]=paramvalue + * Default focus are stored into $user->default_values[url]['focus']['querystring'|'_noquery_'][paramkey]=paramvalue + * Mandatory fields are stored into $user->default_values[url]['mandatory']['querystring'|'_noquery_'][paramkey]=paramvalue */ require '../main.inc.php'; @@ -234,6 +239,10 @@ if ($mode == 'focus') { print info_admin($langs->trans("FeatureNotYetAvailable")).'
'; } +if ($mode == 'mandatory') +{ + print info_admin($langs->trans("FeatureNotYetAvailable")).'
'; +} print ''; print ''; @@ -261,7 +270,7 @@ else } print_liste_field_titre($textkey,$_SERVER["PHP_SELF"],'param','',$param,'',$sortfield,$sortorder); // Value -if ($mode != 'focus') +if ($mode != 'focus' && $mode != 'mandatory') { if ($mode != 'sortorder') { @@ -301,7 +310,7 @@ print ''; print ''; print ''; // Value -if ($mode != 'focus') +if ($mode != 'focus' && $mode != 'mandatory') { print ''; print ''; @@ -313,13 +322,14 @@ if (! empty($conf->multicompany->enabled) && !$user->entity) print ''; print ''; print ''; - print ''; } else { print ''; print ''; + print ''; } +print ''; $disabled=''; if (empty($conf->global->MAIN_ENABLE_DEFAULT_VALUES)) $disabled=' disabled="disabled"'; print ''; @@ -363,7 +373,7 @@ if ($result) print ''."\n"; // Value - if ($mode != 'focus') + if ($mode != 'focus' && $mode != 'mandatory') { print ''; /*print ''; @@ -376,6 +386,9 @@ if ($result) print ''; } + // Multicompany + print ''; + // Actions print ''; if ($action != 'edit' || GETPOST('rowid') != $obj->rowid) diff --git a/htdocs/core/lib/admin.lib.php b/htdocs/core/lib/admin.lib.php index c900a30ea18..4014adfc272 100644 --- a/htdocs/core/lib/admin.lib.php +++ b/htdocs/core/lib/admin.lib.php @@ -729,6 +729,11 @@ function defaultvalues_prepare_head() $head[$h][2] = 'focus'; $h++; + $head[$h][0] = DOL_URL_ROOT."/admin/defaultvalues.php?mode=mandatory"; + $head[$h][1] = $langs->trans("DefaultMandatory"); + $head[$h][2] = 'mandatory'; + $h++; + /*$head[$h][0] = DOL_URL_ROOT."/admin/translation.php?mode=searchkey"; $head[$h][1] = $langs->trans("TranslationKeySearch"); $head[$h][2] = 'searchkey'; diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 8b7e4b70c63..22291c6b4d8 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -430,7 +430,7 @@ function GETPOST($paramname, $check='none', $method=0, $filter=null, $options=nu } elseif (isset($user->default_values[$relativepathstring]['filters'])) { - foreach($user->default_values[$relativepathstring]['filters'] as $defkey => $defval) + foreach($user->default_values[$relativepathstring]['filters'] as $defkey => $defval) // $defkey is a querystring like 'a=b&c=d', $defval is key of user { $qualified = 0; if ($defkey != '_noquery_') @@ -586,7 +586,6 @@ function GETPOST($paramname, $check='none', $method=0, $filter=null, $options=nu // Save data into session if key start with 'search_' or is 'smonth', 'syear', 'month', 'year' if (empty($method) || $method == 3 || $method == 4) { - //if (preg_match('/^search_/', $paramname) || in_array($paramname, array('sortorder', 'sortfield", 'smonth', 'syear', 'month', 'year'))) if (preg_match('/^search_/', $paramname) || in_array($paramname, array('sortorder','sortfield'))) { //var_dump($paramname.' - '.$out.' '.$user->default_values[$relativepathstring]['filters'][$paramname]); @@ -595,8 +594,7 @@ function GETPOST($paramname, $check='none', $method=0, $filter=null, $options=nu // - posted value not empty, or // - if posted value is empty and a default value exists that is not empty (it means we did a filter to an empty value when default was not). - //if (! empty($out) || ! empty($user->default_values[$relativepathstring]['filters'][$paramname])) - if ($out != '') // $out = '0' like 'abc' is a search criteria to keep + if ($out != '') // $out = '0' or 'abc', it is a search criteria to keep { $user->lastsearch_values_tmp[$relativepathstring][$paramname]=$out; } diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang index 90305eeab3b..af1ba72f8f6 100644 --- a/htdocs/langs/en_US/admin.lang +++ b/htdocs/langs/en_US/admin.lang @@ -1437,6 +1437,7 @@ DefaultCreateForm=Default values (on forms to create) DefaultSearchFilters=Default search filters DefaultSortOrder=Default sort orders DefaultFocus=Default focus fields +DefaultMandatory=Mandatory form fields ##### Products ##### ProductSetup=Products module setup ServiceSetup=Services module setup From 851fd4cc180b9d904369220bb199ac51a71c8ec0 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 00:52:15 +0200 Subject: [PATCH 38/81] NEW Can set the default focus of each page. NEW Can set if a field is mandatory on form level. --- htdocs/admin/defaultvalues.php | 12 ++---- htdocs/core/lib/functions.lib.php | 69 ++++++++++++++++++++++++++++++- htdocs/langs/en_US/admin.lang | 3 +- 3 files changed, 73 insertions(+), 11 deletions(-) diff --git a/htdocs/admin/defaultvalues.php b/htdocs/admin/defaultvalues.php index 2e4d25ae294..4d75ab44235 100644 --- a/htdocs/admin/defaultvalues.php +++ b/htdocs/admin/defaultvalues.php @@ -235,13 +235,9 @@ if ($mode == 'sortorder') { print info_admin($langs->trans("WarningSettingSortOrder")).'
'; } -if ($mode == 'focus') -{ - print info_admin($langs->trans("FeatureNotYetAvailable")).'
'; -} if ($mode == 'mandatory') { - print info_admin($langs->trans("FeatureNotYetAvailable")).'
'; + print info_admin($langs->trans("FeatureSupportedOnTextFieldsOnly")).'
'; } print ''; @@ -303,11 +299,11 @@ print "\n"; print ''; // Page print ''; -print ''; +print ''; print ''."\n"; // Field print ''; -print ''; +print ''; print ''; // Value if ($mode != 'focus' && $mode != 'mandatory') @@ -320,7 +316,7 @@ if ($mode != 'focus' && $mode != 'mandatory') if (! empty($conf->multicompany->enabled) && !$user->entity) { print ''; - print ''; + print ''; // We see environment, but to change it we must switch on other entity print ''; } else diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 22291c6b4d8..36c7b2a58e1 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -7023,7 +7023,8 @@ function complete_head_from_modules($conf,$langs,$object,&$head,&$h,$type,$mode= */ function printCommonFooter($zone='private') { - global $conf, $hookmanager; + global $conf, $hookmanager, $user; + global $action; global $micro_start_time; if ($zone == 'private') print "\n".''."\n"; @@ -7056,7 +7057,71 @@ function printCommonFooter($zone='private') print '});'."\n"; } - // Google Analytics (need Google module) + // Management of focus and mandatory for fields + if ($action == 'create' || $action == 'edit') + { + print '/* Code js to manage focus and mandatory form fields */'."\n"; + $relativepathstring = $_SERVER["PHP_SELF"]; + // Clean $relativepathstring + if (constant('DOL_URL_ROOT')) $relativepathstring = preg_replace('/^'.preg_quote(constant('DOL_URL_ROOT'),'/').'/', '', $relativepathstring); + $relativepathstring = preg_replace('/^\//', '', $relativepathstring); + $relativepathstring = preg_replace('/^custom\//', '', $relativepathstring); + $tmpqueryarraywehave=explode('&', dol_string_nohtmltag($_SERVER['QUERY_STRING'])); + foreach($user->default_values[$relativepathstring]['focus'] as $defkey => $defval) + { + $qualified = 0; + if ($defkey != '_noquery_') + { + $tmpqueryarraytohave=explode('&', $defkey); + $foundintru=0; + foreach($tmpqueryarraytohave as $tmpquerytohave) + { + if (! in_array($tmpquerytohave, $tmpqueryarraywehave)) $foundintru=1; + } + if (! $foundintru) $qualified=1; + //var_dump($defkey.'-'.$qualified); + } + else $qualified = 1; + + if ($qualified) + { + foreach($defval as $paramkey => $paramval) + { + // Add property 'required' on input + print 'jQuery("input[name=\''.$paramkey.'\']").focus();'."\n"; + } + } + } + foreach($user->default_values[$relativepathstring]['mandatory'] as $defkey => $defval) + { + $qualified = 0; + if ($defkey != '_noquery_') + { + $tmpqueryarraytohave=explode('&', $defkey); + $foundintru=0; + foreach($tmpqueryarraytohave as $tmpquerytohave) + { + if (! in_array($tmpquerytohave, $tmpqueryarraywehave)) $foundintru=1; + } + if (! $foundintru) $qualified=1; + //var_dump($defkey.'-'.$qualified); + } + else $qualified = 1; + + if ($qualified) + { + foreach($defval as $paramkey => $paramval) + { + // Add property 'required' on input + print 'jQuery("input[name=\''.$paramkey.'\']").prop(\'required\',true);'."\n"; + print 'jQuery("select[name=\''.$paramkey.'\']").prop(\'required\',true);'."\n"; // required on a select works only if key is "", this does not happen in Dolibarr + } + } + } + } + + // Google Analytics + // TODO Add a hook here if (! empty($conf->google->enabled) && ! empty($conf->global->MAIN_GOOGLE_AN_ID)) { if (($conf->dol_use_jmobile != 4)) diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang index af1ba72f8f6..c46fbc309a8 100644 --- a/htdocs/langs/en_US/admin.lang +++ b/htdocs/langs/en_US/admin.lang @@ -1810,10 +1810,11 @@ SocialNetworkSetup=Setup of module Social Networks EnableFeatureFor=Enable features for %s VATIsUsedIsOff=Note: The option to use sales Tax or VAT has been set to Off in the menu %s - %s, so Sale tax or Vat used will always be 0 for sales. SwapSenderAndRecipientOnPDF=Swap sender and recipient address on PDF +FeatureSupportedOnTextFieldsOnly=Warning, feature supported on text fields only ##### Resource #### ResourceSetup=Configuration du module Resource UseSearchToSelectResource=Use a search form to choose a resource (rather than a drop-down list). DisabledResourceLinkUser=Disable feature to link a resource to users DisabledResourceLinkContact=Disable feature to link a resource to contacts ConfirmUnactivation=Confirm module reset -OnMobileOnly=On small screen (smartphone) only \ No newline at end of file +OnMobileOnly=On small screen (smartphone) only From 33130853c83fec88e68f2405bc25a729bce6fc0a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 00:59:02 +0200 Subject: [PATCH 39/81] Fix website --- htdocs/website/index.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/htdocs/website/index.php b/htdocs/website/index.php index c3facf51551..19c9c31da71 100644 --- a/htdocs/website/index.php +++ b/htdocs/website/index.php @@ -1937,16 +1937,15 @@ if (count($object->records) > 0) // There is at least one web site print '
'; print '
'; + print $langs->trans("EditInLine"); if ($websitepage->grabbed_from) { //print ''; - $langs->trans("EditInLine"); - print ''.img_picto($langs->trans("EditInLineOff"),'switch_off','',false,0,0,'','nomarginleft').''; + print ''.img_picto($langs->trans("OnlyEditionOfSourceForGrabbedContent"),'switch_off','',false,0,0,'','nomarginleft').''; } else { //print ''; - print $langs->trans("EditInLine"); if (empty($conf->global->WEBSITE_EDITINLINE)) { print ''.img_picto($langs->trans("EditInLineOff"),'switch_off','',false,0,0,'','nomarginleft').''; @@ -1959,13 +1958,20 @@ if (count($object->records) > 0) // There is at least one web site print '
'; print ''; print '
'; From c07ab81e6a972c5b176c9f3fa1e911b0b208b086 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 02:22:23 +0200 Subject: [PATCH 40/81] Fix trans --- htdocs/langs/en_US/main.lang | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/langs/en_US/main.lang b/htdocs/langs/en_US/main.lang index 7136b15dc59..b52301bd3fe 100644 --- a/htdocs/langs/en_US/main.lang +++ b/htdocs/langs/en_US/main.lang @@ -751,6 +751,7 @@ LinkTo=Link to LinkToProposal=Link to proposal LinkToOrder=Link to order LinkToInvoice=Link to invoice +LinkToTemplateInvoice=Link to template invoice LinkToSupplierOrder=Link to supplier order LinkToSupplierProposal=Link to supplier proposal LinkToSupplierInvoice=Link to supplier invoice From a88dcfd1e4e4d107792e74b338b6ffa9a5e3e942 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 02:24:11 +0200 Subject: [PATCH 41/81] Fix phpcs --- htdocs/compta/facture/card.php | 6 +++--- htdocs/core/modules/modProduct.class.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php index 5131d18a43f..3c206b517ef 100644 --- a/htdocs/compta/facture/card.php +++ b/htdocs/compta/facture/card.php @@ -954,7 +954,7 @@ if (empty($reshook)) if($facture_source->type == Facture::TYPE_SITUATION) { - $source_fk_prev_id = $line->fk_prev_id; // temporary storing situation invoice fk_prev_id + $source_fk_prev_id = $line->fk_prev_id; // temporary storing situation invoice fk_prev_id $line->fk_prev_id = $line->id; // Credit note line need to be linked to the situation invoice it is create from if(!empty($facture_source->tab_previous_situation_invoice)) @@ -1537,8 +1537,8 @@ if (empty($reshook)) $line->origin = $object->origin; $line->origin_id = $line->id; $line->fetch_optionals($line->id); - $line->situation_percent = $line->get_prev_progress($object->id); // get good progress including credit note - + $line->situation_percent = $line->get_prev_progress($object->id); // get good progress including credit note + // Si fk_remise_except defini on vérifie si la réduction à déjà été appliquée if ($line->fk_remise_except) { diff --git a/htdocs/core/modules/modProduct.class.php b/htdocs/core/modules/modProduct.class.php index 7157f98e765..15b34dfbeac 100644 --- a/htdocs/core/modules/modProduct.class.php +++ b/htdocs/core/modules/modProduct.class.php @@ -132,8 +132,8 @@ class modProduct extends DolibarrModules $this->rights[$r][3] = 0; $this->rights[$r][4] = 'export'; $r++; - - $this->rights[$r][0] = 39; + + $this->rights[$r][0] = 39; $this->rights[$r][1] = 'Ignore minimum price'; $this->rights[$r][2] = 'r'; $this->rights[$r][3] = 0; From a1c20ceb87ebf0b3c52167690eb18d36f961fb7f Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 10:39:03 +0200 Subject: [PATCH 42/81] PHP 7.3 ready --- ChangeLog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8a80591f652..a713dc635c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,8 @@ NEW: Stable module: Module Builder NEW: Stable module "Skype" has been replaced with module "Social Networks" to support more tools. NEW: Dolibarr can provide information in page title when multicompany is enabled of not, making Android application like DoliDroid able to provide native features for multicompany module. +NEW: Compatibility with PHP 7.3 + For developers: * Code changes to be more compatible with PSR2 From 118ff2d8d08f2a2a24ff798ba4045118fadec41a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 10:42:42 +0200 Subject: [PATCH 43/81] phpcs --- htdocs/compta/compta-files.php | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/htdocs/compta/compta-files.php b/htdocs/compta/compta-files.php index 2a4af918234..9e00bf10ae0 100644 --- a/htdocs/compta/compta-files.php +++ b/htdocs/compta/compta-files.php @@ -1,7 +1,6 @@ - - * Copyright (C) 2004-2017 Laurent Destailleur + * Copyright (C) 2004-2018 Laurent Destailleur * Copyright (C) 2017 Pierre-Henry Favre * * This program is free software; you can redistribute it and/or modify @@ -18,9 +17,9 @@ * along with this program. If not, see . */ /** - * \file htdocs/compta/recap-compta.php - * \ingroup compta - * \brief Page de fiche recap customer + * \file htdocs/compta/compta-files.php + * \ingroup compta + * \brief Page to show portoflio and files of a thirdparty and download it */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; @@ -30,7 +29,9 @@ require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php'; require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.facture.class.php'; require_once DOL_DOCUMENT_ROOT.'/compta/sociales/class/chargesociales.class.php'; + restrictedArea($user,'banque'); + $langs->load("companies"); if (! empty($conf->facture->enabled)) $langs->load("bills"); $date_start =GETPOST('date_start','alpha'); @@ -67,15 +68,22 @@ $arrayfields=array( 'date'=>array('label'=>"Date", 'checked'=>1), //... ); + + /* * Actions */ + //$parameters = array('socid' => $id); //$reshook = $hookmanager->executeHooks('doActions', $parameters, $object); // Note that $object may have been modified by some hooks //if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); + + + /* - * Fetch the lines/files from db / + * View */ + $filesarray=array(); $result=false; if(($action=="searchfiles"||$action=="dl" ) && $date_start && $date_stop){ From b2576305c17cc17ebf14aebeaf1718002826cf51 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 10:46:59 +0200 Subject: [PATCH 44/81] Clean code --- .../societe/class/api_thirdparties.class.php | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/htdocs/societe/class/api_thirdparties.class.php b/htdocs/societe/class/api_thirdparties.class.php index 3e514adf73a..0b640fe1085 100644 --- a/htdocs/societe/class/api_thirdparties.class.php +++ b/htdocs/societe/class/api_thirdparties.class.php @@ -1175,9 +1175,9 @@ class Thirdparties extends DolibarrApi /** * Generate a Document from a bank account record (like SEPA mandate) * - * @param int $id thirdparty id - * @param int $companybankid companybankid - * @param string $model model of document to generate + * @param int $id Thirdparty id + * @param int $companybankid Companybank id + * @param string $model Model of document to generate * @return void * * @url GET {id}/generateBankAccountDocument/{companybankid}/{model} @@ -1186,19 +1186,7 @@ class Thirdparties extends DolibarrApi { global $conf; - $this->langs->load("database"); - $this->langs->load("main"); - $this->langs->load("dict"); - $this->langs->load("agenda"); - $this->langs->load("margins"); - $this->langs->load("resource"); - $this->langs->load("commercial"); - $this->langs->load("ecm"); - $this->langs->load("products"); - $this->langs->load("companies"); - $this->langs->load("banks"); - $this->langs->load("bills"); - $this->langs->load("withdrawals"); + $this->langs->loadLangs(array("main","dict","commercial","products","companies","banks","bills","withdrawals")); $this->company->fetch($id); From c5a68d24620934a941c4ec470a64ff3d01489979 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 10:51:55 +0200 Subject: [PATCH 45/81] Clean code --- .../class/commonstickergenerator.class.php | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/htdocs/core/class/commonstickergenerator.class.php b/htdocs/core/class/commonstickergenerator.class.php index 5289ed882ff..27e0af05282 100644 --- a/htdocs/core/class/commonstickergenerator.class.php +++ b/htdocs/core/class/commonstickergenerator.class.php @@ -1,10 +1,10 @@ * Copyright (C) 2002-2003 Jean-Louis Bergamo * Copyright (C) 2006-2013 Laurent Destailleur - * Copyright (C) 2015 Francis Appels + * Copyright (C) 2015 Francis Appels * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -218,26 +218,26 @@ abstract class CommonStickerGenerator $pdf->SetDrawColor(0,0,0); } - // phpcs:disable PEAR.NamingConventions.ValidFunctionName.NotCamelCaps /** * protected Convert units (in to mm, mm to in) * $src and $dest must be 'in' or 'mm' * * @param int $value value - * @param string $src from - * @param string $dest to + * @param string $src from ('in' or 'mm') + * @param string $dest to ('in' or 'mm') * @return float value value after conversion */ - function _Convert_Metric($value, $src, $dest) + private function convertMetric($value, $src, $dest) { - // phpcs:enable if ($src != $dest) { - $tab['in'] = 39.37008; - $tab['mm'] = 1000; + $tab = array( + 'in'=>39.37008, + 'mm'=>1000 + ); return $value * $tab[$dest] / $tab[$src]; - } else { - return $value; } + + return $value; } // phpcs:disable PEAR.NamingConventions.ValidFunctionName.NotCamelCaps @@ -273,14 +273,14 @@ abstract class CommonStickerGenerator $this->_Metric = $format['metric']; $this->_Avery_Name = $format['name']; $this->_Avery_Code = $format['code']; - $this->_Margin_Left = $this->_Convert_Metric($format['marginLeft'], $this->_Metric, $this->_Metric_Doc); - $this->_Margin_Top = $this->_Convert_Metric($format['marginTop'], $this->_Metric, $this->_Metric_Doc); - $this->_X_Space = $this->_Convert_Metric($format['SpaceX'], $this->_Metric, $this->_Metric_Doc); - $this->_Y_Space = $this->_Convert_Metric($format['SpaceY'], $this->_Metric, $this->_Metric_Doc); + $this->_Margin_Left = $this->convertMetric($format['marginLeft'], $this->_Metric, $this->_Metric_Doc); + $this->_Margin_Top = $this->convertMetric($format['marginTop'], $this->_Metric, $this->_Metric_Doc); + $this->_X_Space = $this->convertMetric($format['SpaceX'], $this->_Metric, $this->_Metric_Doc); + $this->_Y_Space = $this->convertMetric($format['SpaceY'], $this->_Metric, $this->_Metric_Doc); $this->_X_Number = $format['NX']; $this->_Y_Number = $format['NY']; - $this->_Width = $this->_Convert_Metric($format['width'], $this->_Metric, $this->_Metric_Doc); - $this->_Height = $this->_Convert_Metric($format['height'], $this->_Metric, $this->_Metric_Doc); + $this->_Width = $this->convertMetric($format['width'], $this->_Metric, $this->_Metric_Doc); + $this->_Height = $this->convertMetric($format['height'], $this->_Metric, $this->_Metric_Doc); $this->Set_Char_Size($pdf, $format['font-size']); } } From 224896a4dc0153df479a8de7ec92edaf616b8ec1 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 10:52:15 +0200 Subject: [PATCH 46/81] Code comments --- htdocs/core/class/commonstickergenerator.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/commonstickergenerator.class.php b/htdocs/core/class/commonstickergenerator.class.php index 27e0af05282..d5bf6f3317e 100644 --- a/htdocs/core/class/commonstickergenerator.class.php +++ b/htdocs/core/class/commonstickergenerator.class.php @@ -219,7 +219,7 @@ abstract class CommonStickerGenerator } /** - * protected Convert units (in to mm, mm to in) + * Convert units (in to mm, mm to in) * $src and $dest must be 'in' or 'mm' * * @param int $value value From e9dd967610ac14346625a07b2afcf4eedfe7026a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 13:12:47 +0200 Subject: [PATCH 47/81] Support nomassaction param on list --- htdocs/modulebuilder/template/myobject_list.php | 2 +- htdocs/societe/list.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/modulebuilder/template/myobject_list.php b/htdocs/modulebuilder/template/myobject_list.php index 3e73497b703..d7ac09c8d57 100644 --- a/htdocs/modulebuilder/template/myobject_list.php +++ b/htdocs/modulebuilder/template/myobject_list.php @@ -336,7 +336,7 @@ $arrayofmassactions = array( //'builddoc'=>$langs->trans("PDFMerge"), ); if ($user->rights->mymodule->delete) $arrayofmassactions['predelete']=$langs->trans("Delete"); -if (in_array($massaction, array('presend','predelete'))) $arrayofmassactions=array(); +if (GETPOST('nomassaction','int') || in_array($massaction, array('presend','predelete'))) $arrayofmassactions=array(); $massactionbutton=$form->selectMassAction('', $arrayofmassactions); print '
'; diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php index 970f3085392..684f6f8c471 100644 --- a/htdocs/societe/list.php +++ b/htdocs/societe/list.php @@ -534,7 +534,7 @@ $arrayofmassactions = array( ); //if($user->rights->societe->creer) $arrayofmassactions['createbills']=$langs->trans("CreateInvoiceForThisCustomer"); if ($user->rights->societe->supprimer) $arrayofmassactions['predelete']=$langs->trans("Delete"); -if (in_array($massaction, array('presend','predelete'))) $arrayofmassactions=array(); +if (GETPOST('nomassaction','int') || in_array($massaction, array('presend','predelete'))) $arrayofmassactions=array(); $massactionbutton=$form->selectMassAction('', $arrayofmassactions); $newcardbutton=''; From ec2dd7ba4e34a0276471fa925f5e08938aa25506 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 13:13:04 +0200 Subject: [PATCH 48/81] Remove not used code --- .../modulebuilder/template/doc/user/Makefile | 225 --------- .../modulebuilder/template/doc/user/make.bat | 281 ------------ .../template/doc/user/source/conf.py | 428 ------------------ .../template/doc/user/source/index.rst | 22 - 4 files changed, 956 deletions(-) delete mode 100644 htdocs/modulebuilder/template/doc/user/Makefile delete mode 100644 htdocs/modulebuilder/template/doc/user/make.bat delete mode 100644 htdocs/modulebuilder/template/doc/user/source/conf.py delete mode 100644 htdocs/modulebuilder/template/doc/user/source/index.rst diff --git a/htdocs/modulebuilder/template/doc/user/Makefile b/htdocs/modulebuilder/template/doc/user/Makefile deleted file mode 100644 index 5c33e8bf0a3..00000000000 --- a/htdocs/modulebuilder/template/doc/user/Makefile +++ /dev/null @@ -1,225 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = build - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source - -.PHONY: help -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and a HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " applehelp to make an Apple Help Book" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " epub3 to make an epub3" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " texinfo to make Texinfo files" - @echo " info to make Texinfo files and run them through makeinfo" - @echo " gettext to make PO message catalogs" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " xml to make Docutils-native XML files" - @echo " pseudoxml to make pseudoxml-XML files for display purposes" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - @echo " coverage to run coverage check of the documentation (if enabled)" - @echo " dummy to check syntax errors of document sources" - -.PHONY: clean -clean: - rm -rf $(BUILDDIR)/* - -.PHONY: html -html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - -.PHONY: dirhtml -dirhtml: - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." - -.PHONY: singlehtml -singlehtml: - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml - @echo - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." - -.PHONY: pickle -pickle: - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle - @echo - @echo "Build finished; now you can process the pickle files." - -.PHONY: json -json: - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json - @echo - @echo "Build finished; now you can process the JSON files." - -.PHONY: htmlhelp -htmlhelp: - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp - @echo - @echo "Build finished; now you can run HTML Help Workshop with the" \ - ".hhp project file in $(BUILDDIR)/htmlhelp." - -.PHONY: qthelp -qthelp: - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp - @echo - @echo "Build finished; now you can run "qcollectiongenerator" with the" \ - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Mymodule.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Mymodule.qhc" - -.PHONY: applehelp -applehelp: - $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp - @echo - @echo "Build finished. The help book is in $(BUILDDIR)/applehelp." - @echo "N.B. You won't be able to view it unless you put it in" \ - "~/Library/Documentation/Help or install it in your application" \ - "bundle." - -.PHONY: devhelp -devhelp: - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp - @echo - @echo "Build finished." - @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/Mymodule" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Mymodule" - @echo "# devhelp" - -.PHONY: epub -epub: - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub - @echo - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." - -.PHONY: epub3 -epub3: - $(SPHINXBUILD) -b epub3 $(ALLSPHINXOPTS) $(BUILDDIR)/epub3 - @echo - @echo "Build finished. The epub3 file is in $(BUILDDIR)/epub3." - -.PHONY: latex -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -.PHONY: latexpdf -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -.PHONY: latexpdfja -latexpdfja: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through platex and dvipdfmx..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -.PHONY: text -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -.PHONY: man -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -.PHONY: texinfo -texinfo: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo - @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." - @echo "Run \`make' in that directory to run these through makeinfo" \ - "(use \`make info' here to do that automatically)." - -.PHONY: info -info: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo "Running Texinfo files through makeinfo..." - make -C $(BUILDDIR)/texinfo info - @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." - -.PHONY: gettext -gettext: - $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale - @echo - @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." - -.PHONY: changes -changes: - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes - @echo - @echo "The overview file is in $(BUILDDIR)/changes." - -.PHONY: linkcheck -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -.PHONY: doctest -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." - -.PHONY: coverage -coverage: - $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage - @echo "Testing of coverage in the sources finished, look at the " \ - "results in $(BUILDDIR)/coverage/python.txt." - -.PHONY: xml -xml: - $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml - @echo - @echo "Build finished. The XML files are in $(BUILDDIR)/xml." - -.PHONY: pseudoxml -pseudoxml: - $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml - @echo - @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." - -.PHONY: dummy -dummy: - $(SPHINXBUILD) -b dummy $(ALLSPHINXOPTS) $(BUILDDIR)/dummy - @echo - @echo "Build finished. Dummy builder generates no files." diff --git a/htdocs/modulebuilder/template/doc/user/make.bat b/htdocs/modulebuilder/template/doc/user/make.bat deleted file mode 100644 index 35018adf3ba..00000000000 --- a/htdocs/modulebuilder/template/doc/user/make.bat +++ /dev/null @@ -1,281 +0,0 @@ -@ECHO OFF - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set BUILDDIR=build -set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source -set I18NSPHINXOPTS=%SPHINXOPTS% source -if NOT "%PAPER%" == "" ( - set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% - set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% -) - -if "%1" == "" goto help - -if "%1" == "help" ( - :help - echo.Please use `make ^` where ^ is one of - echo. html to make standalone HTML files - echo. dirhtml to make HTML files named index.html in directories - echo. singlehtml to make a single large HTML file - echo. pickle to make pickle files - echo. json to make JSON files - echo. htmlhelp to make HTML files and a HTML help project - echo. qthelp to make HTML files and a qthelp project - echo. devhelp to make HTML files and a Devhelp project - echo. epub to make an epub - echo. epub3 to make an epub3 - echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter - echo. text to make text files - echo. man to make manual pages - echo. texinfo to make Texinfo files - echo. gettext to make PO message catalogs - echo. changes to make an overview over all changed/added/deprecated items - echo. xml to make Docutils-native XML files - echo. pseudoxml to make pseudoxml-XML files for display purposes - echo. linkcheck to check all external links for integrity - echo. doctest to run all doctests embedded in the documentation if enabled - echo. coverage to run coverage check of the documentation if enabled - echo. dummy to check syntax errors of document sources - goto end -) - -if "%1" == "clean" ( - for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i - del /q /s %BUILDDIR%\* - goto end -) - - -REM Check if sphinx-build is available and fallback to Python version if any -%SPHINXBUILD% 1>NUL 2>NUL -if errorlevel 9009 goto sphinx_python -goto sphinx_ok - -:sphinx_python - -set SPHINXBUILD=python -m sphinx.__init__ -%SPHINXBUILD% 2> nul -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ - exit /b 1 -) - -:sphinx_ok - - -if "%1" == "html" ( - %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/html. - goto end -) - -if "%1" == "dirhtml" ( - %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. - goto end -) - -if "%1" == "singlehtml" ( - %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. - goto end -) - -if "%1" == "pickle" ( - %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can process the pickle files. - goto end -) - -if "%1" == "json" ( - %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can process the JSON files. - goto end -) - -if "%1" == "htmlhelp" ( - %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can run HTML Help Workshop with the ^ -.hhp project file in %BUILDDIR%/htmlhelp. - goto end -) - -if "%1" == "qthelp" ( - %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can run "qcollectiongenerator" with the ^ -.qhcp project file in %BUILDDIR%/qthelp, like this: - echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Mymodule.qhcp - echo.To view the help file: - echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Mymodule.ghc - goto end -) - -if "%1" == "devhelp" ( - %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. - goto end -) - -if "%1" == "epub" ( - %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The epub file is in %BUILDDIR%/epub. - goto end -) - -if "%1" == "epub3" ( - %SPHINXBUILD% -b epub3 %ALLSPHINXOPTS% %BUILDDIR%/epub3 - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The epub3 file is in %BUILDDIR%/epub3. - goto end -) - -if "%1" == "latex" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "latexpdf" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - cd %BUILDDIR%/latex - make all-pdf - cd %~dp0 - echo. - echo.Build finished; the PDF files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "latexpdfja" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - cd %BUILDDIR%/latex - make all-pdf-ja - cd %~dp0 - echo. - echo.Build finished; the PDF files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "text" ( - %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The text files are in %BUILDDIR%/text. - goto end -) - -if "%1" == "man" ( - %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The manual pages are in %BUILDDIR%/man. - goto end -) - -if "%1" == "texinfo" ( - %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. - goto end -) - -if "%1" == "gettext" ( - %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The message catalogs are in %BUILDDIR%/locale. - goto end -) - -if "%1" == "changes" ( - %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes - if errorlevel 1 exit /b 1 - echo. - echo.The overview file is in %BUILDDIR%/changes. - goto end -) - -if "%1" == "linkcheck" ( - %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck - if errorlevel 1 exit /b 1 - echo. - echo.Link check complete; look for any errors in the above output ^ -or in %BUILDDIR%/linkcheck/output.txt. - goto end -) - -if "%1" == "doctest" ( - %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest - if errorlevel 1 exit /b 1 - echo. - echo.Testing of doctests in the sources finished, look at the ^ -results in %BUILDDIR%/doctest/output.txt. - goto end -) - -if "%1" == "coverage" ( - %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage - if errorlevel 1 exit /b 1 - echo. - echo.Testing of coverage in the sources finished, look at the ^ -results in %BUILDDIR%/coverage/python.txt. - goto end -) - -if "%1" == "xml" ( - %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The XML files are in %BUILDDIR%/xml. - goto end -) - -if "%1" == "pseudoxml" ( - %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. - goto end -) - -if "%1" == "dummy" ( - %SPHINXBUILD% -b dummy %ALLSPHINXOPTS% %BUILDDIR%/dummy - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. Dummy builder generates no files. - goto end -) - -:end diff --git a/htdocs/modulebuilder/template/doc/user/source/conf.py b/htdocs/modulebuilder/template/doc/user/source/conf.py deleted file mode 100644 index 130bd5a12e5..00000000000 --- a/htdocs/modulebuilder/template/doc/user/source/conf.py +++ /dev/null @@ -1,428 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# -# My Module documentation build configuration file, created by -# sphinx-quickstart on Mon Sep 26 17:54:17 2016. -# -# This file is execfile()d with the current directory set to its -# containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# -# import os -# import sys -# sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ------------------------------------------------ - -# If your documentation needs a minimal Sphinx version, state it here. -# -# needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - 'sphinx.ext.todo', - 'sphinx.ext.imgmath', - 'sphinx.ext.githubpages', -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix(es) of source filenames. -# You can specify multiple suffix as a list of string: -# -# source_suffix = ['.rst', '.md'] -source_suffix = '.rst' - -# The encoding of source files. -# -# source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -project = 'My Module' -copyright = '2016, Raphaël Doursenaud ' -author = 'Raphaël Doursenaud ' - -# The version info for the project you're documenting, acts as replacement for -# |version| and |release|, also used in various other places throughout the -# built documents. -# -# The short X.Y version. -version = 'development' -# The full version, including alpha/beta/rc tags. -release = 'development' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# -# This is also used if you do content translation via gettext catalogs. -# Usually you set "language" from the command line for these cases. -language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -# -# today = '' -# -# Else, today_fmt is used as the format for a strftime call. -# -# today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This patterns also effect to html_static_path and html_extra_path -exclude_patterns = [] - -# The reST default role (used for this markup: `text`) to use for all -# documents. -# -# default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -# -# add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -# -# add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -# -# show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' - -# A list of ignored prefixes for module index sorting. -# modindex_common_prefix = [] - -# If true, keep warnings as "system message" paragraphs in the built documents. -# keep_warnings = False - -# If true, `todo` and `todoList` produce output, else they produce nothing. -todo_include_todos = True - - -# -- Options for HTML output ---------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -# -html_theme = 'alabaster' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -# -# html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -# html_theme_path = [] - -# The name for this set of Sphinx documents. -# " v documentation" by default. -# -# html_title = 'My Module vdevelopment' - -# A shorter title for the navigation bar. Default is the same as html_title. -# -# html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -# -# html_logo = None - -# The name of an image file (relative to this directory) to use as a favicon of -# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -# -# html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# Add any extra paths that contain custom files (such as robots.txt or -# .htaccess) here, relative to this directory. These files are copied -# directly to the root of the documentation. -# -# html_extra_path = [] - -# If not None, a 'Last updated on:' timestamp is inserted at every page -# bottom, using the given strftime format. -# The empty string is equivalent to '%b %d, %Y'. -# -# html_last_updated_fmt = None - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -# -# html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -# -# html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -# -# html_additional_pages = {} - -# If false, no module index is generated. -# -# html_domain_indices = True - -# If false, no index is generated. -# -# html_use_index = True - -# If true, the index is split into individual pages for each letter. -# -# html_split_index = False - -# If true, links to the reST sources are added to the pages. -# -# html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -# -# html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -# -# html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -# -# html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -# html_file_suffix = None - -# Language to be used for generating the HTML full-text search index. -# Sphinx supports the following languages: -# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja' -# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr', 'zh' -# -# html_search_language = 'en' - -# A dictionary with options for the search language support, empty by default. -# 'ja' uses this config value. -# 'zh' user can custom change `jieba` dictionary path. -# -# html_search_options = {'type': 'default'} - -# The name of a javascript file (relative to the configuration directory) that -# implements a search results scorer. If empty, the default will be used. -# -# html_search_scorer = 'scorer.js' - -# Output file base name for HTML help builder. -htmlhelp_basename = 'Mymoduledoc' - -# -- Options for LaTeX output --------------------------------------------- - -latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - # - # 'papersize': 'letterpaper', - - # The font size ('10pt', '11pt' or '12pt'). - # - # 'pointsize': '10pt', - - # Additional stuff for the LaTeX preamble. - # - # 'preamble': '', - - # Latex figure (float) alignment - # - # 'figure_align': 'htbp', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - (master_doc, 'Mymodule.tex', 'My Module Documentation', - 'Raphaël Doursenaud \\textless{}rdoursenaud@gpcsolutions.fr\\textgreater{}', 'manual'), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -# -# latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -# -# latex_use_parts = False - -# If true, show page references after internal links. -# -# latex_show_pagerefs = False - -# If true, show URL addresses after external links. -# -# latex_show_urls = False - -# Documents to append as an appendix to all manuals. -# -# latex_appendices = [] - -# It false, will not define \strong, \code, itleref, \crossref ... but only -# \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added -# packages. -# -# latex_keep_old_macro_names = True - -# If false, no module index is generated. -# -# latex_domain_indices = True - - -# -- Options for manual page output --------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, 'mymodule', 'My Module Documentation', - [author], 1) -] - -# If true, show URL addresses after external links. -# -# man_show_urls = False - - -# -- Options for Texinfo output ------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - (master_doc, 'Mymodule', 'My Module Documentation', - author, 'Mymodule', 'One line description of project.', - 'Miscellaneous'), -] - -# Documents to append as an appendix to all manuals. -# -# texinfo_appendices = [] - -# If false, no module index is generated. -# -# texinfo_domain_indices = True - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -# -# texinfo_show_urls = 'footnote' - -# If true, do not generate a @detailmenu in the "Top" node's menu. -# -# texinfo_no_detailmenu = False - - -# -- Options for Epub output ---------------------------------------------- - -# Bibliographic Dublin Core info. -epub_title = project -epub_author = author -epub_publisher = author -epub_copyright = copyright - -# The basename for the epub file. It defaults to the project name. -# epub_basename = project - -# The HTML theme for the epub output. Since the default themes are not -# optimized for small screen space, using the same theme for HTML and epub -# output is usually not wise. This defaults to 'epub', a theme designed to save -# visual space. -# -# epub_theme = 'epub' - -# The language of the text. It defaults to the language option -# or 'en' if the language is not set. -# -# epub_language = '' - -# The scheme of the identifier. Typical schemes are ISBN or URL. -# epub_scheme = '' - -# The unique identifier of the text. This can be a ISBN number -# or the project homepage. -# -# epub_identifier = '' - -# A unique identification for the text. -# -# epub_uid = '' - -# A tuple containing the cover image and cover page html template filenames. -# -# epub_cover = () - -# A sequence of (type, uri, title) tuples for the guide element of content.opf. -# -# epub_guide = () - -# HTML files that should be inserted before the pages created by sphinx. -# The format is a list of tuples containing the path and title. -# -# epub_pre_files = [] - -# HTML files that should be inserted after the pages created by sphinx. -# The format is a list of tuples containing the path and title. -# -# epub_post_files = [] - -# A list of files that should not be packed into the epub file. -epub_exclude_files = ['search.html'] - -# The depth of the table of contents in toc.ncx. -# -# epub_tocdepth = 3 - -# Allow duplicate toc entries. -# -# epub_tocdup = True - -# Choose between 'default' and 'includehidden'. -# -# epub_tocscope = 'default' - -# Fix unsupported image types using the Pillow. -# -# epub_fix_images = False - -# Scale large images. -# -# epub_max_image_width = 0 - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -# -# epub_show_urls = 'inline' - -# If false, no index is generated. -# -# epub_use_index = True diff --git a/htdocs/modulebuilder/template/doc/user/source/index.rst b/htdocs/modulebuilder/template/doc/user/source/index.rst deleted file mode 100644 index 48f2a6e49d8..00000000000 --- a/htdocs/modulebuilder/template/doc/user/source/index.rst +++ /dev/null @@ -1,22 +0,0 @@ -.. My Module documentation master file, created by - sphinx-quickstart on Mon Sep 26 17:54:17 2016. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to My Module's documentation! -===================================== - -Contents: - -.. toctree:: - :maxdepth: 2 - - - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` - From f990719daa0c76101570e2cdcec8f8f6f9ab0b02 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 13:31:41 +0200 Subject: [PATCH 49/81] Add experimental module TakePOS --- ChangeLog | 3 +- htdocs/core/modules/modCashDesk.class.php | 1 - htdocs/core/modules/modTakePos.class.php | 337 +++++ htdocs/langs/en_US/admin.lang | 2 + htdocs/takepos/ChangeLog.md | 5 + htdocs/takepos/README.md | 100 ++ htdocs/takepos/admin/about.php | 77 + htdocs/takepos/admin/orderprinters.php | 202 +++ htdocs/takepos/admin/setup.php | 259 ++++ htdocs/takepos/ajax.php | 62 + .../takepos/class/actions_takepos.class.php | 223 +++ htdocs/takepos/css/colorbox.css | 58 + htdocs/takepos/css/images/border.png | Bin 0 -> 139 bytes htdocs/takepos/css/images/controls.png | Bin 0 -> 2027 bytes htdocs/takepos/css/images/loading.gif | Bin 0 -> 8685 bytes .../takepos/css/images/loading_background.png | Bin 0 -> 131 bytes htdocs/takepos/css/pos.css | 114 ++ htdocs/takepos/customers.php | 1265 +++++++++++++++++ htdocs/takepos/dev/img/README.md | 53 + htdocs/takepos/dev/img/gfdl-129x44.png | Bin 0 -> 4709 bytes htdocs/takepos/dev/img/gfdl-66x23.png | Bin 0 -> 2453 bytes htdocs/takepos/dev/img/gfdl-logo.svg | 110 ++ htdocs/takepos/dev/img/gpl-v3-logo.svg | 389 +++++ htdocs/takepos/dev/img/gplv3-127x51.png | Bin 0 -> 3471 bytes htdocs/takepos/dev/img/gplv3-88x31.png | Bin 0 -> 2666 bytes htdocs/takepos/dev/img/takepos.svg | 70 + htdocs/takepos/floors.php | 176 +++ htdocs/takepos/freezone.php | 59 + htdocs/takepos/genimg/add.jpg | Bin 0 -> 5419 bytes htdocs/takepos/genimg/empty.jpg | Bin 0 -> 2239 bytes htdocs/takepos/genimg/index.php | 142 ++ htdocs/takepos/img/arrow-next-top.png | Bin 0 -> 47808 bytes htdocs/takepos/img/arrow-next.png | Bin 0 -> 5125 bytes htdocs/takepos/img/arrow-prev-top.png | Bin 0 -> 47668 bytes htdocs/takepos/img/arrow-prev.png | Bin 0 -> 5112 bytes htdocs/takepos/img/gfdl.png | Bin 0 -> 4709 bytes htdocs/takepos/img/gplv3.png | Bin 0 -> 2666 bytes .../takepos/img/marketplace/cashcontrol.jpg | Bin 0 -> 80604 bytes .../takepos/img/marketplace/takeposmobile.jpg | Bin 0 -> 57525 bytes htdocs/takepos/img/object_takepos.png | Bin 0 -> 360 bytes htdocs/takepos/img/table.gif | Bin 0 -> 7294 bytes htdocs/takepos/img/takepos.png | Bin 0 -> 3445 bytes htdocs/takepos/invoice.php | 287 ++++ htdocs/takepos/js/jquery.colorbox-min.js | 6 + htdocs/takepos/js/takepos.js | 15 + htdocs/takepos/langs/en_US/takepos.lang | 24 + htdocs/takepos/langs/es_ES/takepos.lang | 22 + htdocs/takepos/langs/fr_FR/takepos.lang | 24 + htdocs/takepos/lib/takepos.lib.php | 58 + htdocs/takepos/modulebuilder.txt | 3 + htdocs/takepos/pay.php | 122 ++ htdocs/takepos/receipt.php | 108 ++ .../takepos/sql/llx_takepos_floor_tables.sql | 26 + htdocs/takepos/takepos.php | 406 ++++++ .../test/phpunit/TakePosFunctionalTest.php | 289 ++++ htdocs/theme/eldy/style.css.php | 6 +- htdocs/theme/md/style.css.php | 6 +- 57 files changed, 5105 insertions(+), 4 deletions(-) create mode 100644 htdocs/core/modules/modTakePos.class.php create mode 100644 htdocs/takepos/ChangeLog.md create mode 100644 htdocs/takepos/README.md create mode 100644 htdocs/takepos/admin/about.php create mode 100644 htdocs/takepos/admin/orderprinters.php create mode 100644 htdocs/takepos/admin/setup.php create mode 100644 htdocs/takepos/ajax.php create mode 100644 htdocs/takepos/class/actions_takepos.class.php create mode 100644 htdocs/takepos/css/colorbox.css create mode 100644 htdocs/takepos/css/images/border.png create mode 100644 htdocs/takepos/css/images/controls.png create mode 100644 htdocs/takepos/css/images/loading.gif create mode 100644 htdocs/takepos/css/images/loading_background.png create mode 100644 htdocs/takepos/css/pos.css create mode 100644 htdocs/takepos/customers.php create mode 100644 htdocs/takepos/dev/img/README.md create mode 100644 htdocs/takepos/dev/img/gfdl-129x44.png create mode 100644 htdocs/takepos/dev/img/gfdl-66x23.png create mode 100644 htdocs/takepos/dev/img/gfdl-logo.svg create mode 100644 htdocs/takepos/dev/img/gpl-v3-logo.svg create mode 100644 htdocs/takepos/dev/img/gplv3-127x51.png create mode 100644 htdocs/takepos/dev/img/gplv3-88x31.png create mode 100644 htdocs/takepos/dev/img/takepos.svg create mode 100644 htdocs/takepos/floors.php create mode 100644 htdocs/takepos/freezone.php create mode 100644 htdocs/takepos/genimg/add.jpg create mode 100644 htdocs/takepos/genimg/empty.jpg create mode 100644 htdocs/takepos/genimg/index.php create mode 100644 htdocs/takepos/img/arrow-next-top.png create mode 100644 htdocs/takepos/img/arrow-next.png create mode 100644 htdocs/takepos/img/arrow-prev-top.png create mode 100644 htdocs/takepos/img/arrow-prev.png create mode 100644 htdocs/takepos/img/gfdl.png create mode 100644 htdocs/takepos/img/gplv3.png create mode 100644 htdocs/takepos/img/marketplace/cashcontrol.jpg create mode 100644 htdocs/takepos/img/marketplace/takeposmobile.jpg create mode 100644 htdocs/takepos/img/object_takepos.png create mode 100644 htdocs/takepos/img/table.gif create mode 100644 htdocs/takepos/img/takepos.png create mode 100644 htdocs/takepos/invoice.php create mode 100644 htdocs/takepos/js/jquery.colorbox-min.js create mode 100644 htdocs/takepos/js/takepos.js create mode 100644 htdocs/takepos/langs/en_US/takepos.lang create mode 100644 htdocs/takepos/langs/es_ES/takepos.lang create mode 100644 htdocs/takepos/langs/fr_FR/takepos.lang create mode 100644 htdocs/takepos/lib/takepos.lib.php create mode 100644 htdocs/takepos/modulebuilder.txt create mode 100644 htdocs/takepos/pay.php create mode 100644 htdocs/takepos/receipt.php create mode 100644 htdocs/takepos/sql/llx_takepos_floor_tables.sql create mode 100644 htdocs/takepos/takepos.php create mode 100644 htdocs/takepos/test/phpunit/TakePosFunctionalTest.php diff --git a/ChangeLog b/ChangeLog index a713dc635c1..e516382f62f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,7 +8,8 @@ For Users: NEW: Stable module: Website NEW: Stable module: WebDAV NEW: Stable module: Module Builder -NEW: Stable module "Skype" has been replaced with module "Social Networks" to support more tools. +NEW: Stable module "Skype" has been replaced with module "Social Networks" to support more tools. +NEW: Experimental module "TakePos" NEW: Dolibarr can provide information in page title when multicompany is enabled of not, making Android application like DoliDroid able to provide native features for multicompany module. NEW: Compatibility with PHP 7.3 diff --git a/htdocs/core/modules/modCashDesk.class.php b/htdocs/core/modules/modCashDesk.class.php index 2b33e09c1ac..79495595774 100644 --- a/htdocs/core/modules/modCashDesk.class.php +++ b/htdocs/core/modules/modCashDesk.class.php @@ -81,7 +81,6 @@ class modCashDesk extends DolibarrModules // Permissions $this->rights = array(); - $this->rights_class = 'cashdesk'; $r=0; $r++; diff --git a/htdocs/core/modules/modTakePos.class.php b/htdocs/core/modules/modTakePos.class.php new file mode 100644 index 00000000000..c69586e7454 --- /dev/null +++ b/htdocs/core/modules/modTakePos.class.php @@ -0,0 +1,337 @@ + + * Copyright (C) 2018 SuperAdmin + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \defgroup takepos Module TakePos + * \brief TakePos module descriptor. + * + * \file htdocs/takepos/core/modules/modTakePos.class.php + * \ingroup takepos + * \brief Description and activation file for module TakePos + */ +include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php'; + + +/** + * Class to describe and enable module TakePos + */ +class modTakePos extends DolibarrModules +{ + /** + * Constructor. Define names, constants, directories, boxes, permissions + * + * @param DoliDB $db Database handler + */ + public function __construct($db) + { + global $langs,$conf; + + $this->db = $db; + + // Id for module (must be unique). + // Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id). + $this->numero = 50150; + // Key text used to identify module (for permissions, menus, etc...) + $this->rights_class = 'takepos'; + + // Family can be 'crm','financial','hr','projects','products','ecm','technic','interface','other' + // It is used to group modules by family in module setup page + $this->family = "portal"; + // Module position in the family on 2 digits ('01', '10', '20', ...) + $this->module_position = '90'; + // Gives the possibility to the module, to provide his own family info and position of this family (Overwrite $this->family and $this->module_position. Avoid this) + //$this->familyinfo = array('myownfamily' => array('position' => '01', 'label' => $langs->trans("MyOwnFamily"))); + + // Module label (no space allowed), used if translation string 'ModuleTakePosName' not found (MyModue is name of module). + $this->name = preg_replace('/^mod/i','',get_class($this)); + // Module description, used if translation string 'ModuleTakePosDesc' not found (MyModue is name of module). + $this->description = "Point of sales module (Touch Screen POS)"; + // Used only if file README.md and README-LL.md not found. + $this->descriptionlong = "Point Of Sales (compliant with touch screen)"; + + // Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z' + $this->version = 'experimental'; + // Key used in llx_const table to save module status enabled/disabled (where TAKEPOS is value of property name of module in uppercase) + $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name); + // Name of image file used for this module. + // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue' + // If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module' + $this->picto='list'; + + // Defined all module parts (triggers, login, substitutions, menus, css, etc...) + // for default path (eg: /takepos/core/xxxxx) (0=disable, 1=enable) + // for specific path of parts (eg: /takepos/core/modules/barcode) + // for specific css file (eg: /takepos/css/takepos.css.php) + $this->module_parts = array( + 'triggers' => 0, // Set this to 1 if module has its own trigger directory (core/triggers) + 'login' => 0, // Set this to 1 if module has its own login method file (core/login) + 'substitutions' => 1, // Set this to 1 if module has its own substitution function file (core/substitutions) + 'menus' => 0, // Set this to 1 if module has its own menus handler directory (core/menus) + 'theme' => 0, // Set this to 1 if module has its own theme directory (theme) + 'tpl' => 0, // Set this to 1 if module overwrite template dir (core/tpl) + 'barcode' => 0, // Set this to 1 if module has its own barcode directory (core/modules/barcode) + 'models' => 0, // Set this to 1 if module has its own models directory (core/modules/xxx) + 'hooks' => array('data'=>array('invoicecard'), 'entity'=>'0') // Set here all hooks context managed by module. To find available hook context, make a "grep -r '>initHooks(' *" on source code. You can also set hook context 'all' + ); + + // Data directories to create when module is enabled. + // Example: this->dirs = array("/takepos/temp","/takepos/subdir"); + $this->dirs = array(); + + // Config pages. Put here list of php page, stored into takepos/admin directory, to use to setup module. + $this->config_page_url = array("setup.php@takepos"); + + // Dependencies + $this->hidden = false; // A condition to hide module + $this->depends = array('modFacture','modProduct','modCategorie'); // List of module class names as string that must be enabled if this module is enabled + $this->requiredby = array(); // List of module ids to disable if this one is disabled + $this->conflictwith = array(); // List of module class names as string this module is in conflict with + $this->langfiles = array("takepos@takepos"); + $this->phpmin = array(5,43); // Minimum version of PHP required by module + $this->need_dolibarr_version = array(4,0); // Minimum version of Dolibarr required by module + $this->warnings_activation = array(); // Warning to show when we activate module. array('always'='text') or array('FR'='textfr','ES'='textes'...) + $this->warnings_activation_ext = array(); // Warning to show when we activate an external module. array('always'='text') or array('FR'='textfr','ES'='textes'...) + //$this->automatic_activation = array('FR'=>'TakePosWasAutomaticallyActivatedBecauseOfYourCountryChoice'); + //$this->always_enabled = true; // If true, can't be disabled + + // Constants + // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive) + // Example: $this->const=array(0=>array('TAKEPOS_MYNEWCONST1','chaine','myvalue','This is a constant to add',1), + // 1=>array('TAKEPOS_MYNEWCONST2','chaine','myvalue','This is another constant to add',0, 'current', 1) + // ); + $this->const = array( + //1=>array('TAKEPOS_MYCONSTANT', 'chaine', 'avalue', 'This is a constant to add', 1, 'allentities', 1) + ); + + + if (! isset($conf->takepos) || ! isset($conf->takepos->enabled)) + { + $conf->takepos=new stdClass(); + $conf->takepos->enabled=0; + } + + + // Array to add new pages in new tabs + $this->tabs = array(); + // Example: + // $this->tabs[] = array('data'=>'objecttype:+tabname1:Title1:mylangfile@takepos:$user->rights->takepos->read:/takepos/mynewtab1.php?id=__ID__'); // To add a new tab identified by code tabname1 + // $this->tabs[] = array('data'=>'objecttype:+tabname2:SUBSTITUTION_Title2:mylangfile@takepos:$user->rights->othermodule->read:/takepos/mynewtab2.php?id=__ID__', // To add another new tab identified by code tabname2. Label will be result of calling all substitution functions on 'Title2' key. + // $this->tabs[] = array('data'=>'objecttype:-tabname:NU:conditiontoremove'); // To remove an existing tab identified by code tabname + // + // Where objecttype can be + // 'categories_x' to add a tab in category view (replace 'x' by type of category (0=product, 1=supplier, 2=customer, 3=member) + // 'contact' to add a tab in contact view + // 'contract' to add a tab in contract view + // 'group' to add a tab in group view + // 'intervention' to add a tab in intervention view + // 'invoice' to add a tab in customer invoice view + // 'invoice_supplier' to add a tab in supplier invoice view + // 'member' to add a tab in fundation member view + // 'opensurveypoll' to add a tab in opensurvey poll view + // 'order' to add a tab in customer order view + // 'order_supplier' to add a tab in supplier order view + // 'payment' to add a tab in payment view + // 'payment_supplier' to add a tab in supplier payment view + // 'product' to add a tab in product view + // 'propal' to add a tab in propal view + // 'project' to add a tab in project view + // 'stock' to add a tab in stock view + // 'thirdparty' to add a tab in third party view + // 'user' to add a tab in user view + + + // Dictionaries + $this->dictionaries=array(); + /* Example: + $this->dictionaries=array( + 'langs'=>'mylangfile@takepos', + 'tabname'=>array(MAIN_DB_PREFIX."table1",MAIN_DB_PREFIX."table2",MAIN_DB_PREFIX."table3"), // List of tables we want to see into dictonnary editor + 'tablib'=>array("Table1","Table2","Table3"), // Label of tables + 'tabsql'=>array('SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table1 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table2 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table3 as f'), // Request to select fields + 'tabsqlsort'=>array("label ASC","label ASC","label ASC"), // Sort order + 'tabfield'=>array("code,label","code,label","code,label"), // List of fields (result of select to show dictionary) + 'tabfieldvalue'=>array("code,label","code,label","code,label"), // List of fields (list of fields to edit a record) + 'tabfieldinsert'=>array("code,label","code,label","code,label"), // List of fields (list of fields for insert) + 'tabrowid'=>array("rowid","rowid","rowid"), // Name of columns with primary key (try to always name it 'rowid') + 'tabcond'=>array($conf->takepos->enabled,$conf->takepos->enabled,$conf->takepos->enabled) // Condition to show each dictionary + ); + */ + + + // Boxes/Widgets + // Add here list of php file(s) stored in takepos/core/boxes that contains class to show a widget. + $this->boxes = array( + //0=>array('file'=>'takeposwidget1.php@takepos','note'=>'Widget provided by TakePos','enabledbydefaulton'=>'Home'), + //1=>array('file'=>'takeposwidget2.php@takepos','note'=>'Widget provided by TakePos'), + //2=>array('file'=>'takeposwidget3.php@takepos','note'=>'Widget provided by TakePos') + ); + + + // Cronjobs (List of cron jobs entries to add when module is enabled) + // unit_frequency must be 60 for minute, 3600 for hour, 86400 for day, 604800 for week + $this->cronjobs = array( + //0=>array('label'=>'MyJob label', 'jobtype'=>'method', 'class'=>'/takepos/class/myobject.class.php', 'objectname'=>'MyObject', 'method'=>'doScheduledJob', 'parameters'=>'', 'comment'=>'Comment', 'frequency'=>2, 'unitfrequency'=>3600, 'status'=>0, 'test'=>true) + ); + // Example: $this->cronjobs=array(0=>array('label'=>'My label', 'jobtype'=>'method', 'class'=>'/dir/class/file.class.php', 'objectname'=>'MyClass', 'method'=>'myMethod', 'parameters'=>'param1, param2', 'comment'=>'Comment', 'frequency'=>2, 'unitfrequency'=>3600, 'status'=>0, 'test'=>true), + // 1=>array('label'=>'My label', 'jobtype'=>'command', 'command'=>'', 'parameters'=>'param1, param2', 'comment'=>'Comment', 'frequency'=>1, 'unitfrequency'=>3600*24, 'status'=>0, 'test'=>true) + // ); + + + // Permissions + $this->rights = array(); // Permission array used by this module + + /*$r=0; + $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used) + $this->rights[$r][1] = 'Read myobject of TakePos'; // Permission label + $this->rights[$r][3] = 1; // Permission by default for new user (0/1) + $this->rights[$r][4] = 'read'; // In php code, permission will be checked by test if ($user->rights->takepos->level1->level2) + $this->rights[$r][5] = ''; // In php code, permission will be checked by test if ($user->rights->takepos->level1->level2) + + $r++; + $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used) + $this->rights[$r][1] = 'Create/Update myobject of TakePos'; // Permission label + $this->rights[$r][3] = 1; // Permission by default for new user (0/1) + $this->rights[$r][4] = 'write'; // In php code, permission will be checked by test if ($user->rights->takepos->level1->level2) + $this->rights[$r][5] = ''; // In php code, permission will be checked by test if ($user->rights->takepos->level1->level2) + + $r++; + $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used) + $this->rights[$r][1] = 'Delete myobject of TakePos'; // Permission label + $this->rights[$r][3] = 1; // Permission by default for new user (0/1) + $this->rights[$r][4] = 'delete'; // In php code, permission will be checked by test if ($user->rights->takepos->level1->level2) + $this->rights[$r][5] = ''; // In php code, permission will be checked by test if ($user->rights->takepos->level1->level2) + */ + + // Main menu entries + $this->menu = array(); // List of menus to add + $r=0; + + // Add here entries to declare new menus + + /* BEGIN MODULEBUILDER TOPMENU */ + $this->menu[$r++]=array('fk_menu'=>'', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode + 'type'=>'top', // This is a Top menu entry + 'titre'=>'PointOfSale', + 'mainmenu'=>'takepos', + 'leftmenu'=>'', + 'url'=>'/takepos/takepos.php', + 'langs'=>'takepos@takepos', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. + 'position'=>1000+$r, + 'enabled'=>'$conf->takepos->enabled', // Define condition to show or hide menu entry. Use '$conf->takepos->enabled' if entry must be visible if module is enabled. + 'perms'=>'1', // Use 'perms'=>'$user->rights->takepos->level1->level2' if you want your menu with a permission rules + 'target'=>'takepos', + 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both + + /* END MODULEBUILDER TOPMENU */ + + /* BEGIN MODULEBUILDER LEFTMENU MYOBJECT + $this->menu[$r++]=array( 'fk_menu'=>'fk_mainmenu=takepos', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode + 'type'=>'left', // This is a Left menu entry + 'titre'=>'List MyObject', + 'mainmenu'=>'takepos', + 'leftmenu'=>'takepos_myobject_list', + 'url'=>'/takepos/myobject_list.php', + 'langs'=>'takepos@takepos', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. + 'position'=>1000+$r, + 'enabled'=>'$conf->takepos->enabled', // Define condition to show or hide menu entry. Use '$conf->takepos->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected. + 'perms'=>'1', // Use 'perms'=>'$user->rights->takepos->level1->level2' if you want your menu with a permission rules + 'target'=>'', + 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both + $this->menu[$r++]=array( 'fk_menu'=>'fk_mainmenu=takepos,fk_leftmenu=takepos', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode + 'type'=>'left', // This is a Left menu entry + 'titre'=>'New MyObject', + 'mainmenu'=>'takepos', + 'leftmenu'=>'takepos_myobject_new', + 'url'=>'/takepos/myobject_page.php?action=create', + 'langs'=>'takepos@takepos', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. + 'position'=>1000+$r, + 'enabled'=>'$conf->takepos->enabled', // Define condition to show or hide menu entry. Use '$conf->takepos->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected. + 'perms'=>'1', // Use 'perms'=>'$user->rights->takepos->level1->level2' if you want your menu with a permission rules + 'target'=>'', + 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both + END MODULEBUILDER LEFTMENU MYOBJECT */ + + + // Exports + $r=1; + + /* BEGIN MODULEBUILDER EXPORT MYOBJECT */ + /* + $langs->load("takepos@takepos"); + $this->export_code[$r]=$this->rights_class.'_'.$r; + $this->export_label[$r]='MyObjectLines'; // Translation key (used only if key ExportDataset_xxx_z not found) + $this->export_icon[$r]='myobject@takepos'; + $keyforclass = 'MyObject'; $keyforclassfile='/mymobule/class/myobject.class.php'; $keyforelement='myobject'; + include DOL_DOCUMENT_ROOT.'/core/commonfieldsinexport.inc.php'; + $keyforselect='myobject'; $keyforaliasextra='extra'; $keyforelement='myobject'; + include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php'; + //$this->export_dependencies_array[$r]=array('mysubobject'=>'ts.rowid', 't.myfield'=>array('t.myfield2','t.myfield3')); // To force to activate one or several fields if we select some fields that need same (like to select a unique key if we ask a field of a child to avoid the DISTINCT to discard them, or for computed field than need several other fields) + $this->export_sql_start[$r]='SELECT DISTINCT '; + $this->export_sql_end[$r] =' FROM '.MAIN_DB_PREFIX.'myobject as t'; + $this->export_sql_end[$r] .=' WHERE 1 = 1'; + $this->export_sql_end[$r] .=' AND t.entity IN ('.getEntity('myobject').')'; + $r++; */ + /* END MODULEBUILDER EXPORT MYOBJECT */ + } + + /** + * Function called when module is enabled. + * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database. + * It also creates data directories + * + * @param string $options Options when enabling module ('', 'noboxes') + * @return int 1 if OK, 0 if KO + */ + public function init($options='') + { + $this->_load_tables('/takepos/sql/'); + + // Create extrafields + include_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php'; + $extrafields = new ExtraFields($this->db); + + //$result1=$extrafields->addExtraField('myattr1', "New Attr 1 label", 'boolean', 1, 3, 'thirdparty', 0, 0, '', '', 1, '', 0, 0, '', '', 'takepos@takepos', '$conf->takepos->enabled'); + //$result2=$extrafields->addExtraField('myattr2', "New Attr 2 label", 'varchar', 1, 10, 'project', 0, 0, '', '', 1, '', 0, 0, '', '', 'takepos@takepos', '$conf->takepos->enabled'); + //$result3=$extrafields->addExtraField('myattr3', "New Attr 3 label", 'varchar', 1, 10, 'bank_account', 0, 0, '', '', 1, '', 0, 0, '', '', 'takepos@takepos', '$conf->takepos->enabled'); + //$result4=$extrafields->addExtraField('myattr4', "New Attr 4 label", 'select', 1, 3, 'thirdparty', 0, 1, '', array('options'=>array('code1'=>'Val1','code2'=>'Val2','code3'=>'Val3')), 1 '', 0, 0, '', '', 'takepos@takepos', '$conf->takepos->enabled'); + //$result5=$extrafields->addExtraField('myattr5', "New Attr 5 label", 'text', 1, 10, 'user', 0, 0, '', '', 1, '', 0, 0, '', '', 'takepos@takepos', '$conf->takepos->enabled'); + + $sql = array(); + + // Remove permissions and default values + $this->remove($options); + + return $this->_init($sql, $options); + } + + /** + * Function called when module is disabled. + * Remove from database constants, boxes and permissions from Dolibarr database. + * Data directories are not deleted + * + * @param string $options Options when enabling module ('', 'noboxes') + * @return int 1 if OK, 0 if KO + */ + public function remove($options = '') + { + $sql = array(); + + return $this->_remove($sql, $options); + } + +} diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang index c46fbc309a8..dad02966507 100644 --- a/htdocs/langs/en_US/admin.lang +++ b/htdocs/langs/en_US/admin.lang @@ -620,6 +620,8 @@ Module50000Name=PayBox Module50000Desc=Offer customers a PayBox online payment page (credit/debit cards). This can be used to allow your customers to make free payments or for a payment on a particular Dolibarr object (invoice, order, ...) Module50100Name=Point of sales Module50100Desc=Point of sales module (POS). +Module50150Name=Point of sales +Module50150Desc=Point of sales module (Touch screen POS). Module50200Name=Paypal Module50200Desc=Offer customers a PayPal online payment page (PayPal account or credit/debit cards). This can be used to allow your customers to make free payments or for a payment on a particular Dolibarr object (invoice, order, ...) Module50400Name=Accounting (advanced) diff --git a/htdocs/takepos/ChangeLog.md b/htdocs/takepos/ChangeLog.md new file mode 100644 index 00000000000..7b623eaa252 --- /dev/null +++ b/htdocs/takepos/ChangeLog.md @@ -0,0 +1,5 @@ +# CHANGELOG TAKEPOS FOR DOLIBARR ERP CRM + +## 1.0 +Initial version + diff --git a/htdocs/takepos/README.md b/htdocs/takepos/README.md new file mode 100644 index 00000000000..40d4742af27 --- /dev/null +++ b/htdocs/takepos/README.md @@ -0,0 +1,100 @@ +# TAKEPOS FOR DOLIBARR ERP CRM + +## Features +Touch Screen POS + + + +Other modules are available on Dolistore.com. + + + +### Translations + +Translations can be define manually by editing files into directories [langs](langs). + + + + + + + +Licenses +-------- + +### Main code + +![GPLv3 logo](img/gplv3.png) + +GPLv3 or (at your option) any later version. + +See [COPYING](COPYING) for more information. + +#### Documentation + +All texts and readmes. + +![GFDL logo](img/gfdl.png) diff --git a/htdocs/takepos/admin/about.php b/htdocs/takepos/admin/about.php new file mode 100644 index 00000000000..d83599e24ed --- /dev/null +++ b/htdocs/takepos/admin/about.php @@ -0,0 +1,77 @@ + + * Copyright (C) 2018 SuperAdmin + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file takepos/admin/about.php + * \ingroup takepos + * \brief About page of module TakePos. + */ + +require '../../main.inc.php'; // Load $user and permissions +require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; +require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; +require_once '../lib/takepos.lib.php'; + +// Translations +$langs->load("errors"); +$langs->load("admin"); +$langs->load("takepos@takepos"); + +// Access control +if (! $user->admin) { + accessforbidden(); +} + +// Parameters +$action = GETPOST('action', 'alpha'); +$backtopage = GETPOST('backtopage', 'alpha'); + + +/* + * Actions + */ + +// None + + +/* + * View + */ + +$form = new Form($db); + +$page_name = "TakePosAbout"; +llxHeader('', $langs->trans($page_name)); + +// Subheader +$linkback = ''.$langs->trans("BackToModuleList").''; + +print load_fiche_titre($langs->trans($page_name), $linkback, 'object_takepos@takepos'); + +// Configuration header +$head = takeposAdminPrepareHead(); +dol_fiche_head($head, 'about', '', 0, 'takepos@takepos'); + +dol_include_once('/takepos/core/modules/modTakePos.class.php'); +$tmpmodule = new modTakePos($db); +print $tmpmodule->getDescLong(); + +// Page end +dol_fiche_end(); +llxFooter(); +$db->close(); diff --git a/htdocs/takepos/admin/orderprinters.php b/htdocs/takepos/admin/orderprinters.php new file mode 100644 index 00000000000..73081e6103d --- /dev/null +++ b/htdocs/takepos/admin/orderprinters.php @@ -0,0 +1,202 @@ + + * Copyright (C) 2005 Eric Seigne + * Copyright (C) 2006-2016 Laurent Destailleur + * Copyright (C) 2007 Patrick Raguin + * Copyright (C) 2005-2012 Regis Houssin + * Copyright (C) 2015 Raphaël Doursenaud + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file htdocs/takepos/admin/orderprinters.php + * \ingroup takepos + * \brief Home page of category area + */ + +require '../../main.inc.php'; // Load $user and permissions +require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; +require_once DOL_DOCUMENT_ROOT.'/core/lib/treeview.lib.php'; +require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; +require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; + +$langs->load("main"); +$langs->load("categories"); +$langs->load("takepos"); +$langs->load("printing"); + +if (! $user->rights->categorie->lire) accessforbidden(); + +$id=GETPOST('id','int'); +$type=(GETPOST('type','aZ09') ? GETPOST('type','aZ09') : Categorie::TYPE_PRODUCT); +$catname=GETPOST('catname','alpha'); +$action=GETPOST('action'); +$printer1=GETPOST('printer1'); +$printer2=GETPOST('printer2'); + +if (is_numeric($type)) $type=Categorie::$MAP_ID_TO_CODE[$type]; // For backward compatibility + +/* + * Actions + */ +print $action; +if ($action=="SavePrinter1"){ + $printedcategories=";"; + if (is_array($printer1)) foreach ($printer1 as $cat){ + $printedcategories=$printedcategories.$cat.";"; + } + dolibarr_set_const($db,"TAKEPOS_PRINTED_CATEGORIES_1", $printedcategories,'chaine',0,'',$conf->entity); +} + +if ($action=="SavePrinter2"){ + $printedcategories=";"; + if (is_array($printer2)) foreach ($printer2 as $cat){ + $printedcategories=$printedcategories.$cat.";"; + } + dolibarr_set_const($db,"TAKEPOS_PRINTED_CATEGORIES_2", $printedcategories,'chaine',0,'',$conf->entity); +} + + +/* + * View + */ + +$categstatic = new Categorie($db); +$form = new Form($db); + +if ($type == Categorie::TYPE_PRODUCT) { $title=$langs->trans("ProductsCategoriesArea"); $typetext='product'; } +elseif ($type == Categorie::TYPE_SUPPLIER) { $title=$langs->trans("SuppliersCategoriesArea"); $typetext='supplier'; } +elseif ($type == Categorie::TYPE_CUSTOMER) { $title=$langs->trans("CustomersCategoriesArea"); $typetext='customer'; } +elseif ($type == Categorie::TYPE_MEMBER) { $title=$langs->trans("MembersCategoriesArea"); $typetext='member'; } +elseif ($type == Categorie::TYPE_CONTACT) { $title=$langs->trans("ContactsCategoriesArea"); $typetext='contact'; } +elseif ($type == Categorie::TYPE_ACCOUNT) { $title=$langs->trans("AccountsCategoriesArea"); $typetext='bank_account'; } +elseif ($type == Categorie::TYPE_PROJECT) { $title=$langs->trans("ProjectsCategoriesArea"); $typetext='project'; } +elseif ($type == Categorie::TYPE_USER) { $title=$langs->trans("UsersCategoriesArea"); $typetext='user'; } +else { $title=$langs->trans("CategoriesArea"); $typetext='unknown'; } + +$arrayofjs=array('/includes/jquery/plugins/jquerytreeview/jquery.treeview.js', '/includes/jquery/plugins/jquerytreeview/lib/jquery.cookie.js'); +$arrayofcss=array('/includes/jquery/plugins/jquerytreeview/jquery.treeview.css'); + +llxHeader('',$title,'','',0,0,$arrayofjs,$arrayofcss); + + +print load_fiche_titre($langs->trans("OrderPrinters")); + +//print ''; +//print '
'; +print '
'; + + +//print '
'; +print '
'; + + +//print '
'; +print ''; + +print '

'; + + +// Charge tableau des categories +$cate_arbo = $categstatic->get_full_arbo($typetext); + +// Define fulltree array +$fulltree=$cate_arbo; + +// Define data (format for treeview) +$data=array(); +$data[] = array('rowid'=>0,'fk_menu'=>-1,'title'=>"racine",'mainmenu'=>'','leftmenu'=>'','fk_mainmenu'=>'','fk_leftmenu'=>''); +foreach($fulltree as $key => $val) +{ + $categstatic->id=$val['id']; + $categstatic->ref=$val['label']; + $categstatic->color=$val['color']; + $categstatic->type=$type; + $li=$categstatic->getNomUrl(1,'',60); + $desc=dol_htmlcleanlastbr($val['description']); + + $data[] = array( + 'rowid'=>$val['rowid'], + 'fk_menu'=>$val['fk_menu'], + 'fk_menu'=>$val['fk_parent'], + 'label'=>$val['label'] + ); +} + +//Printer1 +print ''; +print ''; +$nbofentries=(count($data) - 1); +print ''; +if ($nbofentries > 0) +{ + print ''; +} +else +{ + print ''; + print ''; + print ''; +} +print "
'.$langs->trans("Printer").' 1'; +print '
'; + print ''; + foreach ($data as $row) { + if (strpos($conf->global->TAKEPOS_PRINTED_CATEGORIES_1, ';'.$row["rowid"].';') !== false) $checked='checked'; else $checked=''; + if ($row["fk_menu"]==0) print ''.$row["label"].'
'; + } + print '
'; + print ''; + print ''; + print '
'.img_picto_common('','treemenu/branchbottom.gif').''; + print $langs->trans("NoCategoryYet"); + print ' 
"; +print '

'; + +//Printer2 +print ''; +print ''; +$nbofentries=(count($data) - 1); +print ''; +if ($nbofentries > 0) +{ + print ''; +} +else +{ + print ''; + print ''; + print ''; +} +print "
'.$langs->trans("Printer").' 2'; +print '
'; + print ''; + foreach ($data as $row) { + if (strpos($conf->global->TAKEPOS_PRINTED_CATEGORIES_2, ';'.$row["rowid"].';') !== false) $checked='checked'; else $checked=''; + if ($row["fk_menu"]==0) print ''.$row["label"].'
'; + } + print '
'; + print ''; + print ''; + print '
'.img_picto_common('','treemenu/branchbottom.gif').''; + print $langs->trans("NoCategoryYet"); + print ' 
"; +print ''; + +print '
'; + +llxFooter(); + +$db->close(); diff --git a/htdocs/takepos/admin/setup.php b/htdocs/takepos/admin/setup.php new file mode 100644 index 00000000000..b271fc34e46 --- /dev/null +++ b/htdocs/takepos/admin/setup.php @@ -0,0 +1,259 @@ + + * Copyright (C) 2011-2017 Juanjo Menent + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file htdocs/takepos/admin/setup.php + * \ingroup takepos + * \brief Setup page for TakePos module + */ + +require '../../main.inc.php'; // Load $user and permissions +require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; +require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php'; + +// If socid provided by ajax company selector +if (! empty($_REQUEST['CASHDESK_ID_THIRDPARTY_id'])) +{ + $_GET['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id','alpha'); + $_POST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id','alpha'); + $_REQUEST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id','alpha'); +} + +// Security check +if (!$user->admin) +accessforbidden(); + +$langs->load("admin"); +$langs->load("cashdesk"); + + +/* + * Actions + */ +if (GETPOST('action','alpha') == 'set') +{ + $db->begin(); + + if (GETPOST('socid','int') < 0) $_POST["socid"]=''; + + $res = dolibarr_set_const($db,"CASHDESK_ID_THIRDPARTY",(GETPOST('socid','int') > 0 ? GETPOST('socid','int') : ''),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"CASHDESK_ID_BANKACCOUNT_CASH",(GETPOST('CASHDESK_ID_BANKACCOUNT_CASH','alpha') > 0 ? GETPOST('CASHDESK_ID_BANKACCOUNT_CASH','alpha') : ''),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"CASHDESK_ID_BANKACCOUNT_CHEQUE",(GETPOST('CASHDESK_ID_BANKACCOUNT_CHEQUE','alpha') > 0 ? GETPOST('CASHDESK_ID_BANKACCOUNT_CHEQUE','alpha') : ''),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"CASHDESK_ID_BANKACCOUNT_CB",(GETPOST('CASHDESK_ID_BANKACCOUNT_CB','alpha') > 0 ? GETPOST('CASHDESK_ID_BANKACCOUNT_CB','alpha') : ''),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"CASHDESK_ID_WAREHOUSE",(GETPOST('CASHDESK_ID_WAREHOUSE','alpha') > 0 ? GETPOST('CASHDESK_ID_WAREHOUSE','alpha') : ''),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"CASHDESK_NO_DECREASE_STOCK",GETPOST('CASHDESK_NO_DECREASE_STOCK','alpha'),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"CASHDESK_SERVICES", GETPOST('CASHDESK_SERVICES','alpha'),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"TAKEBOX", GETPOST('TAKEBOX','alpha'),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"TAKEPOS_BAR_RESTAURANT", GETPOST('TAKEPOS_BAR_RESTAURANT','alpha'),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"TAKEPOS_PRINT_SERVER", GETPOST('TAKEPOS_PRINT_SERVER','alpha'),'chaine',0,'',$conf->entity); + $res = dolibarr_set_const($db,"TAKEPOS_ORDER_PRINTERS", GETPOST('TAKEPOS_ORDER_PRINTERS','alpha'),'chaine',0,'',$conf->entity); + + dol_syslog("admin/cashdesk: level ".GETPOST('level','alpha')); + + if (! $res > 0) $error++; + + if (! $error) + { + $db->commit(); + setEventMessages($langs->trans("SetupSaved"), null, 'mesgs'); + } + else + { + $db->rollback(); + setEventMessages($langs->trans("Error"), null, 'errors'); + } +} + +/* + * View + */ + +$form=new Form($db); +$formproduct=new FormProduct($db); + +llxHeader('',$langs->trans("CashDeskSetup")); + +$linkback=''.$langs->trans("BackToModuleList").''; +print load_fiche_titre($langs->trans("CashDeskSetup"),$linkback,'title_setup'); +print '
'; + + +// Mode +$var=true; +print '
'; +print ''; +print ''; + +print ''; +print ''; +print ''; +print "\n"; + +print ''; +print ''; +if (! empty($conf->banque->enabled)) +{ + + print ''; + print ''; + + + print ''; + print ''; + + + print ''; + print ''; +} + +if (! empty($conf->stock->enabled)) +{ + + print ''; // Force warehouse (this is not a default value) + print ''; + + $disabled=$conf->global->CASHDESK_NO_DECREASE_STOCK; + + + print ''; // Force warehouse (this is not a default value) + print ''; +} + +if (! empty($conf->service->enabled)) +{ + $var=! $var; + print '\n"; +} + +// Use Takepos printing +$var=! $var; +print '\n"; + +if ($conf->global->TAKEBOX){ + print ''; +} + +// Bar Restaurant mode +$var=! $var; +print '\n"; + +if ($conf->global->TAKEPOS_BAR_RESTAURANT and $conf->global->TAKEBOX){ + print ''; +} + +print '
'.$langs->trans("Parameters").''.$langs->trans("Value").'
'.$langs->trans("CashDeskThirdPartyForSell").''; +print $form->select_company($conf->global->CASHDESK_ID_THIRDPARTY,'socid','s.client in (1,3) AND s.status = 1',1,0,1,array(),0); +print '
'.$langs->trans("CashDeskBankAccountForSell").''; + $form->select_comptes($conf->global->CASHDESK_ID_BANKACCOUNT_CASH,'CASHDESK_ID_BANKACCOUNT_CASH',0,"courant=2",1); + print '
'.$langs->trans("CashDeskBankAccountForCheque").''; + $form->select_comptes($conf->global->CASHDESK_ID_BANKACCOUNT_CHEQUE,'CASHDESK_ID_BANKACCOUNT_CHEQUE',0,"courant=1",1); + print '
'.$langs->trans("CashDeskBankAccountForCB").''; + $form->select_comptes($conf->global->CASHDESK_ID_BANKACCOUNT_CB,'CASHDESK_ID_BANKACCOUNT_CB',0,"courant=1",1); + print '
'.$langs->trans("CashDeskDoNotDecreaseStock").''; + if (empty($conf->productbatch->enabled)) { + print $form->selectyesno('CASHDESK_NO_DECREASE_STOCK',$conf->global->CASHDESK_NO_DECREASE_STOCK,1); + } + else + { + if (!$conf->global->CASHDESK_NO_DECREASE_STOCK) { + $res = dolibarr_set_const($db,"CASHDESK_NO_DECREASE_STOCK",1,'chaine',0,'',$conf->entity); + } + print $langs->trans('StockDecreaseForPointOfSaleDisabledbyBatch'); + } + print '
'.$langs->trans("CashDeskIdWareHouse").''; + if (! $disabled) + { + print $formproduct->selectWarehouses($conf->global->CASHDESK_ID_WAREHOUSE,'CASHDESK_ID_WAREHOUSE','',1,$disabled); + print ' ('.$langs->trans("Create").')'; + } + else + { + print $langs->trans("StockDecreaseForPointOfSaleDisabled"); + } + print '
'; + print $langs->trans("CashdeskShowServices"); + print ''; + print $form->selectyesno("CASHDESK_SERVICES",$conf->global->CASHDESK_SERVICES,1); + print "
'; +print $langs->trans("DolibarrReceiptPrinter").' TakeBOX ('.$langs->trans("TakeboxNecesary").')'; +print ''; +print $form->selectyesno("TAKEBOX",$conf->global->TAKEBOX,1); +print "
'; + print $langs->trans("IPAddress").' ('.$langs->trans("TakeboxNecesary").')'; + print ''; + print ''; + print '
'; +print 'Bar Restaurant'; +print ''; +print $form->selectyesno("TAKEPOS_BAR_RESTAURANT",$conf->global->TAKEPOS_BAR_RESTAURANT,1); +print "
'; + print $langs->trans("OrderPrinters").' ('.$langs->trans("Setup").')'; + print ''; + print $form->selectyesno("TAKEPOS_ORDER_PRINTERS",$conf->global->TAKEPOS_ORDER_PRINTERS,1); + print '
'; +print '
'; + +print '
'; + +print "
\n"; + + + +// Marketplace +print "
\n"; +print "\n"; +print ''; +print ''; +print ''; + +print "\n"; +$url='https://www.dolistore.com/en/modules/980-TakePOS-7-mobile.html'; +print ''; +print ''; +print ''; +print ''; + +print "\n"; +$url='https://www.dolistore.com/en/modules/949-Cash-Control-7.html'; +print ''; +print ''; +print ''; +print ''; + +print "
TakePOS Marketplace'.$langs->trans("URL").'
TakePOS for mobile devices'.$url.'
TakePOS CashControl'.$url.'
\n"; +print '
'; + +// Support +print "
\n"; +print "\n"; +print ''; +print ''; +print ''; + +print "\n"; +$url='http://www.takepos.com'; +print ''; +print ''; +print ''; +print ''; + +print "
TakePOS Support'.$langs->trans("URL").'
TakePOS official developers'.$url.'
\n"; +print '
'; + +llxFooter(); +$db->close(); diff --git a/htdocs/takepos/ajax.php b/htdocs/takepos/ajax.php new file mode 100644 index 00000000000..5b199ec11a9 --- /dev/null +++ b/htdocs/takepos/ajax.php @@ -0,0 +1,62 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file htdocs/takepos/ajax.php + * \brief Ajax search component for TakePos. It search products of a category. + */ + +//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language +if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); +//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); +if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); +if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); +if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); +if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); +if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); + +require '../main.inc.php'; // Load $user and permissions +require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; + +$category = GETPOST('category'); +$action = GETPOST('action'); +$term = GETPOST('term'); + + +/* + * View + */ + +if ($action=="getProducts"){ + $object = new Categorie($db); + $result=$object->fetch($category); + $prods = $object->getObjectsInCateg("product"); + echo json_encode($prods); +} + +if ($action=="search"){ + $sql = 'SELECT * FROM '.MAIN_DB_PREFIX.'product'; + $sql.= ' WHERE entity IN ('.getEntity('product').')'; + $sql .= natural_search(array('label','barcode'), $term); + $resql = $db->query($sql); + $rows = array(); + while($row = $db->fetch_array ($resql)){ + $rows[] = $row; + } + echo json_encode($rows); +} \ No newline at end of file diff --git a/htdocs/takepos/class/actions_takepos.class.php b/htdocs/takepos/class/actions_takepos.class.php new file mode 100644 index 00000000000..a3ac2e78646 --- /dev/null +++ b/htdocs/takepos/class/actions_takepos.class.php @@ -0,0 +1,223 @@ +. + */ + +/** + * \file takepos/class/actions_takepos.class.php + * \ingroup takepos + * \brief Hooks of takepos module + */ + +/** + * Class ActionsTakePos + */ +class ActionsTakePos +{ + /** + * @var DoliDB Database handler. + */ + public $db; + /** + * @var string Error + */ + public $error = ''; + /** + * @var array Errors + */ + public $errors = array(); + + + /** + * @var array Hook results. Propagated to $hookmanager->resArray for later reuse + */ + public $results = array(); + + /** + * @var string String displayed by executeHook() immediately after return + */ + public $resprints; + + + /** + * Constructor + * + * @param DoliDB $db Database handler + */ + public function __construct($db) + { + $this->db = $db; + } + + /** + * Overloading the doActions function : replacing the parent's function with the one below + * + * @param array() $parameters Hook metadatas (context, etc...) + * @param CommonObject $object The object to process (an invoice if you are in invoice module, a propale in propale's module, etc...) + * @param string $action Current action (if set). Generally create or edit or null + * @param HookManager $hookmanager Hook manager propagated to allow calling another hook + * @return int < 0 on error, 0 on success, 1 to replace standard code + */ + public function doActions($parameters, &$object, &$action, $hookmanager) + { + global $conf, $user, $langs; + + $error = 0; // Error counter + + /* print_r($parameters); print_r($object); echo "action: " . $action; */ + if (in_array($parameters['currentcontext'], array('somecontext1','somecontext2'))) // do something only for the context 'somecontext1' or 'somecontext2' + { + // Do what you want here... + // You can for example call global vars like $fieldstosearchall to overwrite them, or update database depending on $action and $_POST values. + } + + if (! $error) { + $this->results = array('myreturn' => 999); + $this->resprints = 'A text to show'; + return 0; // or return 1 to replace standard code + } else { + $this->errors[] = 'Error message'; + return -1; + } + } + + + /** + * Overloading the doActions function : replacing the parent's function with the one below + * + * @param array() $parameters Hook metadatas (context, etc...) + * @param CommonObject $object The object to process (an invoice if you are in invoice module, a propale in propale's module, etc...) + * @param string $action Current action (if set). Generally create or edit or null + * @param HookManager $hookmanager Hook manager propagated to allow calling another hook + * @return int < 0 on error, 0 on success, 1 to replace standard code + */ + public function addMoreActionsButtons($parameters, &$object, &$action, $hookmanager) + { + global $conf, $user, $langs; + + $error = 0; // Error counter + + /* print_r($parameters); print_r($object); echo "action: " . $action; */ + if (in_array($parameters['currentcontext'], array('invoicecard'))) // do something only for the context 'somecontext1' or 'somecontext2' + { + + if (file_exists("../../takepos/receipt.php")) $receipt_url=DOL_URL_ROOT."/takepos/receipt.php"; + if (file_exists("../../custom/takepos/receipt.php")) $receipt_url=DOL_URL_ROOT."/custom/takepos/receipt.php"; + print ''; + } + + if (! $error) { + $this->results = array('myreturn' => 999); + $this->resprints = 'A text to show'; + return 0; // or return 1 to replace standard code + } else { + $this->errors[] = 'Error message'; + return -1; + } + } + + + /** + * Overloading the addMoreMassActions function : replacing the parent's function with the one below + * + * @param array() $parameters Hook metadatas (context, etc...) + * @param CommonObject $object The object to process (an invoice if you are in invoice module, a propale in propale's module, etc...) + * @param string $action Current action (if set). Generally create or edit or null + * @param HookManager $hookmanager Hook manager propagated to allow calling another hook + * @return int < 0 on error, 0 on success, 1 to replace standard code + */ + public function addMoreMassActions($parameters, &$object, &$action, $hookmanager) + { + global $conf, $user, $langs; + + $error = 0; // Error counter + + /* print_r($parameters); print_r($object); echo "action: " . $action; */ + if (in_array($parameters['currentcontext'], array('somecontext1','somecontext2'))) // do something only for the context 'somecontext1' or 'somecontext2' + { + $this->resprints = ''; + } + + if (! $error) { + return 0; // or return 1 to replace standard code + } else { + $this->errors[] = 'Error message'; + return -1; + } + } + + + + /** + * Execute action + * + * @param array $parameters Array of parameters + * @param Object $object Object output on PDF + * @param string $action 'add', 'update', 'view' + * @return int <0 if KO, + * =0 if OK but we want to process standard actions too, + * >0 if OK and we want to replace standard actions. + */ + function beforePDFCreation($parameters, &$object, &$action) + { + global $langs,$conf; + global $hookmanager; + + $outputlangs=$langs; + + $ret=0; $deltemp=array(); + dol_syslog(get_class($this).'::executeHooks action='.$action); + + /* print_r($parameters); print_r($object); echo "action: " . $action; */ + if (in_array($parameters['currentcontext'], array('somecontext1','somecontext2'))) // do something only for the context 'somecontext1' or 'somecontext2' + { + + } + + return $ret; + } + + /** + * Execute action + * + * @param array $parameters Array of parameters + * @param Object $pdfhandler PDF builder handler + * @param string $action 'add', 'update', 'view' + * @return int <0 if KO, + * =0 if OK but we want to process standard actions too, + * >0 if OK and we want to replace standard actions. + */ + function afterPDFCreation($parameters, &$pdfhandler, &$action) + { + global $langs,$conf; + global $hookmanager; + + $outputlangs=$langs; + + $ret=0; $deltemp=array(); + dol_syslog(get_class($this).'::executeHooks action='.$action); + + /* print_r($parameters); print_r($object); echo "action: " . $action; */ + if (in_array($parameters['currentcontext'], array('somecontext1','somecontext2'))) // do something only for the context 'somecontext1' or 'somecontext2' + { + + } + + return $ret; + } + + /* Add here any other hooked methods... */ + +} diff --git a/htdocs/takepos/css/colorbox.css b/htdocs/takepos/css/colorbox.css new file mode 100644 index 00000000000..5e9d4b7a79e --- /dev/null +++ b/htdocs/takepos/css/colorbox.css @@ -0,0 +1,58 @@ +/* + Colorbox Core Style: + The following CSS is consistent between example themes and should not be altered. +*/ +#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);} +#cboxWrapper {max-width:none;} +#cboxOverlay{position:fixed; width:100%; height:100%;} +#cboxMiddleLeft, #cboxBottomLeft{clear:left;} +#cboxContent{position:relative;} +#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;} +#cboxTitle{margin:0;} +#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;} +#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;} +.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;} +.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;} +#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;} + +/* + User Style: + Change the following styles to modify the appearance of Colorbox. They are + ordered & tabbed in a way that represents the nesting of the generated HTML. +*/ +#cboxOverlay{background:#000; opacity: 0.9; filter: alpha(opacity = 90);} +#colorbox{outline:0;} + #cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) no-repeat 0 0;} + #cboxTopCenter{height:14px; background:url(images/border.png) repeat-x top left;} + #cboxTopRight{width:14px; height:14px; background:url(images/controls.png) no-repeat -36px 0;} + #cboxBottomLeft{width:14px; height:43px; background:url(images/controls.png) no-repeat 0 -32px;} + #cboxBottomCenter{height:43px; background:url(images/border.png) repeat-x bottom left;} + #cboxBottomRight{width:14px; height:43px; background:url(images/controls.png) no-repeat -36px -32px;} + #cboxMiddleLeft{width:14px; background:url(images/controls.png) repeat-y -175px 0;} + #cboxMiddleRight{width:14px; background:url(images/controls.png) repeat-y -211px 0;} + #cboxContent{background:#fff; overflow:visible;} + .cboxIframe{background:#fff;} + #cboxError{padding:50px; border:1px solid #ccc;} + #cboxLoadedContent{margin-bottom:5px;} + #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;} + #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;} + #cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#7C7C7C;} + #cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;} + + /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */ + #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; position:absolute; bottom:-29px; background:url(images/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;} + + /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */ + #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;} + + #cboxPrevious{left:0px; background-position: -51px -25px;} + #cboxPrevious:hover{background-position:-51px 0px;} + #cboxNext{left:27px; background-position:-75px -25px;} + #cboxNext:hover{background-position:-75px 0px;} + #cboxClose{right:0; background-position:-100px -25px;} + #cboxClose:hover{background-position:-100px 0px;} + + .cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;} + .cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;} + .cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;} + .cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;} \ No newline at end of file diff --git a/htdocs/takepos/css/images/border.png b/htdocs/takepos/css/images/border.png new file mode 100644 index 0000000000000000000000000000000000000000..c1cd1a2a45151cea73c0c40177201da68d844636 GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^j6m$o!2~4jwp3jKQbC?Bjv*C{M~`phJ)pqD8u+_8 zf#H%Nr?!!5?23h(bu16Lnso%(yzHxfzwlbuRY16Dl9G~IT3Xc9)Z^ph#l^+1udkq>pj%s8x3{-FJw3a- zyTZc4tgNhJVPUGOs=2wjTUuIPU0s)#m&C-xo0^)sxw(yvjeLB3^78U4D=RH6Ei5c7 zO-)TME-o-IFwM=)IXOA(>+9v^gnk!Dk@A&OhZFMI5;>mGBP$cHrd(PIyySo z*x1a>%u7p4z`(#lLPF^0=SN3JF)=YpN=iXNLGSMFH#av(NJvFRMNv^v@$vCHJ3Bl) zJTo&hNl8iR>FGvBMo>^t>+0%WUS93(?OFDTAPEK`obwEHsK0ZFDr>E}i?Y_RgTwGjIQc{VDiO$Z>?Ck7QQ&aZ#_VDoVc6N4O zUti|s<#>2_pP!#Tzq!=)s&!wEQp@vyFIk z{PDjEVaj?D5iW-YT3uNKm4}U(^%`EbF)X6((0>FEmT~{c?^irN{KFeN?;{+<$4f#T zeZG%Ym$yXwHI!Ke8d9MGL=LPJPD4Z}{~FDn3-#|Yr4(O%L_( z-8BOsr9@MQnW3r?nDqg^vq(z>QPy}US#hdxo=XywP_alW;o0x&G} z%WLo;5He55-a{xm(=U>z+@5Efj_eBcqJ;?qAgnhZ6%rTj<_WffUd*6JPxuMkqhVpF zysW1rge}beoIFJ>o%J1A^7jxZAc^0@Jdcibq__>-@|lH=}EO&zkNlRJ3pG( zAiR0%L%-j6AJ(FMDB#gPR7?I%qp8t8^vVat)cR05sZQIk2rGqAmN%jhin|nup}TYz zxl3E{fP5RdOEsXoVKOaxmx}Tf?^1rzIQ_HNg!`j<&*oDS-iI9|LgcmG$onuy7^F8I z;RiN77k(d#as6REi8fae%{m0Fd-ncm9GbgTOGkzuR zBT+IO)0_Zi`FD2Iv}#)c5C{QoAb|n_keC7ikeD03;(uL4VSArd0mMRBWn|@zz?2xI zKqLnF;Z?TZUN|BDU&TUjD*5Wk!=Xs@E7?!p9vS`-hnFmTy`-(Josj$QPa2}_cq|bu%W?aQz9KevLtIdg1V7n-UzTYWV zc=eYw*K$I9;X6R$reC65Ai<}L5-E@h!SQ~y7eqMl-53-?PC2AR3Zz1aUH%8%!lnnH z5c1@|2;(zI-=jo`@tT+Z8XjKm=aA`r4i)dxJ@enC|7bpp>FrDBL%qV;*EECK*ECv% z=C4cDLVdM`2BD%pbp1eoeK@;Ne~qt0sOvjT`9cjbLTH6nXoXg2g;r>VR%nG*XoW+S z@E|f&$oH43g!eY177D)^DeU16+MDuIKM8SH}54j=iwzZ zQb<}XF@pZeW8PqCrjQ$Z@*Y_Pnkz&jM%CwRqLAmiDtw?}!oSkOxx(7xrsDtr002ov JPDHLkV1i>c`Cb43 literal 0 HcmV?d00001 diff --git a/htdocs/takepos/css/images/loading.gif b/htdocs/takepos/css/images/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..dba33c8167bfd0bfd0abd5ad0733c901e5cd227e GIT binary patch literal 8685 zcmb8!c|a5A-Y@XUWU`UT3Rxx~gb*NLz_1v>1rw663qb`DQ3E2PQbkG7U7Oaf$~ zm;_YBrGRMBE=F96w#Tw*ky-_{R$F@x;!@h$zEo{%mot4QL9L$q-uK?i-~97@@_l~G zGpXq*35msGKn(n(2C!QfvHPE6zdpgn|AD=hfPFrQeKU$Z`X0O1gT1*8`|C{X;R9^+ z3ikbd?C}Kl(?jg;4Q%Wh_MhX}SGTbKL)g!cu_r%a-;QCw{fhnmJNDo%wn>29o!Egb*!4c_<1XxNGiJ%gOexrVO<0v2Ypue%>al-Z z!Wx%hwHcT(8QWEg{c{*=$j44Nu=Y(@a~alBj-6@7c9vk3k=VL0tS$>%FT?seu+Ijt z%iWl(2s?iSTPwlVh_U*GSg8HBil|T2qPank|8+H?^Tr{VbzGA+MXGO>|!gqW5eDJfq zghQOO=Vd%~#%{?LhKcO|gd15j=ysTyQ@6z&AHGvl?}r8swswSEp9V)I$$%gFv<}{k ztqN*FgW(-oWYS~a%+h^esDm7QEgt`bsf=P0|MGXa2c-~hz@O|jYzH?=MZ#R zufvtx5>an$D=@NU4XQAdO17EAT7UP^gRSdfesffl8oj2i#)C7N8wik-aTT6dVM3&iRN26w}4yboQys8;%O29^X7;IwZ&DgSz?*eCSUX_gU=C!YHX|hpr7cSl` zhrq?{YJ?vZPDV_KX3?s(YvZ8A*#LLK9n3VyG)JZvzkVHb4Wx%l2ESfbKZ71V2 z^_2LG0XvUr2ah$LLzP($aa%{w0hp|ZwkkAKIyXG*$?@WbUUNiz>=nm*hsVqmnNTad zKdrw8AP#@|XwgFzDV;SOF{Du4ovu@kA_da6cCz|+XlbWxfqtIz*Q)ldr(4H9QB(9< zcd*QOdLJZJ35~_e=TaB_aZK9UdkZ}l7dm^XAN9ZU_+`>#S%}wTR_bgm?!jM`s$UB> zB5b0GwK&yK!f%x3&M8BA>h`1-h`}=>Q*-Ce)j{C$_T>maMxP`w%R_UQ76DL*&$MzV z=heW93^OG$bk3p>2mv;rMS-ieOdD78MZ8^`sySz8kv1T9A$i<}2pfM#A#HP;x%$I- z9*@f4qUu;KcGIBRfRb%~tlyUyH-NQtwz&Ms&)?xGv7U8Gci--jr?BQf^zRX)DLSP@ zp>UT=&N<&_F6)sk7(UlBUX|Q@F6KZxMW(;O_A^RyK<>;bQgiWC=q=Ot@60}92%Srt zfsnwb8o-O`cxVLhbkHM`d7gCSa7w5YKnfP1kyj;h z8|B87IQ!HJ#X^>y2XpE{RXKgnuLz2W*zD*BaYjjxi3oFJE8Q1r`)E{N?A{Zj#kF)` z`h)k`2H=Brzy35OZD71NRfmu-?m0M^0+Gr5#H>!IFIg?{+wa#ATnyDl2TPAMJMM|; z1P_9^_+kMYzNNj8!-n289r@w>i8apgrs@lcqqW>NqLdN zMmulGu0gUiy`{47lr$o(kN{ zVgy7$8D8;KH56Fl^%$VBL+9fjl4>$rEWL%74uHsmI8fR{)zJU?mcLTiBkrr#DbFK4 z5gR&yc~Ep(ePXA2faa zLsPE!t`fyiWLtIe#7EDEzbQ81urRWRbR^Rss5f{kIxEUOY`H11HR3jt-Q zSg$qnS4PV%LT!;c3gFZH4aKY8L3yP1Z~+h&x!e&V?w^rp^^H?WNdUsOAd&jw)pI+{ zAR(^I*Os*4EL7&YnP8&#gF&+@!YXx|(edLV?e*?*LVN4l00b%tn6iMEmh@ir_ zFrJ-f1%&dPDN}_2MVpkDU=wjpH+z)pc~{GIUr0}u3j6{ zVfOVJkTWBE0afSPsuLE$hd2RKi59L}J8#M!3wV~pw8|HMe%ppn`mFr;vir`7lMEvL z1CPNE z=FQ(fTTi$G2S;6I09y<^R93X+UG#dcDjm4&t~a!H_D-t=3e@GNfzRL4g35d%dvq5; z%@r4oZeGX6yGeJ;wTW*Jr)!al@%op$D}>J)o?Lhf>EtD`(ig-jZ4L`zLs*;%@g+M! z#Khj93PXA2q0<2yox`T1jb#}SBAq^GX^72h0nq`K2wF)ywW!P{cptamGtrRTrOR`0 z%rl%3OWE9wQ@_M9&RW5^_^+Jbp+YX1`~cVJ|IT;GyzF(0U`WwwP-f>+*y0A+gOLcJ zcS}}lTGI{9a5cc5(4869)HjDM0lPyMwUvfz??smSO0=OJFmdaYwD_@0`{LqwHx0Fy z9jyuLCoGkO!@be#po+KWp9UW>UpSJf%HD+w-r?GnzmDPtGjIgfMM_?HnF1AY%bUX-L{KicPc~7Z8GITtu2S z(+=Y6%zL(iW%K3ydW3StCS=QQxW-Hfox$j0;RtsC(fpZ3i({)xO-W)`Ay3b3a`V8mmQ|gJWzs#53JKr2cq}-&Q*Q+GJ z^6?uqVree1;GGJsQB0>z*i*`9&`U z;o14Ur2;>{zI+40G7Dw19F^z{3bq_9k#)y#N$c;D{uw`@ZE?E7qj zOh0OWBju7^K)mLd7tScXUuA}->|1Mb1Cx8sZKc3%^VQqLpcVc3a>LF8GrJQ^fV z7LINQICk!KM-6xo23C?AafstKI*ufG0Np8L~J(O#@ z|EFIT9}NgLNFlA7QE)I$1=Q~bmu(IBOR>3LouhR)w>wRQ24548XXpD8=xCGo z_#BIs(ZJd5IX#Kq&}QQvcaVhOf#dtF2!49EwF?$F5z2s##dHmu`KO-|nsXj2N}NyW1hH?zwUZl_y9Kk5@M<^v%C#4)mop zCalQ4>EOSxp-+aw^N#b-vy9;$l&2m_eD&~zLg@9F426sUdN_E{(@=2nP@I68QBjvC z6NjH`^m{ahO}kO=tw6}{4mLGhcAe__v}@Ek*1*CUZVV$tj%;w`M`(yBw1F`DS8I5Pq+YSIWKbUvd zsOXalc1ML4`lXj1s22OLQw>^Nhm&ohEO#0hx$vWSn4O$HQ%^FZqMxWc*tW25#k7QB z*-N9;pA3&C8R-AcfOxBe_iD&|g?}o%)d24^bC2OYvKbN`JBl-Oo;7=4st`)Q)x)sM z^i<)U_dE(G8xDU7|I)Y#0#`e2h9h&dT$)fG8+do}M_M zYA3yyf8p2_DHKL1s{%OU)xG){8g>}HFSheyvc3r|soHGKPgct0#iEE8M(jTw{&TWM z{0|OXHgVFyTOwX?0RC?dj!6fZa1!FqbBM1-Mg$@82W?7=O;qyvt+X~OYDI{f7?M76 zb_)c=Y5|gwOpD8qF(V1748LGt5E_Xg0XzMqwkD3Me8@i}O;Ir3b)Vi~$ryCB_PTCF z0hG?ScWWTuS}N6%K2x!Z!He+uF0p%TQ_bJC+P&cEjCzt|zy0~T^-_s=X!Mqd|IvWl zZ1&s;n&(E~21h5ea8PvY_%7ehznh*Wp%;I$bX}TE!exZ~&c3FGPh84lY(%z_8trh= zM-gCQ-t;3bJPpJzdGv#q?E+0QXs56vMD7$u6UUbAl$4q>T4H7wN(b3J1t6K^R+OvC z2Q)G$O=@U6K(ax^@={pUsT0b?9R|1lKqkW}$SV|?&(-myM*_yjUC?bUkt~--r%CTL(6`tkT;XjBeRIjoDE1|#o1hd21}gk6(Z>M!I`PaQ zs|TWsM>&1jE{cc-`BPLKgFQ$fbS2d1BZFTXsc5Uw5lk{pUjo3_BpoaJ2WDgf&8u(U z^VN`dLNqFvT)l&XK$VuZnp!bqK*Szv9X0JVvI++r-1);q)D+maCU*ywwA)tIEy{FgdhxCE0v zO)*-&%LC!_$}1J&yXfwn$$7C$oX- z(^}aCh2HMiWh+4ef^-ym!7|7&Fb=9^sk`kwb`N1D43^5`00jf zpue5+^QKogz8w~c{{SqV>1a*gnOF)Xy2XQlyc|s#ypXKZAz(q#zy{J~XRR7M<#;eA zA(DfWhlC-+V$f#LbXKZYxcg|q8S-MTqcfQRoQB+NRJFQC9cLbPZ{F-6QKyAGpB``o zl6S50ApGb-Fi#?w@#z8YmYylnW%8uKJ41TnU<(6Y=$3BllsTRFwKxcgx=xtM>vI?M zccQmiKGGoU5OXr8YtF>`SV9P8D$@g|_d>V#vQXwp0G~m~IfkEq*kM}|C{|65 z4oA1c$8AxHz~u~7*eN>sUX37Iv3ddiH~|Y>f<#?s4UcI1y2Eymi^R&Pfb# zdFuE6{y8nmlSFW?&o94(w9rqIA>j8x*FCtdsy?)$wezcrM{twI6#k@v;Pq?%AzeW*|?T z=3TQrv9O1}BH5(!-VU!sK*g(yC|m;aQp~H^BA=uXC6x6{QqY;#TCQzavbZWKbjMSQ znfduaK`9!Kg)lwux8K5X3z*$A-$WPire2I0s_bn7)F3lJd?>xql)yg2cujR|xY}=i zl}cZFV7E#K4zqtqt|koBLDARF0=j4^3iY4&d^gD9VC%1 zMTB}KM6_aY{B5V%Rv(zvJbXg`LWP)&#N?ZU=W@IZ!F&d>-e=jL5W#CUtq%JWLOWy2 zrYX-LM2lw>XFi1}4V#2uQ9KX@!HX7dobs6$f-j`u&kR*navXvz%v$x^Z^Sx`xVZMZ8U@X`@@jwdDNo!JsKjVp5ez}l4WJJ~GbO4n5NeO*5 z8_n`Gy$?b7)+R9p0m6dcmcXK&xs#ofM8ZFxKdqIXI6U%laMQx^S8J3mCz;a~60O}V z44xJnfwEE*fzx-Gm}(y}6auh<-q1{f1O)k{P74F3&PauEkUo~p`@uX4B`{D?A3R|5 zjSPwnw|go^JN~U*xC8(0$!GD7x0}DEM@+%LrC)9Lk|f8_LPMvs-9$r33qcUT4ci-| zXjTv@wtAtuI;Ex>i5}pJ2T@W3QB#sodF+bmHCt?!fqlD2;(rTXh=ygE#02p)t>!{j z0klz(TeL~`ij%NY`C6=lrUIe$_Sk?lDHU}SOxJ6m)<*S}cWjFICx!S(J?p;!sZ>^A literal 0 HcmV?d00001 diff --git a/htdocs/takepos/css/images/loading_background.png b/htdocs/takepos/css/images/loading_background.png new file mode 100644 index 0000000000000000000000000000000000000000..23a336b39893649bdab307a9d73c20ff5a2fcf41 GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU0wmSG7d!(}UY;(FAr*{ouRHP{VBm2IR0%1P z4dW8}Hz`tLx@ryMd!9)WVxLVn^XQi^v2xQn88#zD>>-z!PQ-?UgH5d5|71)~&Y6GY e=S8`FqWtAKNnJbk-dqbbmBG{1&t;ucLK6T494Z3< literal 0 HcmV?d00001 diff --git a/htdocs/takepos/css/pos.css b/htdocs/takepos/css/pos.css new file mode 100644 index 00000000000..8a2122de9f3 --- /dev/null +++ b/htdocs/takepos/css/pos.css @@ -0,0 +1,114 @@ +html,body { + padding:0; + margin:0; + height:100%; +} + +body { + width:100%; +} + +.row { + width:100%; + height:50%; +} + +.row div { + width:33%; + height:100%; + float:left; +} + +button.calcbutton { + display: inline-block; + position: relative; + padding: 0; + line-height: normal; + cursor: pointer; + vertical-align: middle; + text-align: center; + font-size:180%; + overflow: visible; /* removes extra width in IE */ + width:24%; + height:24%; +} + +button.calcbutton2 { + display: inline-block; + position: relative; + padding: 0; + line-height: normal; + cursor: pointer; + vertical-align: middle; + text-align: center; + font-size:120%; + overflow: visible; /* removes extra width in IE */ + width:24%; + height:24%; +} + +button.actionbutton { + display: inline-block; + position: relative; + padding: 0; + line-height: normal; + cursor: pointer; + vertical-align: middle; + text-align: center; + font-size:100%; + overflow: visible; /* removes extra width in IE */ + width:32%; + height:32%; +} + +div.wrapper{ + float:left; /* important */ + position:relative; /* important(so we can absolutely position the description div */ + width:21.5%; + height:23%; + margin:1%; + border: 0.1em solid; + box-shadow: 3px 3px 2px #888; + text-align: center; +} + +div.wrapper2{ + float:left; /* important */ + position:relative; /* important(so we can absolutely position the description div */ + width:10.2%; + height:23%; + margin-top:0.5%; + margin-bottom:0.5%; + margin-left:0.5%; + margin-right:0.5%; + border: 0.1em solid; + box-shadow: 3px 3px 2px #888; + text-align: center; +} + +div.description{ + position:absolute; /* absolute position (so we can position it where we want)*/ + bottom:0px; /* position will be on bottom */ + left:0px; + width:100%; + /* styling bellow */ + background-color:black; + font-family: 'tahoma'; + font-size:100%; + color:white; + opacity:0.8; /* transparency */ + filter:alpha(opacity=80); /* IE transparency */ + text-align:center; +} + +@media only screen and (max-aspect-ratio: 6/4) { + div.description{ + min-height:20%; + } +} + +p.description_content{ + padding:10px; + margin:0px; + +} diff --git a/htdocs/takepos/customers.php b/htdocs/takepos/customers.php new file mode 100644 index 00000000000..f62931569ef --- /dev/null +++ b/htdocs/takepos/customers.php @@ -0,0 +1,1265 @@ + + * Copyright (C) 2004-2016 Laurent Destailleur + * Copyright (C) 2005-2012 Regis Houssin + * Copyright (C) 2012 Marcos García + * Copyright (C) 2013-2015 Raphaël Doursenaud + * Copyright (C) 2015 Florian Henry + * Copyright (C) 2016 Josep Lluis Amador + * Copyright (C) 2016 Ferran Marcet + * Copyright (C) 2017 Rui Strecht + * Copyright (C) 2017 Juanjo Menent + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file htdocs/takepos/customers.php + * \ingroup societe + * \brief Page to show list of third parties. TODO Merge with societe/list.php + */ + +require '../main.inc.php'; // Load $user and permissions +include_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php'; +require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php'; +require_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php'; + +$langs->loadLangs(array("companies", "commercial", "customers", "suppliers", "bills", "compta", "categories")); + +$action=GETPOST('action','alpha'); +$massaction=GETPOST('massaction','alpha'); +$show_files=GETPOST('show_files','int'); +$confirm=GETPOST('confirm','alpha'); +$toselect = GETPOST('toselect', 'array'); +$idcustomer = GETPOST('idcustomer'); +$place = GETPOST('place'); +$_GET['optioncss'] = 'print'; + +if ($action=="change") { + $sql="UPDATE ".MAIN_DB_PREFIX."facture set fk_soc=".$idcustomer." where facnumber='(PROV-POS-".$place.")'"; + $resql = $db->query($sql); + ?> + + societe_id) $socid=$user->societe_id; +$result = restrictedArea($user,'societe',$socid,''); + +$search_all=trim(GETPOST('search_all', 'alphanohtml')?GETPOST('search_all', 'alphanohtml'):GETPOST('sall', 'alphanohtml')); +$search_cti=preg_replace('/^0+/', '', preg_replace('/[^0-9]/', '', GETPOST('search_cti', 'alphanohtml'))); // Phone number without any special chars + +$search_id=trim(GETPOST("search_id","int")); +$search_nom=trim(GETPOST("search_nom")); +$search_alias=trim(GETPOST("search_alias")); +$search_nom_only=trim(GETPOST("search_nom_only")); +$search_barcode=trim(GETPOST("search_barcode")); +$search_customer_code=trim(GETPOST('search_customer_code')); +$search_supplier_code=trim(GETPOST('search_supplier_code')); +$search_account_customer_code=trim(GETPOST('search_account_customer_code')); +$search_account_supplier_code=trim(GETPOST('search_account_supplier_code')); +$search_town=trim(GETPOST("search_town")); +$search_zip=trim(GETPOST("search_zip")); +$search_state=trim(GETPOST("search_state")); +$search_region=trim(GETPOST("search_region")); +$search_email=trim(GETPOST('search_email')); +$search_phone=trim(GETPOST('search_phone')); +$search_url=trim(GETPOST('search_url')); +$search_idprof1=trim(GETPOST('search_idprof1')); +$search_idprof2=trim(GETPOST('search_idprof2')); +$search_idprof3=trim(GETPOST('search_idprof3')); +$search_idprof4=trim(GETPOST('search_idprof4')); +$search_idprof5=trim(GETPOST('search_idprof5')); +$search_idprof6=trim(GETPOST('search_idprof6')); +$search_vat=trim(GETPOST('search_vat')); +$search_sale=trim(GETPOST("search_sale",'int')); +$search_categ_cus=trim(GETPOST("search_categ_cus",'int')); +$search_categ_sup=trim(GETPOST("search_categ_sup",'int')); +$search_country=GETPOST("search_country",'intcomma'); +$search_type_thirdparty=GETPOST("search_type_thirdparty",'int'); +$search_status=GETPOST("search_status",'int'); +$search_type=GETPOST('search_type','alpha'); +$search_level_from = GETPOST("search_level_from","alpha"); +$search_level_to = GETPOST("search_level_to","alpha"); +$search_stcomm=GETPOST('search_stcomm','int'); +$search_import_key = GETPOST("search_import_key","alpha"); + +$type=GETPOST('type'); +$optioncss=GETPOST('optioncss','alpha'); +$mode=GETPOST("mode"); + +$diroutputmassaction=$conf->societe->dir_output . '/temp/massgeneration/'.$user->id; + +$limit = GETPOST('limit','int')?GETPOST('limit','int'):$conf->liste_limit; +$sortfield=GETPOST("sortfield",'alpha'); +$sortorder=GETPOST("sortorder",'alpha'); +$page=GETPOST("page",'int'); +if (! $sortorder) $sortorder="ASC"; +if (! $sortfield) $sortfield="s.nom"; +if (empty($page) || $page == -1) { $page = 0; } +$offset = $limit * $page; +$pageprev = $page - 1; +$pagenext = $page + 1; + +// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context +$contextpage='thirdpartylist'; +/*if ($search_type == '1,3') { $contextpage='customerlist'; $type='c'; } +if ($search_type == '2,3') { $contextpage='prospectlist'; $type='p'; } +if ($search_type == '4') { $contextpage='supplierlist'; $type='f'; } +*/ +if ($type == 'c') { $contextpage='customerlist'; if ($search_type=='') $search_type='1,3'; } +if ($type == 'p') { $contextpage='prospectlist'; if ($search_type=='') $search_type='2,3'; } +if ($type == 'f') { $contextpage='supplierlist'; if ($search_type=='') $search_type='4'; } + +// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context +$hookmanager->initHooks(array($contextpage)); +$extrafields = new ExtraFields($db); + +// fetch optionals attributes and labels +$extralabels = $extrafields->fetch_name_optionals_label('societe'); +$search_array_options=$extrafields->getOptionalsFromPost($extralabels,'','search_'); + +// List of fields to search into when doing a "search in all" +$fieldstosearchall = array( + 's.nom'=>"ThirdPartyName", + 's.name_alias'=>"AliasNameShort", + 's.code_client'=>"CustomerCode", + 's.code_fournisseur'=>"SupplierCode", + 's.code_compta'=>"CustomerAccountancyCodeShort", + 's.code_compta_fournisseur'=>"SupplierAccountancyCodeShort", + 's.email'=>"EMail", + 's.url'=>"URL", + 's.tva_intra'=>"VATIntra", + 's.siren'=>"ProfId1", + 's.siret'=>"ProfId2", + 's.ape'=>"ProfId3", +); +if (($tmp = $langs->transnoentities("ProfId4".$mysoc->country_code)) && $tmp != "ProfId4".$mysoc->country_code && $tmp != '-') $fieldstosearchall['s.idprof4']='ProfId4'; +if (($tmp = $langs->transnoentities("ProfId5".$mysoc->country_code)) && $tmp != "ProfId5".$mysoc->country_code && $tmp != '-') $fieldstosearchall['s.idprof5']='ProfId5'; +if (($tmp = $langs->transnoentities("ProfId6".$mysoc->country_code)) && $tmp != "ProfId6".$mysoc->country_code && $tmp != '-') $fieldstosearchall['s.idprof6']='ProfId6'; +if (!empty($conf->barcode->enabled)) $fieldstosearchall['s.barcode']='Gencod'; + +// Define list of fields to show into list +$checkedcustomercode=(in_array($contextpage, array('thirdpartylist', 'customerlist', 'prospectlist')) ? 1 : 0); +$checkedsuppliercode=(in_array($contextpage, array('supplierlist')) ? 1 : 0); +$checkedcustomeraccountcode=(in_array($contextpage, array('customerlist')) ? 1 : 0); +$checkedsupplieraccountcode=(in_array($contextpage, array('supplierlist')) ? 1 : 0); +$checkedtypetiers=1; +$checkedprofid1=0; +$checkedprofid2=0; +$checkedprofid3=0; +$checkedprofid4=0; +$checkedprofid5=0; +$checkedprofid6=0; +//$checkedprofid4=((($tmp = $langs->transnoentities("ProfId4".$mysoc->country_code)) && $tmp != "ProfId4".$mysoc->country_code && $tmp != '-') ? 1 : 0); +//$checkedprofid5=((($tmp = $langs->transnoentities("ProfId5".$mysoc->country_code)) && $tmp != "ProfId5".$mysoc->country_code && $tmp != '-') ? 1 : 0); +//$checkedprofid6=((($tmp = $langs->transnoentities("ProfId6".$mysoc->country_code)) && $tmp != "ProfId6".$mysoc->country_code && $tmp != '-') ? 1 : 0); +$checkprospectlevel=(in_array($contextpage, array('prospectlist')) ? 1 : 0); +$checkstcomm=(in_array($contextpage, array('prospectlist')) ? 1 : 0); +$arrayfields=array( + 's.rowid'=>array('label'=>"TechnicalID", 'checked'=>($conf->global->MAIN_SHOW_TECHNICAL_ID?1:0), 'enabled'=>($conf->global->MAIN_SHOW_TECHNICAL_ID?1:0)), + 's.nom'=>array('label'=>"ThirdPartyName", 'checked'=>1), + 's.name_alias'=>array('label'=>"AliasNameShort", 'checked'=>1), + 's.barcode'=>array('label'=>"Gencod", 'checked'=>1, 'enabled'=>(! empty($conf->barcode->enabled))), + 's.code_client'=>array('label'=>"CustomerCodeShort", 'checked'=>$checkedcustomercode), + 's.code_fournisseur'=>array('label'=>"SupplierCodeShort", 'checked'=>$checkedsuppliercode, 'enabled'=>(! empty($conf->fournisseur->enabled))), + 's.code_compta'=>array('label'=>"CustomerAccountancyCodeShort", 'checked'=>$checkedcustomeraccountcode), + 's.code_compta_fournisseur'=>array('label'=>"SupplierAccountancyCodeShort", 'checked'=>$checkedsupplieraccountcode, 'enabled'=>(! empty($conf->fournisseur->enabled))), + 's.town'=>array('label'=>"Town", 'checked'=>1), + 's.zip'=>array('label'=>"Zip", 'checked'=>1), + 'state.nom'=>array('label'=>"State", 'checked'=>0), + 'region.nom'=>array('label'=>"Region", 'checked'=>0), + 'country.code_iso'=>array('label'=>"Country", 'checked'=>0), + 's.email'=>array('label'=>"Email", 'checked'=>0), + 's.url'=>array('label'=>"Url", 'checked'=>0), + 's.phone'=>array('label'=>"Phone", 'checked'=>1), + 'typent.code'=>array('label'=>"ThirdPartyType", 'checked'=>$checkedtypetiers), + 's.siren'=>array('label'=>"ProfId1Short", 'checked'=>$checkedprofid1), + 's.siret'=>array('label'=>"ProfId2Short", 'checked'=>$checkedprofid2), + 's.ape'=>array('label'=>"ProfId3Short", 'checked'=>$checkedprofid3), + 's.idprof4'=>array('label'=>"ProfId4Short", 'checked'=>$checkedprofid4), + 's.idprof5'=>array('label'=>"ProfId5Short", 'checked'=>$checkedprofid5), + 's.idprof6'=>array('label'=>"ProfId6Short", 'checked'=>$checkedprofid6), + 's.tva_intra'=>array('label'=>"VATIntra", 'checked'=>0), + 'customerorsupplier'=>array('label'=>'Nature', 'checked'=>1), + 's.fk_prospectlevel'=>array('label'=>"ProspectLevelShort", 'checked'=>$checkprospectlevel), + 's.fk_stcomm'=>array('label'=>"StatusProsp", 'checked'=>$checkstcomm), + 's.datec'=>array('label'=>"DateCreation", 'checked'=>0, 'position'=>500), + 's.tms'=>array('label'=>"DateModificationShort", 'checked'=>0, 'position'=>500), + 's.status'=>array('label'=>"Status", 'checked'=>1, 'position'=>1000), + 's.import_key'=>array('label'=>"ImportId", 'checked'=>0, 'position'=>1100), +); +// Extra fields +if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) +{ + foreach($extrafields->attribute_label as $key => $val) + { + if (! empty($extrafields->attribute_list[$key])) $arrayfields["ef.".$key]=array('label'=>$extrafields->attribute_label[$key], 'checked'=>(($extrafields->attribute_list[$key]<0)?0:1), 'position'=>$extrafields->attribute_pos[$key], 'enabled'=>(abs($extrafields->attribute_list[$key])!=3 && $extrafields->attribute_perms[$key])); + } +} + +$object = new Societe($db); + + +/* + * Actions + */ + +if (GETPOST('cancel','alpha')) { $action='list'; $massaction=''; } +if (! GETPOST('confirmmassaction','alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') { $massaction=''; } + +$parameters=array(); +$reshook=$hookmanager->executeHooks('doActions',$parameters, $object, $action); // Note that $action and $object may have been modified by some hooks +if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); + +if (empty($reshook)) +{ + // Selection of new fields + include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php'; + + // Did we click on purge search criteria ? + if (GETPOST('button_removefilter_x','alpha') || GETPOST('button_removefilter.x','alpha') || GETPOST('button_removefilter','alpha')) // All tests are required to be compatible with all browsers + { + $search_id=''; + $search_nom=''; + $search_alias=''; + $search_categ_cus=0; + $search_categ_sup=0; + $search_sale=''; + $search_barcode=""; + $search_customer_code=''; + $search_supplier_code=''; + $search_account_customer_code=''; + $search_account_supplier_code=''; + $search_town=""; + $search_zip=""; + $search_state=""; + $search_country=''; + $search_email=''; + $search_phone=''; + $search_url=''; + $search_idprof1=''; + $search_idprof2=''; + $search_idprof3=''; + $search_idprof4=''; + $search_idprof5=''; + $search_idprof6=''; + $search_vat=''; + $search_type=''; + $search_type_thirdparty=''; + $search_status=-1; + $search_stcomm=''; + $search_level_from=''; + $search_level_to=''; + $search_import_key=''; + $toselect=''; + $search_array_options=array(); + } + + // Mass actions + $objectclass='Societe'; + $objectlabel='ThirdParty'; + $permtoread = $user->rights->societe->lire; + $permtodelete = $user->rights->societe->supprimer; + $uploaddir = $conf->societe->dir_output; + include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php'; + + if ($action == 'setstcomm') + { + $object = new Client($db); + $result=$object->fetch(GETPOST('stcommsocid')); + $object->stcomm_id=dol_getIdFromCode($db, GETPOST('stcomm','alpha'), 'c_stcomm'); + $result=$object->update($object->id, $user); + if ($result < 0) setEventMessages($object->error,$object->errors,'errors'); + + $action=''; + } +} + +if ($search_status=='') $search_status=1; // always display active thirdparty first + + + +/* + * View + */ + +/* + REM: Rules on permissions to see thirdparties + Internal or External user + No permission to see customers => See nothing + Internal user socid=0 + Permission to see ALL customers => See all thirdparties + Internal user socid=0 + No permission to see ALL customers => See only thirdparties linked to user that are sale representative + External user socid=x + Permission to see ALL customers => Can see only himself + External user socid=x + No permission to see ALL customers => Can see only himself + */ + +$form=new Form($db); +$formother=new FormOther($db); +$companystatic=new Societe($db); +$formcompany=new FormCompany($db); +$prospectstatic=new Client($db); +$prospectstatic->client=2; +$prospectstatic->loadCacheOfProspStatus(); + + +$title=$langs->trans("ListOfThirdParties"); +if ($type == 'c' && (empty($search_type) || ($search_type == '1,3'))) $title=$langs->trans("ListOfCustomers"); +if ($type == 'p' && (empty($search_type) || ($search_type == '2,3'))) $title=$langs->trans("ListOfProspects"); +if ($type == 'f' && (empty($search_type) || ($search_type == '4'))) $title=$langs->trans("ListOfSuppliers"); + +// If both parameters are set, search for everything BETWEEN them +if ($search_level_from != '' && $search_level_to != '') +{ + // Ensure that these parameters are numbers + $search_level_from = (int) $search_level_from; + $search_level_to = (int) $search_level_to; + + // If from is greater than to, reverse orders + if ($search_level_from > $search_level_to) + { + $tmp = $search_level_to; + $search_level_to = $search_level_from; + $search_level_from = $tmp; + } + + // Generate the SQL request + $sortwhere = '(sortorder BETWEEN '.$search_level_from.' AND '.$search_level_to.') AS is_in_range'; +} +// If only "from" parameter is set, search for everything GREATER THAN it +else if ($search_level_from != '') +{ + // Ensure that this parameter is a number + $search_level_from = (int) $search_level_from; + + // Generate the SQL request + $sortwhere = '(sortorder >= '.$search_level_from.') AS is_in_range'; +} +// If only "to" parameter is set, search for everything LOWER THAN it +else if ($search_level_to != '') +{ + // Ensure that this parameter is a number + $search_level_to = (int) $search_level_to; + + // Generate the SQL request + $sortwhere = '(sortorder <= '.$search_level_to.') AS is_in_range'; +} +// If no parameters are set, dont search for anything +else +{ + $sortwhere = '0 as is_in_range'; +} + +// Select every potentiels, and note each potentiels which fit in search parameters +dol_syslog('societe/list.php',LOG_DEBUG); +$sql = "SELECT code, label, sortorder, ".$sortwhere; +$sql.= " FROM ".MAIN_DB_PREFIX."c_prospectlevel"; +$sql.= " WHERE active > 0"; +$sql.= " ORDER BY sortorder"; + +$resql = $db->query($sql); +if ($resql) +{ + $tab_level = array(); + $search_levels = array(); + + while ($obj = $db->fetch_object($resql)) + { + // Compute level text + $level=$langs->trans($obj->code); + if ($level == $obj->code) $level=$langs->trans($obj->label); + + // Put it in the array sorted by sortorder + $tab_level[$obj->sortorder] = $level; + + // If this potentiel fit in parameters, add its code to the $search_levels array + if ($obj->is_in_range == 1) + { + $search_levels[] = '"'.preg_replace('[^A-Za-z0-9_-]', '', $obj->code).'"'; + } + } + + // Implode the $search_levels array so that it can be use in a "IN (...)" where clause. + // If no paramters was set, $search_levels will be empty + $search_levels = implode(',', $search_levels); +} +else dol_print_error($db); + +$sql = "SELECT s.rowid, s.nom as name, s.name_alias, s.barcode, s.town, s.zip, s.datec, s.code_client, s.code_fournisseur, s.logo,"; +$sql.= " st.libelle as stcomm, s.fk_stcomm as stcomm_id, s.fk_prospectlevel, s.prefix_comm, s.client, s.fournisseur, s.canvas, s.status as status,"; +$sql.= " s.email, s.phone, s.url, s.siren as idprof1, s.siret as idprof2, s.ape as idprof3, s.idprof4 as idprof4, s.idprof5 as idprof5, s.idprof6 as idprof6, s.tva_intra, s.fk_pays,"; +$sql.= " s.tms as date_update, s.datec as date_creation,"; +$sql.= " s.code_compta,s.code_compta_fournisseur,"; +$sql.= " typent.code as typent_code,"; +$sql.= " state.code_departement as state_code, state.nom as state_name,"; +$sql.= " region.code_region as region_code, region.nom as region_name"; +// We'll need these fields in order to filter by sale (including the case where the user can only see his prospects) +if ($search_sale) $sql .= ", sc.fk_soc, sc.fk_user"; +// We'll need these fields in order to filter by categ +if ($search_categ_cus) $sql .= ", cc.fk_categorie, cc.fk_soc"; +if ($search_categ_sup) $sql .= ", cs.fk_categorie, cs.fk_soc"; +// Add fields from extrafields +foreach ($extrafields->attribute_label as $key => $val) $sql.=($extrafields->attribute_type[$key] != 'separate' ? ",ef.".$key.' as options_'.$key : ''); +// Add fields from hooks +$parameters=array(); +$reshook=$hookmanager->executeHooks('printFieldListSelect',$parameters); // Note that $action and $object may have been modified by hook +$sql.=$hookmanager->resPrint; +$sql.= " FROM ".MAIN_DB_PREFIX."societe as s"; +if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe_extrafields as ef on (s.rowid = ef.fk_object)"; +$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_country as country on (country.rowid = s.fk_pays)"; +$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_typent as typent on (typent.id = s.fk_typent)"; +$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_departements as state on (state.rowid = s.fk_departement)"; +$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_regions as region on (region. code_region = state.fk_region)"; +// We'll need this table joined to the select in order to filter by categ +if (! empty($search_categ_cus)) $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX."categorie_societe as cc ON s.rowid = cc.fk_soc"; // We'll need this table joined to the select in order to filter by categ +if (! empty($search_categ_sup)) $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX."categorie_fournisseur as cs ON s.rowid = cs.fk_soc"; // We'll need this table joined to the select in order to filter by categ +$sql.= " ,".MAIN_DB_PREFIX."c_stcomm as st"; +// We'll need this table joined to the select in order to filter by sale +if ($search_sale || (!$user->rights->societe->client->voir && !$socid)) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; +$sql.= " WHERE s.fk_stcomm = st.id"; +$sql.= " AND s.entity IN (".getEntity('societe').")"; +if (! $user->rights->societe->client->voir && ! $socid) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id; +if ($socid) $sql.= " AND s.rowid = ".$socid; +if ($search_sale) $sql.= " AND s.rowid = sc.fk_soc"; // Join for the needed table to filter by sale +if (! $user->rights->fournisseur->lire) $sql.=" AND (s.fournisseur <> 1 OR s.client <> 0)"; // client=0, fournisseur=0 must be visible +if ($search_sale) $sql.= " AND sc.fk_user = ".$db->escape($search_sale); +if ($search_categ_cus > 0) $sql.= " AND cc.fk_categorie = ".$db->escape($search_categ_cus); +if ($search_categ_sup > 0) $sql.= " AND cs.fk_categorie = ".$db->escape($search_categ_sup); +if ($search_categ_cus == -2) $sql.= " AND cc.fk_categorie IS NULL"; +if ($search_categ_sup == -2) $sql.= " AND cs.fk_categorie IS NULL"; + +if ($search_all) $sql.= natural_search(array_keys($fieldstosearchall), $search_all); +if (strlen($search_cti)) $sql.= natural_search('s.phone', $search_cti); + +if ($search_id > 0) $sql.= natural_search("s.rowid",$search_id,1); +if ($search_nom) $sql.= natural_search("s.nom",$search_nom); +if ($search_alias) $sql.= natural_search("s.name_alias",$search_alias); +if ($search_nom_only) $sql.= natural_search("s.nom",$search_nom_only); +if ($search_customer_code) $sql.= natural_search("s.code_client",$search_customer_code); +if ($search_supplier_code) $sql.= natural_search("s.code_fournisseur",$search_supplier_code); +if ($search_account_customer_code) $sql.= natural_search("s.code_compta",$search_account_customer_code); +if ($search_account_supplier_code) $sql.= natural_search("s.code_compta_fournisseur",$search_account_supplier_code); +if ($search_town) $sql.= natural_search("s.town",$search_town); +if (strlen($search_zip)) $sql.= natural_search("s.zip",$search_zip); +if ($search_state) $sql.= natural_search("state.nom",$search_state); +if ($search_region) $sql.= natural_search("region.nom",$search_region); +if ($search_country) $sql .= " AND s.fk_pays IN (".$search_country.')'; +if ($search_email) $sql.= natural_search("s.email",$search_email); +if (strlen($search_phone)) $sql.= natural_search("s.phone", $search_phone); +if ($search_url) $sql.= natural_search("s.url",$search_url); +if (strlen($search_idprof1)) $sql.= natural_search("s.siren",$search_idprof1); +if (strlen($search_idprof2)) $sql.= natural_search("s.siret",$search_idprof2); +if (strlen($search_idprof3)) $sql.= natural_search("s.ape",$search_idprof3); +if (strlen($search_idprof4)) $sql.= natural_search("s.idprof4",$search_idprof4); +if (strlen($search_idprof5)) $sql.= natural_search("s.idprof5",$search_idprof5); +if (strlen($search_idprof6)) $sql.= natural_search("s.idprof6",$search_idprof6); +if (strlen($search_vat)) $sql.= natural_search("s.tva_intra",$search_vat); +// Filter on type of thirdparty +if ($search_type > 0 && in_array($search_type,array('1,3','2,3'))) $sql .= " AND s.client IN (".$db->escape($search_type).")"; +if ($search_type > 0 && in_array($search_type,array('4'))) $sql .= " AND s.fournisseur = 1"; +if ($search_type == '0') $sql .= " AND s.client = 0 AND s.fournisseur = 0"; +if ($search_status!='' && $search_status >= 0) $sql .= " AND s.status = ".$db->escape($search_status); +if (!empty($conf->barcode->enabled) && $search_barcode) $sql.= natural_search("s.barcode", $search_barcode); +if ($search_type_thirdparty) $sql .= " AND s.fk_typent IN (".$search_type_thirdparty.')'; +if ($search_levels) $sql .= " AND s.fk_prospectlevel IN (".$search_levels.')'; +if ($search_stcomm != '' && $search_stcomm != -2) $sql.= natural_search("s.fk_stcomm",$search_stcomm,2); +if ($search_import_key) $sql.= natural_search("s.import_key",$search_import_key); +// Add where from extra fields +include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php'; + +// Add where from hooks +$parameters=array(); +$reshook=$hookmanager->executeHooks('printFieldListWhere',$parameters); // Note that $action and $object may have been modified by hook +$sql.=$hookmanager->resPrint; + +$sql.= $db->order($sortfield,$sortorder); + +// Count total nb of records +$nbtotalofrecords = ''; +if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) +{ + $result = $db->query($sql); + $nbtotalofrecords = $db->num_rows($result); +} + +$sql.= $db->plimit($limit+1, $offset); + +$resql = $db->query($sql); +if (! $resql) +{ + dol_print_error($db); + exit; +} + +$num = $db->num_rows($resql); + +$arrayofselected=is_array($toselect)?$toselect:array(); + +if ($num == 1 && ! empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && ($search_all != '' || $search_cti != '') && $action != 'list') +{ + $obj = $db->fetch_object($resql); + $id = $obj->rowid; + header("Location: ".DOL_URL_ROOT.'/societe/card.php?socid='.$id); + exit; +} + +$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas'; +llxHeader('',$langs->trans("ThirdParty"),$help_url); + +$param=''; +if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage; +if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit; +if ($search_all != '') $param = "&sall=".urlencode($search_all); +if ($sall != '') $param .= "&sall=".urlencode($sall); +if ($search_categ_cus > 0) $param.='&search_categ_cus='.urlencode($search_categ_cus); +if ($search_categ_sup > 0) $param.='&search_categ_sup='.urlencode($search_categ_sup); +if ($search_sale > 0) $param.='&search_sale='.urlencode($search_sale); +if ($search_id > 0) $param.= "&search_id=".urlencode($search_id); +if ($search_nom != '') $param.= "&search_nom=".urlencode($search_nom); +if ($search_alias != '') $param.= "&search_alias=".urlencode($search_alias); +if ($search_town != '') $param.= "&search_town=".urlencode($search_town); +if ($search_zip != '') $param.= "&search_zip=".urlencode($search_zip); +if ($search_phone != '') $param.= "&search_phone=".urlencode($search_phone); +if ($search_email != '') $param.= "&search_email=".urlencode($search_email); +if ($search_url != '') $param.= "&search_url=".urlencode($search_url); +if ($search_state != '') $param.= "&search_state=".urlencode($search_state); +if ($search_country != '') $param.= "&search_country=".urlencode($search_country); +if ($search_customer_code != '') $param.= "&search_customer_code=".urlencode($search_customer_code); +if ($search_supplier_code != '') $param.= "&search_supplier_code=".urlencode($search_supplier_code); +if ($search_account_customer_code != '') $param.= "&search_account_customer_code=".urlencode($search_account_customer_code); +if ($search_account_supplier_code != '') $param.= "&search_account_supplier_code=".urlencode($search_account_supplier_code); +if ($search_barcode != '') $param.= "&search_barcode=".urlencode($search_barcode); +if ($search_idprof1 != '') $param.= '&search_idprof1='.urlencode($search_idprof1); +if ($search_idprof2 != '') $param.= '&search_idprof2='.urlencode($search_idprof2); +if ($search_idprof3 != '') $param.= '&search_idprof3='.urlencode($search_idprof3); +if ($search_idprof4 != '') $param.= '&search_idprof4='.urlencode($search_idprof4); +if ($search_idprof5 != '') $param.= '&search_idprof5='.urlencode($search_idprof5); +if ($search_idprof6 != '') $param.= '&search_idprof6='.urlencode($search_idprof6); +if ($search_vat != '') $param.= '&search_vat='.urlencode($search_vat); +if ($search_type_thirdparty != '') $param.='&search_type_thirdparty='.urlencode($search_type_thirdparty); +if ($search_type != '') $param.='&search_type='.urlencode($search_type); +if ($optioncss != '') $param.='&optioncss='.urlencode($optioncss); +if ($search_status != '') $param.='&search_status='.urlencode($search_status); +if ($search_stcomm != '') $param.='&search_stcomm='.urlencode($search_stcomm); +if ($search_level_from != '') $param.='&search_level_from='.urlencode($search_level_from); +if ($search_level_to != '') $param.='&search_level_to='.urlencode($search_level_to); +if ($search_import_key != '') $param.='&search_import_key='.urlencode($search_import_key); +if ($type != '') $param.='&type='.urlencode($type); +// Add $param from extra fields +include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php'; + +// Show delete result message +if (GETPOST('delsoc')) +{ + setEventMessages($langs->trans("CompanyDeleted",GETPOST('delsoc')), null, 'mesgs'); +} + +// List of mass actions available +$arrayofmassactions = array( + 'presend'=>$langs->trans("SendByMail"), +// 'builddoc'=>$langs->trans("PDFMerge"), +); +//if($user->rights->societe->creer) $arrayofmassactions['createbills']=$langs->trans("CreateInvoiceForThisCustomer"); +if ($user->rights->societe->supprimer) $arrayofmassactions['predelete']=$langs->trans("Delete"); +if (GETPOST('nomassaction','int') || in_array($massaction, array('presend','predelete'))) $arrayofmassactions=array(); +$massactionbutton=$form->selectMassAction('', $arrayofmassactions); + +print '
'; +if ($optioncss != '') print ''; +print ''; +print ''; +print ''; +print ''; +print ''; + +print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'title_companies', 0, '', '', $limit); + +$langs->load("other"); +$textprofid=array(); +foreach(array(1,2,3,4,5,6) as $key) +{ + $label=$langs->transnoentities("ProfId".$key.$mysoc->country_code); + $textprofid[$key]=''; + if ($label != "ProfId".$key.$mysoc->country_code) + { // Get only text between () + if (preg_match('/\((.*)\)/i',$label,$reg)) $label=$reg[1]; + $textprofid[$key]=$langs->trans("ProfIdShortDesc",$key,$mysoc->country_code,$label); + } +} + +$topicmail="Information"; +$modelmail="thirdparty"; +$objecttmp=new Societe($db); +$trackid='thi'.$object->id; +include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php'; + +if ($search_all) +{ + foreach($fieldstosearchall as $key => $val) $fieldstosearchall[$key]=$langs->trans($val); + print $langs->trans("FilterOnInto", $search_all) . join(', ',$fieldstosearchall); +} + +// Filter on categories +$moreforfilter=''; +if (empty($type) || $type == 'c' || $type == 'p') +{ + if (! empty($conf->categorie->enabled)) + { + require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php'; + $moreforfilter.='
'; + $moreforfilter.=$langs->trans('CustomersProspectsCategoriesShort').': '; + $moreforfilter.=$formother->select_categories('customer', $search_categ_cus, 'search_categ_cus', 1, $langs->trans('CustomersProspectsCategoriesShort')); + $moreforfilter.='
'; + } +} +if (empty($type) || $type == 'f') +{ + if (! empty($conf->categorie->enabled)) + { + require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php'; + $moreforfilter.='
'; + $moreforfilter.=$langs->trans('SuppliersCategoriesShort').': '; + $moreforfilter.=$formother->select_categories('supplier',$search_categ_sup,'search_categ_sup',1); + $moreforfilter.='
'; + } +} + +// If the user can view prospects other than his' +if ($user->rights->societe->client->voir || $socid) +{ + $moreforfilter.='
'; + $moreforfilter.=$langs->trans('SalesRepresentatives'). ': '; + $moreforfilter.=$formother->select_salesrepresentatives($search_sale,'search_sale',$user, 0, 1, 'maxwidth300'); + $moreforfilter.='
'; +} +if ($moreforfilter) +{ + print '
'; + print $moreforfilter; + $parameters=array('type'=>$type); + $reshook=$hookmanager->executeHooks('printFieldPreListTitle',$parameters); // Note that $action and $object may have been modified by hook + print $hookmanager->resPrint; + print '
'; +} + +$varpage=empty($contextpage)?$_SERVER["PHP_SELF"]:$contextpage; +$selectedfields=$form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields +if ($massactionbutton) $selectedfields.=$form->showCheckAddButtons('checkforselect', 1); + +if (empty($arrayfields['customerorsupplier']['checked'])) print ''; + +print '
'; +print ''."\n"; + +// Fields title search +print ''; +if (! empty($arrayfields['s.rowid']['checked'])) +{ + print ''; +} +if (! empty($arrayfields['s.nom']['checked'])) +{ + print ''; +} +if (! empty($arrayfields['s.name_alias']['checked'])) +{ + print ''; +} +// Barcode +if (! empty($arrayfields['s.barcode']['checked'])) +{ + print ''; +} +// Customer code +if (! empty($arrayfields['s.code_client']['checked'])) +{ + print ''; +} +// Supplier code +if (! empty($arrayfields['s.code_fournisseur']['checked'])) +{ + print ''; +} +// Account Customer code +if (! empty($arrayfields['s.code_compta']['checked'])) +{ + print ''; +} +// Account Supplier code +if (! empty($arrayfields['s.code_compta_fournisseur']['checked'])) +{ + print ''; +} +// Town +if (! empty($arrayfields['s.town']['checked'])) +{ + print ''; +} +// Zip +if (! empty($arrayfields['s.zip']['checked'])) +{ + print ''; +} +// State +if (! empty($arrayfields['state.nom']['checked'])) +{ + print ''; +} +// Region +if (! empty($arrayfields['region.nom']['checked'])) +{ + print ''; +} +// Country +if (! empty($arrayfields['country.code_iso']['checked'])) +{ + print ''; +} +// Company type +if (! empty($arrayfields['typent.code']['checked'])) +{ + print ''; +} +if (! empty($arrayfields['s.email']['checked'])) +{ + // Email + print ''; +} +if (! empty($arrayfields['s.phone']['checked'])) +{ + // Phone + print ''; +} +if (! empty($arrayfields['s.url']['checked'])) +{ + // Url + print ''; +} +if (! empty($arrayfields['s.siren']['checked'])) +{ + // IdProf1 + print ''; +} +if (! empty($arrayfields['s.siret']['checked'])) +{ + // IdProf2 + print ''; +} +if (! empty($arrayfields['s.ape']['checked'])) +{ + // IdProf3 + print ''; +} +if (! empty($arrayfields['s.idprof4']['checked'])) +{ + // IdProf4 + print ''; +} +if (! empty($arrayfields['s.idprof5']['checked'])) +{ + // IdProf5 + print ''; +} +if (! empty($arrayfields['s.idprof6']['checked'])) +{ + // IdProf6 + print ''; +} +if (! empty($arrayfields['s.tva_intra']['checked'])) +{ + // Vat number + print ''; +} + +// Type (customer/prospect/supplier) +if (! empty($arrayfields['customerorsupplier']['checked'])) +{ + print ''; +} +if (! empty($arrayfields['s.fk_prospectlevel']['checked'])) +{ + // Prospect level + print ''; +} + +if (! empty($arrayfields['s.fk_stcomm']['checked'])) +{ + // Prospect status + print ''; +} +// Extra fields +include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php'; + +// Fields from hook +$parameters=array('arrayfields'=>$arrayfields); +$reshook=$hookmanager->executeHooks('printFieldListOption',$parameters); // Note that $action and $object may have been modified by hook +print $hookmanager->resPrint; +// Date creation +if (! empty($arrayfields['s.datec']['checked'])) +{ + print ''; +} +// Date modification +if (! empty($arrayfields['s.tms']['checked'])) +{ + print ''; +} +// Status +if (! empty($arrayfields['s.status']['checked'])) +{ + print ''; +} +if (! empty($arrayfields['s.import_key']['checked'])) +{ + print ''; +} +// Action column +print ''; + +print "\n"; + +print ''; +if (! empty($arrayfields['s.rowid']['checked'])) print_liste_field_titre($arrayfields['s.rowid']['label'], $_SERVER["PHP_SELF"],"s.rowid","",$param,"",$sortfield,$sortorder); +if (! empty($arrayfields['s.nom']['checked'])) print_liste_field_titre($arrayfields['s.nom']['label'], $_SERVER["PHP_SELF"],"s.nom","",$param,"",$sortfield,$sortorder); +if (! empty($arrayfields['s.name_alias']['checked'])) print_liste_field_titre($arrayfields['s.name_alias']['label'], $_SERVER["PHP_SELF"],"s.name_alias","",$param,"",$sortfield,$sortorder); +if (! empty($arrayfields['s.barcode']['checked'])) print_liste_field_titre($arrayfields['s.barcode']['label'], $_SERVER["PHP_SELF"], "s.barcode",$param,'','',$sortfield,$sortorder); +if (! empty($arrayfields['s.code_client']['checked'])) print_liste_field_titre($arrayfields['s.code_client']['label'],$_SERVER["PHP_SELF"],"s.code_client","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.code_fournisseur']['checked'])) print_liste_field_titre($arrayfields['s.code_fournisseur']['label'],$_SERVER["PHP_SELF"],"s.code_fournisseur","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.code_compta']['checked'])) print_liste_field_titre($arrayfields['s.code_compta']['label'],$_SERVER["PHP_SELF"],"s.code_compta","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.code_compta_fournisseur']['checked'])) print_liste_field_titre($arrayfields['s.code_compta_fournisseur']['label'],$_SERVER["PHP_SELF"],"s.code_compta_fournisseur","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.town']['checked'])) print_liste_field_titre($arrayfields['s.town']['label'],$_SERVER["PHP_SELF"],"s.town","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.zip']['checked'])) print_liste_field_titre($arrayfields['s.zip']['label'],$_SERVER["PHP_SELF"],"s.zip","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['state.nom']['checked'])) print_liste_field_titre($arrayfields['state.nom']['label'],$_SERVER["PHP_SELF"],"state.nom","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['region.nom']['checked'])) print_liste_field_titre($arrayfields['region.nom']['label'],$_SERVER["PHP_SELF"],"region.nom","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['country.code_iso']['checked'])) print_liste_field_titre($arrayfields['country.code_iso']['label'],$_SERVER["PHP_SELF"],"country.code_iso","",$param,'align="center"',$sortfield,$sortorder); +if (! empty($arrayfields['typent.code']['checked'])) print_liste_field_titre($arrayfields['typent.code']['label'],$_SERVER["PHP_SELF"],"typent.code","",$param,'align="center"',$sortfield,$sortorder); +if (! empty($arrayfields['s.email']['checked'])) print_liste_field_titre($arrayfields['s.email']['label'],$_SERVER["PHP_SELF"],"s.email","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.phone']['checked'])) print_liste_field_titre($arrayfields['s.phone']['label'],$_SERVER["PHP_SELF"],"s.phone","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.url']['checked'])) print_liste_field_titre($arrayfields['s.url']['label'],$_SERVER["PHP_SELF"],"s.url","",$param,'',$sortfield,$sortorder); +if (! empty($arrayfields['s.siren']['checked'])) print_liste_field_titre($form->textwithpicto($langs->trans("ProfId1Short"),$textprofid[1],1,0),$_SERVER["PHP_SELF"],"s.siren","",$param,'class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.siret']['checked'])) print_liste_field_titre($form->textwithpicto($langs->trans("ProfId2Short"),$textprofid[2],1,0),$_SERVER["PHP_SELF"],"s.siret","",$param,'class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.ape']['checked'])) print_liste_field_titre($form->textwithpicto($langs->trans("ProfId3Short"),$textprofid[3],1,0),$_SERVER["PHP_SELF"],"s.ape","",$param,'class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.idprof4']['checked'])) print_liste_field_titre($form->textwithpicto($langs->trans("ProfId4Short"),$textprofid[4],1,0),$_SERVER["PHP_SELF"],"s.idprof4","",$param,'class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.idprof5']['checked'])) print_liste_field_titre($form->textwithpicto($langs->trans("ProfId5Short"),$textprofid[4],1,0),$_SERVER["PHP_SELF"],"s.idprof5","",$param,'class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.idprof6']['checked'])) print_liste_field_titre($form->textwithpicto($langs->trans("ProfId6Short"),$textprofid[4],1,0),$_SERVER["PHP_SELF"],"s.idprof6","",$param,'class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.tva_intra']['checked'])) print_liste_field_titre($arrayfields['s.tva_intra']['label'],$_SERVER["PHP_SELF"],"s.tva_intra","",$param,'class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['customerorsupplier']['checked'])) print_liste_field_titre(''); // type of customer +if (! empty($arrayfields['s.fk_prospectlevel']['checked'])) print_liste_field_titre($arrayfields['s.fk_prospectlevel']['label'],$_SERVER["PHP_SELF"],"s.fk_prospectlevel","",$param,'align="center"',$sortfield,$sortorder); +if (! empty($arrayfields['s.fk_stcomm']['checked'])) print_liste_field_titre($arrayfields['s.fk_stcomm']['label'],$_SERVER["PHP_SELF"],"s.fk_stcomm","",$param,'align="center"',$sortfield,$sortorder); +// Extra fields +include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php'; +// Hook fields +$parameters=array('arrayfields'=>$arrayfields,'param'=>$param,'sortfield'=>$sortfield,'sortorder'=>$sortorder); +$reshook=$hookmanager->executeHooks('printFieldListTitle',$parameters); // Note that $action and $object may have been modified by hook +print $hookmanager->resPrint; +if (! empty($arrayfields['s.datec']['checked'])) print_liste_field_titre($arrayfields['s.datec']['label'],$_SERVER["PHP_SELF"],"s.datec","",$param,'align="center" class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.tms']['checked'])) print_liste_field_titre($arrayfields['s.tms']['label'],$_SERVER["PHP_SELF"],"s.tms","",$param,'align="center" class="nowrap"',$sortfield,$sortorder); +if (! empty($arrayfields['s.status']['checked'])) print_liste_field_titre($arrayfields['s.status']['label'],$_SERVER["PHP_SELF"],"s.status","",$param,'align="center"',$sortfield,$sortorder); +if (! empty($arrayfields['s.import_key']['checked'])) print_liste_field_titre($arrayfields['s.import_key']['label'],$_SERVER["PHP_SELF"],"s.import_key","",$param,'align="center"',$sortfield,$sortorder); +print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"],"",'','','align="center"',$sortfield,$sortorder,'maxwidthsearch '); +print "\n"; + + +$i = 0; +$totalarray=array(); +while ($i < min($num, $limit)) +{ + $obj = $db->fetch_object($resql); + + $companystatic->id=$obj->rowid; + $companystatic->name=$obj->name; + $companystatic->name_alias=$obj->name_alias; + $companystatic->logo=$obj->logo; + $companystatic->canvas=$obj->canvas; + $companystatic->client=$obj->client; + $companystatic->status=$obj->status; + $companystatic->email=$obj->email; + $companystatic->fournisseur=$obj->fournisseur; + $companystatic->code_client=$obj->code_client; + $companystatic->code_fournisseur=$obj->code_fournisseur; + + $companystatic->code_compta_client=$obj->code_compta; + $companystatic->code_compta_fournisseur=$obj->code_compta_fournisseur; + + $companystatic->fk_prospectlevel=$obj->fk_prospectlevel; + + print ''; + if (! empty($arrayfields['s.rowid']['checked'])) + { + print '\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.nom']['checked'])) + { + $savalias = $obj->name_alias; + if (! empty($arrayfields['s.name_alias']['checked'])) $companystatic->name_alias=''; + print '\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.name_alias']['checked'])) + { + print '\n"; + if (! $i) $totalarray['nbfield']++; + } + // Barcode + if (! empty($arrayfields['s.barcode']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Customer code + if (! empty($arrayfields['s.code_client']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Supplier code + if (! empty($arrayfields['s.code_fournisseur']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Account customer code + if (! empty($arrayfields['s.code_compta']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Account supplier code + if (! empty($arrayfields['s.code_compta_fournisseur']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Town + if (! empty($arrayfields['s.town']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + // Zip + if (! empty($arrayfields['s.zip']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + // State + if (! empty($arrayfields['state.nom']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + // Region + if (! empty($arrayfields['region.nom']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + // Country + if (! empty($arrayfields['country.code_iso']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Type ent + if (! empty($arrayfields['typent.code']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.email']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.phone']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.url']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.siren']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.siret']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.ape']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.idprof4']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.idprof5']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.idprof6']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.tva_intra']['checked'])) + { + print "\n"; + if (! $i) $totalarray['nbfield']++; + } + // Type + if (! empty($arrayfields['customerorsupplier']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + + if (! empty($arrayfields['s.fk_prospectlevel']['checked'])) + { + // Prospect level + print '"; + if (! $i) $totalarray['nbfield']++; + } + + if (! empty($arrayfields['s.fk_stcomm']['checked'])) + { + // Prospect status + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Extra fields + include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php'; + // Fields from hook + $parameters=array('arrayfields'=>$arrayfields, 'obj'=>$obj); + $reshook=$hookmanager->executeHooks('printFieldListValue',$parameters); // Note that $action and $object may have been modified by hook + print $hookmanager->resPrint; + // Date creation + if (! empty($arrayfields['s.datec']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Date modification + if (! empty($arrayfields['s.tms']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + // Status + if (! empty($arrayfields['s.status']['checked'])) + { + print ''; + if (! $i) $totalarray['nbfield']++; + } + if (! empty($arrayfields['s.import_key']['checked'])) + { + print '\n"; + if (! $i) $totalarray['nbfield']++; + } + + // Action column + print ''; + if (! $i) $totalarray['nbfield']++; + + print ''."\n"; + $i++; +} + +$db->free($resql); + +$parameters=array('arrayfields'=>$arrayfields, 'sql'=>$sql); +$reshook=$hookmanager->executeHooks('printFieldListFooter',$parameters); // Note that $action and $object may have been modified by hook +print $hookmanager->resPrint; + +print "
'; + print ''; + print ''; + if (! empty($search_nom_only) && empty($search_nom)) $search_nom=$search_nom_only; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print $form->select_country($search_country,'search_country','',0,'maxwidth100'); + print ''; + print $form->selectarray("search_type_thirdparty", $formcompany->typent_array(0), $search_type_thirdparty, 0, 0, 0, '', 0, 0, 0, (empty($conf->global->SOCIETE_SORT_ON_TYPEENT)?'ASC':$conf->global->SOCIETE_SORT_ON_TYPEENT)); + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + print ''; + if ($type != '') print ''; + print ''; + $options_from = ''; // Generate in $options_from the list of each option sorted + foreach ($tab_level as $tab_level_sortorder => $tab_level_label) + { + $options_from .= ''; + } + array_reverse($tab_level, true); // Reverse the list + $options_to = ''; // Generate in $options_to the list of each option sorted in the reversed order + foreach ($tab_level as $tab_level_sortorder => $tab_level_label) + { + $options_to .= ''; + } + + // Print these two select + print $langs->trans("From").' '; + print ' '; + print $langs->trans("to").' '; + + print ''; + $arraystcomm=array(); + foreach($prospectstatic->cacheprospectstatus as $key => $val) + { + $arraystcomm[$val['id']]=($langs->trans("StatusProspect".$val['id']) != "StatusProspect".$val['id'] ? $langs->trans("StatusProspect".$val['id']) : $val['label']); + } + print $form->selectarray('search_stcomm', $arraystcomm, $search_stcomm, -2); + print ''; + print ''; + print ''; + print $form->selectarray('search_status', array('0'=>$langs->trans('ActivityCeased'),'1'=>$langs->trans('InActivity')), $search_status, 1); + print ''; + print ''; + print ''; +$searchpicto=$form->showFilterButtons(); +print $searchpicto; +print '
'; + print $obj->rowid; + print "'; + print $obj->name; + print "'; + print $companystatic->name_alias; + print "'.$obj->barcode.''.$obj->code_client.''.$obj->code_fournisseur.''.$obj->code_compta.''.$obj->code_compta_fournisseur.'".$obj->town."".$obj->zip."".$obj->state_name."".$obj->region_name."'; + $tmparray=getCountry($obj->fk_pays,'all'); + print $tmparray['label']; + print ''; + if (! is_array($typenArray) || count($typenArray)==0) $typenArray = $formcompany->typent_array(1); + print $typenArray[$obj->typent_code]; + print '".$obj->email."".$obj->phone."".$obj->url."".$obj->idprof1."".$obj->idprof2."".$obj->idprof3."".$obj->idprof4."".$obj->idprof5."".$obj->idprof6."".$obj->tva_intra."'; + $s=''; + if (($obj->client==1 || $obj->client==3) && empty($conf->global->SOCIETE_DISABLE_CUSTOMERS)) + { + $companystatic->name=$langs->trans("Customer"); + $companystatic->name_alias=''; + $s.=$companystatic->getNomUrl(0,'customer',0,1); + } + if (($obj->client==2 || $obj->client==3) && empty($conf->global->SOCIETE_DISABLE_PROSPECTS)) + { + if ($s) $s.=" / "; + $companystatic->name=$langs->trans("Prospect"); + $companystatic->name_alias=''; + $s.=$companystatic->getNomUrl(0,'prospect',0,1); + } + if (! empty($conf->fournisseur->enabled) && $obj->fournisseur) + { + if ($s) $s.=" / "; + $companystatic->name=$langs->trans("Supplier"); + $companystatic->name_alias=''; + $s.=$companystatic->getNomUrl(0,'supplier',0,1); + } + print $s; + print ''; + print $companystatic->getLibProspLevel(); + print "
'; + print '
'.$companystatic->LibProspCommStatut($obj->stcomm_id,2,$prospectstatic->cacheprospectstatus[$obj->stcomm_id]['label']); + print '
-
'; + foreach($prospectstatic->cacheprospectstatus as $key => $val) + { + $titlealt='default'; + if (! empty($val['code']) && ! in_array($val['code'], array('ST_NO', 'ST_NEVER', 'ST_TODO', 'ST_PEND', 'ST_DONE'))) $titlealt=$val['label']; + if ($obj->stcomm_id != $val['id']) print ''.img_action($titlealt,$val['code']).''; + } + print '
'; + print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser'); + print ''; + print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser'); + print ''.$companystatic->getLibStatut(3).''; + print $obj->import_key; + print "'; + if ($massactionbutton || $massaction) // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined + { + $selected=0; + if (in_array($obj->rowid, $arrayofselected)) $selected=1; + print ''; + } + print '
"; +print "
"; + +print '
'; + +llxFooter(); +$db->close(); diff --git a/htdocs/takepos/dev/img/README.md b/htdocs/takepos/dev/img/README.md new file mode 100644 index 00000000000..5cd4c76d010 --- /dev/null +++ b/htdocs/takepos/dev/img/README.md @@ -0,0 +1,53 @@ +Source images +============= + +Used to generate icons and publication assets. + +Icons +----- + +### Dolibarr + +These resides in the [/img](../../img) directory. + +#### Small + +Required. +Name must begin by ```object_```. + +- Sample: ![object_takepos.png](../../img/object_takepos.png) [object_takepos.png](../../img/object_takepos.png) +- Size: 14×14 pixels +- Type: PNG + +#### Large + +Optional. + +- Sample: ![takepos.png](../../img/takepos.png) [takepos.png](../../img/takepos.png) +- Size: 32×32 pixels +- Type: PNG + +### Dolistore + +Designed to fit a 512×512 icon + publisher branding. + +- Size: 704×704 +- Type: PNG + +Export to 512×512 + +### Transifex + +- Size: 96×96 +- Type: PNG + +### Others + +To be on the safe side, you may also want to generate all popular sizes: +- 16×16 +- 32×32 +- 48×48 +- 64×64 +- 128×128 +- 256×256 +- 512×512 diff --git a/htdocs/takepos/dev/img/gfdl-129x44.png b/htdocs/takepos/dev/img/gfdl-129x44.png new file mode 100644 index 0000000000000000000000000000000000000000..f2bacfd179a99f051654eaa6ba30089dd8691d7a GIT binary patch literal 4709 zcmV-r5}NIaP)00004b3#c}2nYxW zd%dU$Ce+szoV9OJ5UN#164pJ za0WO590CqYl2p=>Ff$P7r^@&6|A`4W3~T|`N|IF5`l0|F2QD6e^`*?6HSvE?zuzWy zyMy#Y+3fr|ot#{w$8|vvh>MLRF(HQFAT4@*Ao`#{g7ksTbDaj8&CYi}{6cX_1=ZDc z)YjEgS$PJ#-O--t24Fq#t|UnZ!Knn_0@G$(KZf-mukiof_TYiBsGJ!$KgNmd)2_I% zupp*S8%=UjB1uCNNE#A{R;xjhB#KKaFq<0@MLTx81H0YsJa;&-+Z{wk7>JLH0>Er; z;H!;4^RM+=*|RqjNs<^kIF5*jFm~)Z&{jb{0u~CuTR_UtA@QW`S$zQ?#cvabLt^BW z3&}d+RDe+<2eatz8QgTkIC63eIdnLOoLnP$`9;oSUJ;E=mUhe3^iorh^99<#UT*QJ z`!Y#+=ygtHpJvG5I6nBtpV+u*45;IFTL%GwW}e%XH%;1QP+nClxUFRvjyJoth{N~xTIhDEdo^gc(H37_?HGxG7Zy-4-fzq-nKHso|^h4QX9?2s+rw~!J zcdBeb5YXu~gaqpd3DFTB7sY_Y7_Ph`i7}&-*|a5<_dnRgp1m2Zv)Ke70H?<&tXcgy zbIzfKV6oW9$t~pA@sqCK>B2G$20f7xVMIiPGIVep)23dDPN(t6Z?13T+s&z{RLbU` z0<}tsAPCs)4n(^hi^WD$lNF1_iq$F-7#M&~r{R+1M4}?Y`1G?MQK^)u)k@SV6)Kei zheN_9ir8!-qG-ovvm=Tkf*{bpe*^;)`w|kO>(o8|`}6H6l?v2qB>`#`N~Hp;Rm5Vo zVzJl&xcSC$9hTEt31l(>hvTgIPfUm=IVq9kqy(pPI5eImB&kUdgd!lO zpo@NiBuT7UyO}4SSxsGCLx<_rY9*7e8O7Y$lel5}7*~8%RV|B_ywXwA#w#!Wc@Yn$ z%;w$)UUM^}oyA}XVqjtn6UJXg%92~WDk;D{_r2V1{S1bnPANfa4y3K&ll9y9=eqAH zGgXnBS43`J5nq12%aul})esV_MW@rC*9AI{dJS5w22r$ASJyyoU48Sh0drjgl~rf3 zTD?CDwOZ*?+7<*!k`M%87clnrTd!sHyN`D226FR?c;LamvOCpjT4XYTDc4@XsLKa) z`G`Tp#Pr5!G;u8JB%gn=qs0jUAV966vUH1Ec@BrfR~vt3@sd~Eyx{=@`Vt)#My~)h z0Rbv%>l&!2sNv|b0z}cy>USUI_FJz7V8_mbELi*!CR4R5|G2TknL7CjR4N5|c|~OB z6q21&NTIRJ?OzBG8mi}CYoBK9Rl_{)x4gWDox9Wd(-W&&d)CDEkKm=}?`8Dwk}w#8 zI(%-eEkR}J76Q~NY&Mbax2BQypJQZX=8<_M&+Q)06`4#RAwHVqqy)mkg86#m&y<;} z35gtyrM{Sk+5!NJqB(sYFt)QTgiV`Mx$Ev1T`xE)cD@7dov5olb*Jt05#r$Dl#63>h3pLwys^zOaV(KKKTQL&6Xfjh3^@Ipr=D5Ot{+!= z%@-W3bqj}tbWUDZ>C-!uYbJ(r&BT#i&fCyv;k)mD;cstz$`9Mpuv$gbns6c#XAu-W z8~{O(wImnZl%S-vk|v9l0JX}efECZJaWhqqKYB-p3eZAKbU1x_htR)YgwHg=!JTu| zf`YVYwHl8mZD=PQy%y%onn-lEn`k+A9HN8F%l~PG@Nd?9t6Go$nLZb}wX#c9TyW?0 zTsmxEm-2KsDwTo}xRPQy#j-^*S1yof>-L}cPj>|!Gh zu@Sr2(CXKSU2H^h*ifoNPzHpe3J66RU~nCk>JYaV>E3QbA**g@pL%^De7}acx=zk|a@RG?AF#KN;;Y`<4m3 zzh)Du`!Ycg2k}oBQo<{`P7La=DDs+zmMFP2DO>ke#&zo=V`u66EF@-980!xyyAb5%8Br+Y z9VhGpp`m&Y(|_{Rg;j!~L*iMqa0WI@4Q2V8x>=g1PXNtIknh71WVIUm28fI>`29tA zBe-?W zHT>h9KN1;XaJzQHjH?LL1az(D&4h;PJ<2;@T8|70g1{4x&G&2h=Yqiy#ERv2;jr5% z&i>S|WqT+A&Hey5&Au;|J$##6UwQhW?6y;td@zOd-0A~kKd*Arvqy%oib+TLB z%6B*TuVP-1EcHRj1 zumpW$dUx0Xv|{-JH#7e2mc6W6{k7jJ*LId{eVeeqS@+2gtbT8!E4=LCTm9A@ZZcJ4 zGFAJWvepr1a|1Weev*oc8X^;Cq7S>oFZBXI@Ekixfc8HHEkyJQ<>{yHa)l*HV%cLW z`OB;8{8G1?n!0ww9nsN3jTWk^YPoIx3Krl0sw>ZfDYHBD1)3T=S3W>SrgLysuj~3! zPlrQd{(=`co^_It$kBxNpWJb#F5oeWNV5{e`)D4v<$?QVk`N!w;`?8vvbl%xxfj=R zFg=^=rd+|evBQarjiji!oYZ}p?A@E$slk}66Q?j1xqHF;e?3lJT|=k;O<7r|+`>Qa zIYdaX4xL`Z$&)3V$Sx#1=QLSar>Jjm4$|oLfvi}*fW>#;&|&$Xt5tN( zkZx?Uay;uKM~)Vdo9A3(crKRU@u&XI58KiR3?4|##q+wHzazZOCvbKY_3wN?_0-8% zus`)Z7A}5?ox9Qj*!e*Gf&`KNb$wkYg&2TLD)+rtU_ar>|QxcyhJc?^aiX3reYW6S1s zxah{=ka&36Tds+FS%U9UF=MV?evpJNJL;9f{@(YSFn;VFU4ksqMH~sqdVanuDOuv4N*A5u9 zO39=NBb+O2RL)g4a=FYozh1N>+MILk<#OMXC9F0ZGMS7A?wg51DMzJLy2`NHM8xK` z2RfaG$jC4TCdM#s?C?$xg0;y1!~M6o)<*zXtu|NrR;%c$M}S&|IzUB$TIqFStuJ=& zO6Q?vZ=z84A~rb%xl-G4rgNaRB@lpNKsrF`&Q%P%WI(qF?ZJt+Dd#QZ=lSh4Zwkyu11U**Z!Xw&5P^)DBDsa~Oac(|+vsCW68*B``Pvg{tFKP3<8$Y*-phn5(leR~@6iCL6oxK6TBd1il82 zdhjp0RxO1>qlrNm$MXEMi{)qMWt4gglYy^Q(urnp_V+a2uPm&tcq(?~y*O-5#3mpjZ_ z2o2Q}+dqQX{*hchaxjx7T*jb_W3gIA=FWSDAGW0doD^_wdlqtDch(|WraUuzr+ zjV6vAFQB%r0ZWsWCX2OsnZ9$mev`$DDB6jN3~PSr&KKXdld7n=oDV)9GUg1KF z()HkpAP7p}W?%_0*2{I`Vk5cuqW%O2YtQaYpwpn!2cpyVLKN-P)-|~8QBYUcK$)qU zBS-UHUHWbC+`_I$3I6v8f-nTQ8@LikqLqd46YXzi*`oyiUkJ|Oy#Y9Ta);rZ1+H)Y n1+_VfIJdB^ZFB6>wzmHTwMhFML%JGy00000NkvXXu0mjfK;ap? literal 0 HcmV?d00001 diff --git a/htdocs/takepos/dev/img/gfdl-66x23.png b/htdocs/takepos/dev/img/gfdl-66x23.png new file mode 100644 index 0000000000000000000000000000000000000000..b43479bf3c817b3f780eb453ef3c4e770e1ddc35 GIT binary patch literal 2453 zcmV;G32OFElDZw|yVYEgfW}Cy|k! zgx#J@dYX;&G#ew5FXBW=C5OK*=2TfN#mCEavsn&k0X^XE@ra^mcvn%BC6d8lC^yN* zgv%!6U+9|78#_Pv8yh$6;F+iA^Rt^S=eg(K;ne9GKHv8bT3R{~4F)91KtjBg?~c9+ zKp>zA^B;UpI`(a;w0h+{e!c3A*(XaX3nahaf8umSeE}d`*s{(aZ~lHS27`z_BN>w{ z)8p|{e7u6l2osYhk4831$g&YhGH}an%V}%tqN%AJS(dos@=M5aq|oK^N}8tUONtUG zDJ`w`0p`JiH8*$g$)CTX_;@+BbuEm(IE%|BY65MYMQ97X`-&a1yv0I5Fc+1&5g9wL>%^HzWsL<5pfe~ zt=*3Vlr=Q8nlw#E6wj`X-5(#~-uu^b)spr6vwa1c22VMN#3je)$7vnod)5J63BHW|K@^ zeG8v`euTB_-$N4<7?J-V-tJmJ2oj+N0%C1lGwEqI06bnF%O2Ydz`Cawgh=Rx$z){A z=xkE^BxjB=4VvWAC4~S)3?a|UP3NTz4{`0(MSQsX3r?0)F)}YBXk(V?7{<02KEJ|* z$@8dhXd}uJMRasDu`w26V=cJdUTSI@=;-Jo(h`fwl8GgC9%f5w(AHg#07$y7Hye$T zx1yrn+)KoPgU6_L6VRZl|O&rC@ybMm3RPoi} z??Xg{3$saP{kos?z@pbkaxNyIdT=Xly1IH04JP7p5=fM-gBuG12m&I2*(_I=SJa1O zC8ae06If01i z3@mX@BCVN7Ly-UkDL6xfrs?I?HBBL5d3hZGHe1|zC-lLt131SN;>f!_L})m;C?N&_ zzoMLX%wD|w!a_Q0KSB%m!Z#8`fFKc~ASA}cMTcaGiLn4QHn#V(2?R8HJU%o{M^yv3 zd%Wm+{|)D+8z*!0@ar5q@}DsG$gI0++eBqnhhIr+2jc>Vo!OeUGANHa;ccxK;ueb@=r z)wclPblStV84N2|%)!(4HGWTXcm};h2!asl_4?zoGE+jb3FDm@3?knbms3(&9r{1t z>EM%()-&_w;GVu{;q62YGtuW1O%E%V`i53coUCNb=xioU9QA|xHMK(*X|+bN>WMjY zRPP8YwjhWILU3th3If>e$su7@W(q}x)6jLD^)J3Nz}RG#0Wcb+(0`hyo%tQ~Y&I;` zJ@+<#zsgf9<_s0QT;9;oLqwOL?Amp*6K5xHhRw~=x z`IIMD{uV`10Z`QdE|+_NJC~~mfUd5AGJv+Wu23NW?jA2k|9O(4dsgw*w!LiLxP%+0 zO%Ca+Y9Qpx?e?Oo0ovPL?E2^+lEE-!SqBatW6iVgW6PUQIM=7%86g4Lj?853T!rMM zc)r}fg~dxY^759QY<+bXqef+N{6rk*vS0i+-r9q^#|yxe>lXHt&Aa#J zL5nJ{sORo`o*^-J!LVEAKq5d8MP9z^jvMCxX6vIv(yS;d#m6gXZ+DTFX2W4mMv~5| zd%QkGK}41%R5gIluV9Ia=;y=T<3%<~NRk0X37`f7!_F74&yPVAF&cwD{bw#}vTO`p z-WEN)0k7B3tDBe6?e;Kv$}iBPred{C42uMS?zZDp{%b2zgvmTAD=TH_UL!aQhB{#a zM3_zeboylzUaGDCCSi__;aD_I)!uA;PTl>aZDK2Z(k_hHoDtS z1Y_s|IeoXz9}~ + + + + + + + + + image/svg+xml + + + + + + + + + GFDL + + + + + + + diff --git a/htdocs/takepos/dev/img/gpl-v3-logo.svg b/htdocs/takepos/dev/img/gpl-v3-logo.svg new file mode 100644 index 00000000000..6754c994bda --- /dev/null +++ b/htdocs/takepos/dev/img/gpl-v3-logo.svg @@ -0,0 +1,389 @@ + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/htdocs/takepos/dev/img/gplv3-127x51.png b/htdocs/takepos/dev/img/gplv3-127x51.png new file mode 100644 index 0000000000000000000000000000000000000000..3e9136e626683ac152b73bc8fffcb15d1806091a GIT binary patch literal 3471 zcmV;A4RG>_P)00006VoOIv00000008+zyMF)x4ID{C zK~#9!?Okh_R#g=~B^4E=rR9Z+luC`X!sM1^DUntL7W9auAxV*!N`Y>UQ6*7FVLoW0N9 z``vrp*TJi)sqvcV#HTr)cj_~qccsv;g^Gk$2^|os5!x^J|1G}{&hosE`)!&Q?gXZ# zp7$;R^eUmr3TV(Sp+!Q4Lif-0ywL<7&r}HYO9Z|&{)+0nG13N{kP~IRb4cp%J@WT6 z@;gxIoDd8@EA$*TfozD2oWYj{ziH&)-y^i`I3C{~j;~sQ{)W)V*`9ZvD~=_ecZRgx zE$yZz0e?zk245DVqx`;doQ-QA+4oYRt-Mw(G(te^n1y}-5%6ph@V7T&;QuEQ@E!8| z;&CvZ!@`nF6`XZb&BVA1wG#vs2Ff;I%?bc!b7#hi1#YlDZ)Nh!e&l|gj? zS8ye1_jzgeQ|V)pnc(sy{b+jH^S&s3-eiE=rk|02Ulz6a(#Hkdk0JNWlTR2;JeerwD;HGprq{=ka>QJX5QbO?0kBTG>bg_=zZCha&4kqdn%6b zV$<(GRiC{LSc6>ploNZt0e=qryxm;CHv))K_1usggAPwyzR-nK=7OGCHq-My9EL}+ z=eZ%5|-hkA`anc7cXw&azb-%T_x86l7mPwrK zw<++vcfx+_xsw2kV#zA4fk=0Vyk*C+gS2u`z@e`OZH@0Is|8;3;teZb-QN_qYVjJ+p$&pdF6Ak46yKKFuuCdw?2llM=k7YWjL3&guc4a^FAcMa~<1&y&p>G zjeOCLSzA1^HjnGgXgOgL@VBZ3|E^i^nJIujB19{VqrqmJ1-w4ZjIn!MU$B1z=DjiD zJa)is3XPue@?3fZV{Lm0@t!5mT@B@z8>UAh@L_xF7sDNBoI5*H2&i0V-uakgyKk9x zvv@DhY^J*%^pO?;bDxl49$VoamecqiBva%t_*4?*{E2YvK#y3G6#Q$o$zs^^`6&fd zK4adw!Li+`W+U$6_0A#gUT3z?b^{#&`LCR^PeaCQcXbYE6#Nw#y1XC7K}`fcOeQtS zaSl;FI5QrPBE$tWtIW{3v(Ba_`C7IHl7Ljk^#>UpW95X=`dZsuHeU_{LWgRDJK4oM z;1%4K^yHVRLELQa6$U9H4lYJ5gX_p=04Iz2H3z!DY{Wa*-%2yawvJ}#X+erpO!CSq zKg^oLV9+LO1}7!B)Nue{Z8?Ka8~%_w`4>fOjHA&$3zU^nMh53)6{R}D?t7|n7MhKA zlglF4(Piq+@gE^=uqj&QIL~3!BG3Ck3bFeh#IKt(_{wyuH5asV2Pf3kJb^q6a}@{3 zXUN(69SIS!9p-)4n~gTk5&W}5)}VI~8}_|wj8E)JJDm)E1|x!6P;(zku~`b2xLp5& z1Ix$r6+sqFDEKg?)SwoaMd|D~neAp0&6KaYj(leDWp6eM7vM$Q;Hb22T}H$NbNn2JVTtT~ZL)w>hsfBt$xJoie@Wdhi@28wm22lt z0_E`-|AkqH*>wU?d`H^s9$ruA9`bt)6|^dcNa3XsZh3e-w?HWkJN1F!^MqC?5W5Gk z5|>HknRd6Rdxa7AGFiMCnM4Lj{UX5cuQdCUbHwiFGOevD!F&hBu=`O#c@44PL%B2T z^bDh9l{=n%E7ObA;QKl%SFS8GKf}o2F`UheYZ|rX3)Qs;8#v)~a16V@hH;KDaXLZJ zg!L)hm|+U{A?rNRE>oL+B?JCXmJ8A)lgJ=9&Ql>Wzq92G)J+t4lG5}uhIMA|y5+VQIPA#9|tIpODqSLvo*m9sXA!a11WLE3wVM1||CapnU zKn$yI$9b;{iru@Od>vE1CC<4MLRO|XZoI4 z-}QNr?{ThOa^&qW6~j!|SnyH1ZCK*P4$hq*Ioj8-&_AmC1ra%dnaKOUW#Zfk^GA?# ztV1D%S>WbLl(G~o0C3=z4vrjT0>2I=G-)fZ+ld4x*m`ORr$Y+_{bqnc&pC z4e0>q4>Pwq%q!*>KBPo2eFwv7_+2CVgN%Yn_uHN^2*4O(GMGQ{^;j=X|j!2l?e z&^ODsJF>duT%S9j4N9?)Mve#^HVi#&6A)yg;xk@O<(cqh^By+9a5!kdR{0qcI6*q$ z^m0x?dQE8TJ0L|GT&WL3$5WUtJ)H+94;F;3!pVfB?=REr#P}w zA&>1^Qsfk~9`9#VdhTY}braLXevgkv(Skr0Ob;b4hEa4Clr(F0Nt7=jN#$#3f=$VW6Xh*@(j{vbuYq@sws=T%rnA=_;?S6r{F<3oQhLA!%km*`)>J%^kix9qP z1v?sL+DOad^~K~2`>1tKM}nkZ$U)8a6mp4f90L+Sw&K)-BY_L>M8X6-%l9Eb#xgmh zfShYm1eeYlLfaU zxB)l=KT2>qS>!5In6Rd-HDy~lIT2*`G^8_;rEc(b6MWr+#SwUBGB?6dxHkC}j!oK! zz;_~0a|1Y9RDK@5H`oxM!$qsaQO-_#5coP@eg#v8tgCUkF;j+`WQQ$u;}(Y~d@I>z zm|s`tXXEmt2!55zW_+o`FJ~hATf&SMv@J))j?z)~bG$>SSQW84cBD4tFh}SeaZ$Or z$XVJ%U8RtR4RaZuG(SHp@KXq>Hl~j=mDb0?Q!g6A4GznpC`nKz74W(9nt-o+`Y+AZ zg2R%5;;R(wxi&kx-oTIfSkc?<)ce0EaO{-UB14CvB{Ykt93NVoVS`-t4nAdS6ZqzX z#&eG7Eg4tK!1@8;LVuxWu7>rE!|lhZ8WQ{^O`wNvfEp^g`C>Yr>7udIDw?f6%1}*{ zv!DGaRfB`ivgltnQC*sI#AmV5SPbx2JmeRTAXWii1-+Gf)U$AgjY1|+SS|f=0e;he xS`h1WfrqgdO~;o)s%+--KQtI%YYC5M`ag&6T?f%9P7444002ovPDHLkV1mp+x~c#G literal 0 HcmV?d00001 diff --git a/htdocs/takepos/dev/img/gplv3-88x31.png b/htdocs/takepos/dev/img/gplv3-88x31.png new file mode 100644 index 0000000000000000000000000000000000000000..ba78d4c4941dabf2fcac5409a92ac4c57920c69f GIT binary patch literal 2666 zcmV-w3YGPVP)Px#32;bRa{vGVivR!tivi)#(!2lw00(qQO+^RT0uvMpF24YJ`L;(K) z{{a7>y{D4^014_zL_t(&-tC%skW|$b#(x5`77PlZ01Xf|tXfvU1+9P)Nl;9MMIeIW zf~A;|yxWx-F&@d<9Z!mSGK`{-NXD*+V< z1U?qnFHjo71r>243NtglEQV7Q5|M$wwPW#3mU1Xa75(4)}+D^1dj!r-wg;N!7wPTlz6cv~* zaG8PJ%ocdxi%_r(8VF2J2gJd((|x~-stE3f0*?zktgtfz_z{7D0<}|XS^^CmbayaJ zV6ea`S+E+%|4L05^x|!{8+(dT?jEM~Js`$27+y6h2%>GgYF0wJYE0l-O z)7o925Tv&W;2eAZgu;B5;j^dJ8-bz3oKpjkZt1g)zX^66mI| z)j_Xp5wNzxdh2k6HU6=}>lr5fjzC|47oe%aZiQ_MKeNs1Wz;5au`^ddqYxT8_`O0| z2+eKGVG3K)+k_Uu1%|7S@cDv!RA5U0Jp{%pe3tfppM%?rytQ5}8P;njwoMwi^#raG z_|!q~0P19O58V`YC~Ow^rGefh%fweYXuAOFEA&%1pirdH-T=NSi#0u9by^9`QxJv5 zHjl?NEpVEPINjb~s%aLOrIZQ$Er2cpYhwES(!o;>ZWd4fj>h!yt-vP^&Rzf~rSJ-% zg@aKFTLZW-2{m&$=#dIvD=Zf1XvcR*1&`sq0ThV$zmI09^NGMv1M6&ojS7EJsBiOF z8n;M=9{?nvrNFcK_*#Yg1^TDhK}Ke?#C57YX(PO#~hmZ&YIfXpm0?Of77b zcz4lUy){(?;9j;d=Zg=NarIQ8n^{2*frBCRE`gImI7i`?I3Q90+X5fTF_*Oh*9+WO z1x|lZpeTTXIJ}Zj$9dYg#Asf_jNm>ECo6nxzAm326$kDY0%zN14N};eq2A;GS}N34 z_?^POB%Ep+b3>f}wIrZv1mNKjYL#A=I=IZiomF5OUkN;%%t28n`n7hnwKmOUxi!^C z?!7sJ)RYjqCgH3A+6T}!^hf+gd!G=mbKa5;2^2Z#5Q*l| zfdhdl0@EDyF+dtC++#s#w6j4H&?112wh__NE(zy`FhF3r<@t|C0A7{B|L)KTzz$ld zr)$xAGn~&v$ExqQqQD+9qd48hXc$805H1yOr8Q%W^E8V!qcoEr7HA|sO)M9(j7va) zLPO)u<>K8*eH(mXo|E4b6{n4!WlMoas%ZhvALqY1(?UYejX$qum2H*6CFz(2o?R^x zDEv(hmVvj&jg=p^uDHvkZKlwQXnG#Q_KXL#Ubbsr9Nn7x7-IFOx}g0W@Fj z20>x8!ootY1Jtn~{dF~g`?~m)`Q!|iyHa6%kmfQnQM3*U9~p3ePDSc@Q2%*2Wf?S% zmJ%okp_W5IHRG)GOwilcdW(Gu*4g{T~>dyLTd*<7nqH5>P4bO#m15lF^bQk0@fXG4I;>Zi8G4~)h=aS0UnUjaR`^J~?z=+$ zHTWKdViR&!n`TiY-;I@$Nas4sHq*3$R%RqSBP!U};>Y>BK#9N@@vNzKHf)UY&9JQQ zCMxp?bTg|ev(NnmCWO%6!B~MAp&w|lz>EMc4xx`RjCHn%FPzVQekwkb8YeK{!Gi*~ zsNb|P0)6c!`IJklP`iK9vb6vc-7RoHJ0Nq5dRwk5m+UDA)gAo?O?LN0*eFN#QW*D#LIwjzkygL(4{)S zRcNGevoWb@0%ujrt~sxh79Qi@G*o92@TaP*zZ6=F7pc}Mlq8{3Nv<1-3c80vD-#)#iR!fAg3`3i=|n0Ep+VCB*yVN$x?2_YiZ5k$@3&Tcz#W!=Gm9%=?NxpL Y19h*OP%`Tk_W%F@07*qoM6N<$g8#_jNdN!< literal 0 HcmV?d00001 diff --git a/htdocs/takepos/dev/img/takepos.svg b/htdocs/takepos/dev/img/takepos.svg new file mode 100644 index 00000000000..f51ead1a94e --- /dev/null +++ b/htdocs/takepos/dev/img/takepos.svg @@ -0,0 +1,70 @@ + + + + + + + + + + image/svg+xml + + + + + + + M + + diff --git a/htdocs/takepos/floors.php b/htdocs/takepos/floors.php new file mode 100644 index 00000000000..a108c54bf7c --- /dev/null +++ b/htdocs/takepos/floors.php @@ -0,0 +1,176 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); +//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); +if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); +if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); +if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); +if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); +if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); + +$_GET['theme']="md"; // Force theme. MD theme provides better look and feel to TakePOS + +require '../main.inc.php'; // Load $user and permissions + +$floor=GETPOST('floor'); +if ($floor=="") $floor=1; +$id = GETPOST('id'); +$action = GETPOST('action'); +$left = GETPOST('left'); +$top = GETPOST('top'); +$place = GETPOST('place'); +$newname = GETPOST('newname'); +$mode = GETPOST('mode'); + +if ($action=="getTables"){ + $sql="SELECT * from ".MAIN_DB_PREFIX."takepos_floor_tables where floor=".$floor; + $resql = $db->query($sql); + $rows = array(); + while($row = $db->fetch_array ($resql)){ + $rows[] = $row; + } + echo json_encode($rows); + exit; +} + +if ($action=="update") +{ + if ($left>95) $left=95; + if ($top>95) $top=95; + if ($left>3 or $top>4) $db->query("update ".MAIN_DB_PREFIX."takepos_floor_tables set leftpos=$left, toppos=$top where label='$place'"); + else $db->query("delete from ".MAIN_DB_PREFIX."takepos_floor_tables where label='$place'"); +} + +if ($action=="updatename") +{ + $newname = preg_replace("/[^a-zA-Z0-9\s]/", "", $newname); // Only English chars + if (strlen($newname) > 3) $newname = substr($newname, 0, 3); // Only 3 chars + $db->query("update ".MAIN_DB_PREFIX."takepos_floor_tables set label='$newname' where label='$place'"); +} + +if ($action=="add") +{ + $asdf=$db->query("insert into ".MAIN_DB_PREFIX."takepos_floor_tables values ('', '', '', '45', '45', $floor)"); + $db->query("update ".MAIN_DB_PREFIX."takepos_floor_tables set label=rowid where label=''"); // No empty table names +} + +// Title +$title='TakePOS - Dolibarr '.DOL_VERSION; +if (! empty($conf->global->MAIN_APPLICATION_TITLE)) $title='TakePOS - '.$conf->global->MAIN_APPLICATION_TITLE; +top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); +?> + + + + + + +admin){?> + + + +
+
+

';">trans("Floor")." ".$floor; ?>

+
+
+ + \ No newline at end of file diff --git a/htdocs/takepos/freezone.php b/htdocs/takepos/freezone.php new file mode 100644 index 00000000000..36b1913466e --- /dev/null +++ b/htdocs/takepos/freezone.php @@ -0,0 +1,59 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); +//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); +if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); +if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); +if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); +if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); +if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); + +require '../main.inc.php'; // Load $user and permissions + +$langs->load("bills"); +$langs->load("cashdesk"); +$place = GETPOST('place'); + + +/* + * View + */ + +top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); + +?> + + + +
+
+ + + + +
+ + + \ No newline at end of file diff --git a/htdocs/takepos/genimg/add.jpg b/htdocs/takepos/genimg/add.jpg new file mode 100644 index 0000000000000000000000000000000000000000..976fd10697d47e06cc9d74f7efed36ab17d95ed7 GIT binary patch literal 5419 zcmeHL4OA0X7QRCW2>}g3z`xd@Kt-T>s!)GR01XNrgn$bE)KnDtJ1(^qLB$N>A7U*< zMYri9KPrf#DL*bA*117Cuv;;C3&)y~- zL^jWL(}#!$=JbnJ2Udw}f7VU?0Na`eP@0MEz;rOfFw^~GV=x(}W?^p5V6rS&ER(P; ztt{DW4x7c|4B&9Atm($G9LODDJ_g=$=LwOYrCD+u1`ioJ%;mk&u4CLhy*`{cY4VimGlc## zX9Wa?&7C(tJYvDZWy_;hM90L&eZD$zO;YmOb(=PC*}5%#d&aKad$RZL`|H=zf&&K+ z6&4*XK2la*apLcl-~Hp{`Ksy*7cYH(x#q^ry82rUw;P*U+wR?O|KUN$!%lV26U|d? zuTI}*!i53jIjk4Reuaxi<1(Yyz?@~mg_$MM!r+-RM}A;o>nma{T{URb_>F8kzpVVy zbCymMLRI#WpUF86&YrCl%>|>|Rss`|}-< zK7~>UT6PmXJH|B@QJ2HFAkfI;efT~ip&k4r;c6BFW+Z|=h13m&c3z4ILDBjnl)_!N ziC(x;ye15fO)$8faYb> zsR&%lNGYz&P8K5wa;U&GOgoX!3&Cx0)%%5k!Sw;P)k+ly&vI_2*lE{_gk` z%afEs1Qr>Rt3*YSQmoq6_TfM8C4A{1Rb(3N4%C3`KMForEdS+7d>FsATm%1X*2qd+9-LxA5{Q|M9E`)Xe4YnNKnWTKG z3Y$$zDJ+@adTq<9!yk9-2Nk((t47~_*ZHKh`C8M|+Zd@Aij88ke}6nWwXD$HGIdFugAK~%GNwc{9@V{b`wg$ zx^!A@U8gIfhxH0CWcJ4hq@*BK;E2D<3v`D2HPy%(-e|+_dO2As;l$$Q;;wx4`WK#8 zA1`k`?Y+J?U~FM!`59^R=d?HBhWe3 zBhW{Szxp3A-k|x|z)Oj*$76$U6Rq6pm1`8i6}OBVT8<5`mTq?7oqACMAHVi!$l4*U z(UCATa;@Ne4&GlF=W+91F5#c;c)aB?(KK5dPgZ!3OPO4IYLLpidxna;Gck9-!zYT4 zzJvS17Bwn@5(d>=K3w3r#VPcH$k(~mrv(?*_ZPmY-V~kr>WR37J{vq5fsxlqKgthK zPV>oPqQjTWMWC8_6hY55!Z9X~+t97sxky_`7uqZ>PVa^hG6Ywq2->_7n!cen^BYae zYrc*^;PI%(A_GXt8*klMO6E(vI_XN_lH#2d|Av(sLr}t{W=BH(UOsbk!n-9C2k#rd zI55k-{N%+E{+yw=Q!OI)2lIbh!Tz>5e|y+@d)WCy4v)o(@&@C(4Tb>8RUA%nRS*1B z!DkJp2c7lif2(TF{fNpu5|HS1I;UcddRmDz!)aEim&ZIi+c|avS?xRRus*UsR+-rk zSxJ24K75&?KgwGDDp@t$AMghmPt-3n_!*y(N9LJHx}C@GJk-)Bl2gwMV0QD=h`)>* ZyZpQCQQ^@qmB0JF|GfWsej+2(_-~uMLm2=7 literal 0 HcmV?d00001 diff --git a/htdocs/takepos/genimg/empty.jpg b/htdocs/takepos/genimg/empty.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8883f7c9957bf151875278b6ded394d9594c8b25 GIT binary patch literal 2239 zcmex=}T+5Ri6|E+FFJVCMj-APxLK zz#z!MsL5!;%&5e`B*@4t$oT&VgFMistiX@}1qKu_GBLBTvH_jM#SK)jRRHLGW@aX! zV_8{%-es%>$}_MCvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0 zqsLF4K70P+<*SdMK7aZ8?fZ|Pzd-(CWMGDP3+^*Ce+dHp#RQB47Iu)o7@5j}m|2j8 zRnd@5$T5&Tu~1masF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(cu+NC|SQA-3gL@3& ruUiZ}z=X*p$SlZU&+zxpqAm@FQ9K$3qiJ9?4UDFNVV?$=|K9`vEy2T8 literal 0 HcmV?d00001 diff --git a/htdocs/takepos/genimg/index.php b/htdocs/takepos/genimg/index.php new file mode 100644 index 00000000000..5670e0791dd --- /dev/null +++ b/htdocs/takepos/genimg/index.php @@ -0,0 +1,142 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language +if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); +//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); +if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); +if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); +if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); +if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); +if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); + +require '../../main.inc.php'; // Load $user and permissions + +$id= GETPOST('id'); +$w= GETPOST('w'); +$h= GETPOST('h'); +$query= GETPOST('query'); + + + +/* + * View + */ + +header('Content-Type: image/jpeg'); +header('Cache-Control: max-age=604800, public, must-revalidate'); +header('Pragma: cache'); + +if ($query=="cat") +{ + require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; + require_once DOL_DOCUMENT_ROOT.'/core/lib/categories.lib.php'; + + $object = new Categorie($db); + $result = $object->fetch($id); + $upload_dir = $conf->categorie->multidir_output[$object->entity]; + $pdir = get_exdir($object->id,2,0,0,$object,'category') . $object->id ."/photos/"; + $dir = $upload_dir.'/'.$pdir; + foreach ($object->liste_photos($dir) as $key => $obj) + { + $filename=$obj['photo']; + } + + // The file + $filename = $dir.$filename; + if (!file_exists($filename)) $filename="empty.jpg"; + + // Dimensions + list($width, $height) = getimagesize($filename); + $new_width = $w; + $new_height = $h; + + // Resample + $image_p = imagecreatetruecolor($new_width, $new_height); + $image = imagecreatefromjpeg($filename); + imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); + + // Add icon + $icon = imagecreatefromjpeg('add.jpg'); + list($width, $height) = getimagesize('add.jpg'); + $new_width = $w*0.3; + $new_height = $h*0.3; + $icon_p = imagecreatetruecolor($new_width, $new_height); + imagecopyresampled($icon_p, $icon, 0, 0, 0, 0, $new_width, $new_height, $width, $height); + imagecopymerge($image_p, $icon_p, 0, 0, 0, 0, $new_width, $new_height, 100); + + // Output + imagejpeg($image_p, null, 100); +} +else if ($query=="pro") +{ + require_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php"); + $objProd = new Product($db); + $objProd->fetch($id); + + $dir .= get_exdir(0,0,0,0,$objProd,'product').$objProd->ref.'/'; + $pdir .= get_exdir(0,0,0,0,$objProd,'product').$objProd->ref.'/'; + + foreach ($objProd->liste_photos($dir) as $key => $obj) + { + $filename=$obj['photo']; + } + $filename = $dir.$filename; + + if (!file_exists($filename)){ + $dir = $conf->product->multidir_output[$objProd->entity].'/'.$pdir; + foreach ($objProd->liste_photos($dir) as $key => $obj) + { + $filename=$obj['photo']; + } + $filename = $dir.$filename; + } + + if (!file_exists($filename)) $filename="empty.jpg"; + + // Dimensions + list($width, $height) = getimagesize($filename); + $new_width = $w; + $new_height = $h; + + // Resample + $image_p = imagecreatetruecolor($new_width, $new_height); + $image = imagecreatefromjpeg($filename); + imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); + + // Output + imagejpeg($image_p, null, 100); +} +else +{ + // The file + $filename = $query.".jpg"; + + // Dimensions + list($width, $height) = getimagesize($filename); + $new_width = $w; + $new_height = $h; + + // Resample + $image_p = imagecreatetruecolor($new_width, $new_height); + $image = imagecreatefromjpeg($filename); + imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); + + // Output + imagejpeg($image_p, null, 100); +} diff --git a/htdocs/takepos/img/arrow-next-top.png b/htdocs/takepos/img/arrow-next-top.png new file mode 100644 index 0000000000000000000000000000000000000000..70f720cab10ca4fe54fa4681805275ce49885ea1 GIT binary patch literal 47808 zcmeFYWmH^2wC@RlK=9xW!9#Fp9Gc*6AwY0~ySp{+?(Q1g-GXc5?$)@w4!QTf_rAP0 zvu543=F^u|tef0Pu_1Ed46AUB---0g3*fy657VzLgAV!|S@6(}Mh1@h7{1?q z=KR&0O8~1YT>!=z+R-bPG^=w}I)ilI@G&MY#7oz$kd!xZZy=I*DhTxU7mPi|o3Im9 zi8&A@C-3&^UqlLmwoS?09w^Fkg|^CMTZr06cqQRAgf>d(Xn^uPP(#uUyPiA(Z5~x_ z9)UNH&M={YkDE|Tp4YER&#xNSulgXLMxe(Vx5pc?T=rrPRAGC@_r`g|#6f8Uq+NL1 z&Q6T?Yv}*^f1JK#9`|S;TU6d!pxxqSP~cp_#Ni6nx2gLWzfZ4(rMZyUl&Y`UrZ1JY8~LLqut zXd-MsZGuoRxvX;YkeUjX)?(7}ym0|Z)#{fNN@p`Rj%@}=OS&~w+PF;~DaIy!U;HWr zrf%FO79D?wseqK74;v80TZ6}&!TN1<>?WBe5DIuiV)jxjTjl#sw96N!fMb^>?N>5?<$Rc$4^c_#j5dK4RuBn(+k%H3L7PHznzYsVQ z*kN$!)TsF6@U7xQ7n#|-O~)`5=g4)!kBT6oY))pJ6{+qL1T(5%#A<5*lGHBo&bx8( z3x3304r+-vN&k8Gn$4$)*|x711Wr91B~vHYE*=<6MwzllL0$`JwpgQ!XcR4w=t+rG z>mB+jl$gC$8)VTAV?WdTkG6(+ruPLs%{g4XyauUXmJM4!k@vdk{E7e2U+-mG!RE@f zw2emyV^8*l27XoyFP$;m0AF8zt(*2R3)M)63DwBpP>n}84mJr>)-t&@P5iL<>0`Eg zd^kIfPq;;MNd;bggAEPoWp`rs(k>>Yy>b`oeg=@JCX$Z8-W=VC%h!WixIElC(P3;* z^ecY#xNt~IkF2hpl-*y$eby!mxTLX-8a0q%J7(v#hYyx*_`$LK{+a_(D~@j31d!sj@T7ra*7(R3MRQqpTh^{XAZ8qINMAh&Uoe1?3WvX2#k50z0r-;QpEgq{r1VTAUvMa1CR_5FuI4etAQzk5?pZfs->*)y@1$_<-)Y-zZ?=#OOcpdSr zAP1=-y&vr?M(oDpic)WSP|5%V5S2EeO=o^BPFBSOvk1 zgD56avk3QTVrrXUE12P$n}p75DE>D}4NIAFV0|=nD(SX|cH60hu+?=$t!GCxt-*+P`;{w z&AVAOrkUrF95}to;1FUEd^_qNLxQ1)PRFlAiXf~e^2e}!k)rW+J^+TA z{bQ{6O~IVG$tOw%28MZEcBVm+a5B1>9A!FRB~-Jz0y&H(zXJFh*G;U{^ca*nmpFTJ zV=*%vd`B8?d5APiJQy2cQQVU|khN6X<4c!IU}W0O#UhGPh7gQ7j=oU1C0u#W-fA(n zj?YotCr!k`jDf_j53nyR{LC9L2)ls#K%|_$FD5K~=GBFbPNvr;j;VFhMLmbNYPNx* z6QNIb$AS00I>=O?8nG(5Wy@)urFmMZzTW2Yx*WGHvoDc9G@4%mXRz`sJOsmDqim#c1l}&$RgI*Em+WUAMZ?8}}S5eC)4uy?7qJt}Y1k-1VU1Yg0@MS#2s5&sVmUp&}puT&W0Q!G;;rKV< zhe$PmO(Q*r5$5!LZ@zUWem-`aVY2mwA`WZ1*&Con``a=d-eUIwkODO(<;`|2LmjLU zim4S;g}|@W@vov$uBL1$rG`+A{?$mHcwR(Yk0+2H+e$!oQCrRoCoWYP!4fW~erV-* zK&AX?MGK)ZtI&dprj7tpy&Pi+S;!on+3!=L0@wCQ5$*B_!q{&i`)@f3pO=&v>$EyD zZzy84SG-(@`zV*U9S%u$MbwSS%T>u4$fm?K^HHQQnnLzEUQ84h9cSSC%6EHbjkgX} zx4w~8)DP13X7*&JP(5C46HI22&c|b}dWTpkgjfZlpP^8JP-(>4E^epePj>w|41@?( zgwncIt)qljVw9>#7Go~{bI8{zP%pg^mLf}lpKeldl$V+0=bJOG#r%3N2l0<~oFy0g zEQzuVa2BN{G+y{2I!0TnNeH@8zFUTMH?A@o0^Qog>P{Dl81M@s3%`s}N^)nE>x%}k zMLi88>KUZbpEScT5ZjBxM&*~KH=l*NxC3pP7*GyWx7`m)S|A18%;z~gYHGMqqayC( zxGl!L!eeU%0KC+My!c9fsf2($J(uMgjTz;J0z-OtM zrQZc7C{KS9%gWRaXy$r(F$(T?S6}&$`U&Py$^>E1)I7>i3Xcm9*{A3H8Gnmt<#O6Q ze$bZtX?}N;VAdlKF#P9`#TYI(Q{PKZtjYZMuxhE8IC;2P=t zAxaXv!fIyobsB4Y<|3}phQHMKx(+L#_C!*agltc(Xzn$Ewg@8G9QKX zVU!)HaMR-ehi#4gB|=q>dE&mqktxCZoa>@a?(=rm&ourI6lk6mhwbaNj2;1s!9Tbx z`{}z$9zHc*Pe9w2#h7LNA&4v%)@S{IQtDn0VD%;I9iQkN5;n&VGTS2FJ>;YFe7Y;c z1!FXb@36^T&DOfm!hQedv!TfPz;H-T=gV3_+LBxFt#KFuWb+q1og!6PnyD;bt5;BQ z`EO)mQ7#^%C(|~F2OLj(mkYhF<7@*>msX{&oJ*E{g-SvGbI`jQ`ag@HL1+7u4afy& zp9JcBfFegO3$F&mSI*eS4Xdq+_Qtqx&k}A;rT2B0MCFAr=fK6#2K!gm)V*=@g(LZu z+z-6WPRDV*)#BHHLYRV~s0YxnM2TW~xyiXAw$=l5$K7uvuO3SnH`7d*Wiy4msexR6 z^K(@{f@f^XiWUy5<|$=hUf)3Fy>)2nf<1o&gi!tVQ}VfIXE(3Z@e82AIoZ&0?D=9p zIaLo~;P|gvPUqA#nh6ka;Sh(6q-(qgXF-fh&Wyd1;@UR8K>?*{t1)z z?`P%)YLIud_z)eL+Hb`Z6P7ODCamHtz@OvdqP9r;M@zUk7gY2|;4Ef0Yl zRI-Ry>K!WU9)A0$p(SA&Gygj;I`PV_edUe)cdvi#hS^`w$K=DiJ z)X5)li}cep2ev38Ox%Hc>Vb>>g9)JPPd;S(k}Ws1Mm=854Mhu)PYwK~_gzUQ?q)*k z6&7Fz6)!Qcq%lEwYV$`4Px6Kf8nd?zJ_hxq|C$19ieCVEw1Z=38SM}9 z0@4z8VN3mM*)B1`SWT2U_J6`iFAxPV+xRow-8Vu?6f|g1i81a{XLN*4Mc+pKqR>1D zA0bVRFrA*dtIlS(!Q~6``-8FK zj$u)=z=$cX#Q6>Vzppt)_~+%~E$qSfePp~{G{n8to(){FRKH8VMaCPH7*q~xTc^vz z%wrPZ%`vDxIZV;R15n*aObITrS%0~njOf2C`py(;80k5gXs1zI%4m-Un=%UGcEaH6 z2|RsQAFQ)T6|?%jj_hOI(r@WF z!N!nd{7b;QwiwV)PB=HzK{CPh?U6A|@QzB{w;jP9!-s6(ONlf;g4@}Co9d3^TH*c_ z8^QV(1Z+P;Bz`KSe))mk#zX0TJsX_O{upxlmg)F+Vp-rAzW1Rtr%>Ndz$JBx-hnjpQwl4kNEgl zX#4WuQ&s^TF0O~%7g9zs!(KN4cit(L+Jda*p6>EE$j$nQxY1ciB$js~dq5JU;)iep zBpb8PM)_Pv`D5Zt8S&`+DZSAdub#_vc1?k_wQ#VD*9yPQZ(V?{{pXxK$yMgv>W<=i zY(=Qkl=ta22P7f0{}v2NU@sQO0(R+KJgbk-p($-Usg;wGCUo8$s7jf8-YWOb4S*{V z%IK_Lz=$ADV>s{#`sb+l)%8Ny08>>DYEg3VY$oMIa$6*xc|66G(gLs4v{)s8FLq$) z^sEFn;<(gOsyf-L;06|Bi@h#k145(l7NQrZVOyA)l2;#`HUT))~{Qsl;~D*BAjCwqwV&BpY^(jgw>p{p>F^~Gr# z)y<)~+Ow!Pd9BG&EapUpczufD31NBR%SV!)e;hg76xUm~V#d;RD^a{p>sy`kYI}%1 zKzAA{u-ld`hSlZwRLNX4;RyEpkp5&fh}#+snf%yIS(siUd^W;;+syBLFxYhl5Uy=u z8|FYb{)}!cCS}5TSON`Fl;;n{zs>=euCZH1sRKA;n4Sz-mR^KRUbw4y4hM1iraVS5 z+Hsr9l%y9med!n4oFai-21o6+plhOOD7okQ2c#)gp;QY+X{5}STK=CF%E34M?el65mD?sKaQcshHWCTuyp?b4=Bhf1vysiu&` zg~`SGNB^F8-JTxf3yPtx!l{oWMT{I|AZ9S1TQ;oBScHJeP*5wQj4eJ?{>MI(C>%)c zz3L)(uUa$ji{|^|Nd9 zPod3xNozYNIS7>ZYL@FDRIeGChysCUqSm>|N2Wp`lh|Q){YVEfh7WoSQ{D`*XZ4hC zo%{FYmFM^Ew1k}@q_54C%Ma+_+}1*myAcyvBRg|j{A&cYYgOi_2v;VHvEKZFx#A&f*1{KV7o?x|uJk4+E1#JZpa!jVk1S4C-V{9uEwFrBgaYh+B9B}G?@$NnQ zFB;X3%KRm!SVYNKkmwEkENf&M`q>NWttH(2@y|^@-q6+*#lBs`%wFG*`azdZ4-OmQ z51XK&4E+%jFvnlILsoz3)ciBQBkuXbggr-OJ#*R%&$=W0^Ds?q(iDZj#Scxi>SN?~ zaYPN;lu<*pEKxU^U%8PC?yqKxr4(@~YgeGa*krOSW6ykQA{I+e%BA+c%X1pl{h#KP zJr4(F5j*ouVs`kYQFGL)9y@xw=MU^p{%gv8gKVrdE~DR=Yl?laNmV_b2e$QTI7ylG zKd!w$k^AJL6I~$Sok>uU`FF1RN;?jiquGGro~SX&n$OD_S}gUN(Y@uR9|Gt}pKoKx&l?d+ z_(+U#8Gli;M~g&U+L*;h`GG8J0_X|Qlh~wb8l3PkT!j|UXf;SIFKlL^;<|8F*;=MoJR6w2o_?{aM4#fz#Bq*upbRD64xJ5fcassL4=+=M6^il8?H<)STD{HW zz+HWdy?n(~OMgj5V|siEn+#r@8~}+ke&W3kd2MKX-vs-|Hy;M?lpk^H7MO0COzJ4c ze&wmfI|J-pB_Gkv`gF44wgnf`ma1Mj$1j$#&bWfg%aYsy^UR-k#^Tl_PzaU>AV1$R znf^X(#2&OJw+Rt(^#=}j!JgHEjFq_u2|vB8(0(#Yi)V?xaTbAYt1vI;mO7=syrbY4&I?o}l5z{jSk*Z;<_F?rk0i2~hOlGR3)A?FF#43&8P&Rts zQ?+fYUdCsJ;?wFH6shy=)qPpQLreArh~fMT!uUs?34U)J2eed3Uh3HmTrc`+?c6a9 zf)jYjId4u8*V+?OSvnxra-M%k~k@y!-kQ{}J-##E`hxNo0>#sN9olA;Z3-PVQ`J+&@>`Hr^izr(V& zlIb42jJm2spIXM{fbc+k_X%xz)wY^tz*_6saeu1vg^_l~D+%2qPJ)2A&|{n zt|vHh|FxBvhnOg&Pc81JZKER`je_qs#g!E-2)RvjdpKC&8RfM9a}4H(e}-_rzZT!g zcvO?;-RDYN*h;kQlgdRoL1tUo1f47Ba7tB!YHg~DyuFt3?n&*s&EtGgI*(s5nrFgV z&BoOge09H6onrYH_wkLoI_Hm5alINnl+ZfeGoya5o^r6WI8%`Jd(Rq-%^?28KXy!Y z&TEfjvshUh()gx%Z@8e)VQ9#8KWT$|%-+qnXgf{48=9zcl;lT;k_VV8*+x%Dsj+6_+Af>cL>(v9x6t)!7T`P4K=rxh1g_Lp z4L|6bC8$nN=3|8%)}w)U;B>NvR8Wx+O5tS+mh>1WWW+?QlQPd$^vRMyjF2eL(~b=u z>!;v|nc)8$*7~=v5jpD@%8L+#o?sb$`Zf0M7f(qpM_T6Fi?F_-WL`ONK39bMZc=b8 zhjTnf!B<-xrpU?mD08)cm^F;dU@Tw!iEr=vA*?REE`Q95C7J#oWWB_bu?zFSD6Icf zNH@%)o;jIp>U%d9OOf^;c=el~nBhb*G66gE7+jE18k2yDf;zP~mTW7F_a)2cVL)J% zC98L_*SGJHDbSxEoLGY4*wn>%ge8nWr67~Vkr}WCq4lMn-&f)9RCEQB;{|%L$vtcw zNeQqFFcC`9DjLF+%yP%OF^#z5410`aGv&_ev?3?W(eupWaFWNHGJ&tC=Tq}WJB>6XQJVSPIn+N9%v@S{L#+LoZGK8K z0>q;o+C-y+GqnzZ)Ci0;sY}exoKZ81cSzswzT%tHf52a~Q_^BFv)q&e?)WhX){oFg z?EUd3p5XQ5G9Xq3?9Gvn+Q2@@1ghh&(;uY9gekDfMA~U9S z8`i!KyU}qnrJ`ZaxxXGt$h9=a%Bgd0#1vjko3d}spNESr`XD?Ao#Et zg2raCLF>1lH`sh0uT$9TL=0z~(Je`$j4bD<(hk5+ExVJ##xzz_18VVPj0o~%ed7%JhjVENWnleq6%On7EB$nE z*gUc6V8luuH#rf{g&3Z7?IjF-V-s=;ro3sbX-IvaF1=pO<&9fv*70QrCk>LW%AG_- zZVR%YQEmT8+1E$1aj$^iQK&_Ibi01c)YV1&n`W{^3FC%%W{E@0b#ZuZAHUQUxD^k7 zG3btDeZa`Up=R50tO)!`@Uv#k{OUA~wC+Npha^uHt$p|>Z|SkYZ=cAKvI3?qQZR_G~gC6K3g{<`yfc}3-JT=vxR zx=+S30eO;D90eI%mJ@PF?Nr8gpE>_dW&{(+21OYL7}DjDDT$HQi&R9Id0h{}Ci_jS67GBo(_0~U|QqnD5F3y7V}Ie+%aaapjQ} zM}H3cb&&EXfj3P4*N!(<-)xZigx3zfc)W+q5vZ!zI6&Nn8R$j09Z4MMt8_VZ9?s3kDdOM1rHpS&S<#r9^ zYs>jvyQ9*&zlvl{-C5r+@BXEUuR9nLN>ZYxF4(AfxM5z70_t(2fk$!KPS8~21JJMRDaK`->57{j~Fgc&v*E%Ue-1Nck zCgy!*_8D^thdC^{^}I|3u4mP4775+~YBnlOp55d}{#X|>&d%&LdVP_0BsL|$dDLea zn+JDO%EWREkVVYV@5)?qi_u?9p=R$7jj&L8T_|C$m@Qha z`R(hsAycr=^q6l5#nxrB8cMRPjN}LBs_SeZQ@T(bTa6EnwVm9~sKgj~-YF&Iz=JmMvYDLhshDX%!Du!N4HgeP zVOt9Xwsw~(ndpw`$plxAWjijk5tgrP=c?Q4M6Q0;IS09)=FWg{9qv|#_9Din?s-KneRdxE?P-67)!t>?+q{;S< zO_scTz_PqjLsDF7U%rvDP@15LB`fDswek_rS@rLKLeTPlf0a^y4!;R?*wOnJ>>Qi^ z|EPhP+T*|XQ;3eNu1M3Q)r0>?{B`iaWg#U*vSHw0hJQGuZd^pYQbb)SKdMQBFrLx| zbIkK;GPmZa7%fy|B%~DFJ6qYSETm~3qZG^^#Lp&u4H;n16%eSPrD=i2T+PNQ@IT&*rolmutL{LL5+D@NyNZzUsU7s39A7~fZ&*EW*8~cmpuDu*0r=0ysm%fwcI`Ub7Y9b$65r^9qAKvNb zw@2VE!R*rYsX>Bvt!Yn(@MHg4Q8?3>y{<;YdxkXZwyawR#q3-)y6I5;c#h6dV=yl@UX^ytea^_?}t`UEFaDUTSXU)GN?+{u4nCu?G<_ure zQ>q6p{l_Lnuj;fe9R49d+`WV3fd9xNK}=(8=`t(+l{;i=L-<}WZ@RKJqy+rr)ma?- zX2OijYX1>Jx;db zm4Y03GGEX!$qj0ega z2mff}J4X$>x}J~AQ@yzUcK(kx{_FUI>!bPTWNES+c5=(`ySC^ZZsFYgZ@iA)OS#;z zx&C>*x4XYZ^y0X)uT0dANTjvW$Sg1eFajOnmnoha=n;UdqWyIF z3)JwX{va_WnK*U6P?9hXmrXBKdZO>_d*A{X7>&cqkX9H&IN=PZ>*|qvYuOjA*K*IF z?Lw?pPUOC8o%<{ml?AsS3cdY1sxHV@gZNrTdLMrdZG-+>MD<{xV@)MIATqRLL~p`# zC`Q-%Z>EUuAdAG|4|(4;UY;{-*NjHmmh15T#`}jWBKCop*674GC?ukFtXIx`Hj@ai z+|~}Nh}QHtD`fK32~`EoNEdeyF7tj*14tB)Qhe~vUyY=>18RlFcFcaqzUCtIXdRBo zR`5y8DKVSQ?rf(6aQ^!_g^0?*63R{Ar^8eeZOSHI2Cz6ji@m=@_CMq6eUztMYXw z*535YG-;_E4T$erdp;&isb_g&SKnM*nSVGM)_AM^yFQlEePsvROJR7|NGtez2|G(N zX3)N#1_3}_NzqTR8+?s*8#z@sNrw`(V_Wm&{!NhL$t>*$eW8vizmLBQiY3+k1Hud_ zH+fSfy~KFWgkj6XewXX9plfp9nhhEF^^G!ovZ1-;SL=VWOKrh9?WlGQ*Ra~{zE}z$ zn9F?GP?{UsSIFe3tyVB>uJI|AQIct4q}@#5hjjsojDk4P9g=Rm^O&cp#$kv=VH{hT zd9|9zwGDiUdTlZ~ggdKN@6KDF;c!pIq9V6gwO;sTpK(urlt3I`%oa<3ckAo+t=o?* zvy2GsnY#)XgDdICP%!3D|-@llssIG74p?UHc)R$48~G~n^~96j8c>yoaa~BROg80 zJe)Dvoe?j!aHr1C>L9tYNS+$eY5-}i$eAeP(aaAHTx_G|_zM(|VU{0~5U)k$^-u0=>2x2048!&9UJKpv(ojy1j~_wY#rH8%hBEd*Zq?>;sd>feu_^ zyf?<_D?stp&=v-HEhVd| z+%)+SevFu;nu03L5puy+9M+?BOm~*jX6zWYpC*k;y2bC z6N|VaO-heIYlXWavya0Z>H29}bo5QeLG&nur{jezlMps(>KnzZIw6V!jd=OM#WoXu zp1L5;O#ucmy4TcP?9m`Wwd{C-=zOLjJB`H1w(Qa<2>&(@`Ck0&N0bNq!|H=(qiF{N z;Rng)T&}I-M@7g{lLE!@Am(&Pvu%WG)HMwIAT?8)c*|y-PDR{VVB#_B_4Yd3&9-yo zV2#6;t3zLI`h}32fm+9}Fo15@jyuE98xxP$5gnhG^>DxSRuG7B$jPg>cE5sl{e@LM zE@ees6V6iz=LLJzOMeYXgN@~&edd%KK3mp=)gZ}GV90h|!YZTW{oh8}a&H=ZNO^KA zztZ+U{+`?Pl++cD??SxxHnz!1s^bZqwGeHNGaM+Sq)VY2m0Gt~dHkA$XiRHunl~*? z;MZT{B7TL;d2QkAdY`WbNs91EWQOy~vVFFksGCL~S8gk7dO{dW z@*9p%UC=Z1xMWA*1mz?SUA_xpZ2s%)AsD@GWXWc;gRndAMVMnb+-?C6;P42zUfD+Geh_uMmb$2(m3 zFzT36e)EdFE*r^fv~?y{-MUkzpQO->lb99ZWWq-pYoG>L&fy+(0W24`ef8VJzhHWb zpc;A9l)I*EJsAns#)?s1q3(SU;K*D{N6!oO*;43R)WBi@QlcaZrD7gmI>GMthEAFVS(sSw?&wrV zxmKV^=I2}C;Y4u_K27#6$|}*j(bM~Hp0YmyrR&rhStnuZz{GIue0R9%orqdl;hF-^ z%O_ho8wqj$%iF=+62&N`hewNyWdX_zX*SB!TmkUf>#RlGJKDIYV3`uU?7Gn_wvG0HM%yRAc(CDMLj*sVeQ z3dt{fn(rWDCcE0xLoUD_$Qmd&VM5ZC;MYHiPN!Ro3s})w8nVoY0(`wKF(I1j?~nR< zOmu~L+_3LlB+Xk-P_{qOuir3fnH6>DG_lWNVxE-IepC}iRDD&wrP~TGPPDC6B6uaj zOUkXV?~=L~A}ET)aj39g#$5GDU4N8hIvmn^QTsQSr7tUagiE%3)1`iazwsBHhD$Ba zbFNc8kL*&x^l!(fGOix-{Y>^#vE#q%zAYql%iS?g{}0F#>Hml<16McU4@3w{&nZtB z-#mS57OY5X{`U1-S)WZ*o={^mrW<{7=eY3Z=PMz2ZhwioiU}wf@ye{qjTktqN3FVV z4SRA?IIYRj;#*x`g@blmpr(wv*t=a3UUAyb)SEQu%aI;DYZ7-^IE@U8;PyJ&suWK0 zI&qfFxor*qnIo?w{(u*IE0>RzW3)Iv3)xyj<%g*jCWWwB!yb(%E z#zlfl4buyS%&cF@D)qu(rTd7X6HP-_oca0kYM!EV2}YCXeV1bwZxFq{xJdIRX|fs zSIu&W@_a&7QL^jnw3XVejY%KYz6W$#+B09-?xniqvz3(edxJ4s0>siIMY+7k+_t@k z;l78=YRQct`Z0eVEm@zG55^(oH}m)y*I*)5&&dF5M~7vncDtTdd@~VX7?_e_Xpp8+ z%wzPWOOP1_YXF<1ZQ`>S3x}rZr`XS}HS-(QorKQO^Na zLtCRlap5pLQKz9eNvN)_x0PH%okSE|n#OQp(6lG)&!H9HBZ!sX$MN%V{5_l) z#0&Uu#S;Hl<@Ye+jA|=PK`c=Ub@e3&2LJ#IOX7=HTy(I6e>6F*gebu=tK}bw9VCg} z;e<&B`hY=^%#@ps#V5J^>Au_3^wwH7Yon9)S+jch|Jfa7zRu=mSD9-TK|=89sn^JM z>BtD_*6PIt?#1T$`PG1*pFEnH<;KO^zT?r|uTC271DNKuEU>Zl_;|+%_$~d^*AaN# z{OCa(6iL$}o38lO(bn?#aJ#c}lw2WgpR+w}8yn=Lt*N8a+0n$MDnNA707u*ysRKb@ zO;i$`k9eHXuDnR>5QK8eVki2Ewso&)#G^g86GvK@8OGS0^YoHmiF?9ggJwsfOkCx^XCof3Q-;r_f0Y<#;D z7Y~{|iB2%ND_h>Zkk4BhXc(ZV^_75!R%Yins|o$QmdqEUVX++CxG5q@Y)IkVhe`wFA^ zlyEA`+LinUeRl^6eUayb34b8XCZZYnUJ7b`c^YD!I9#uoOQMHiI4wVVmSpWpXL5!! zTRm!o%ZJiShaNw(``@+SM-bZh5|HZ}Y;}UCZKyp?dGIbDWRfTlmW} zYuCbidkr_%_24*Utf!(=NDA~bWE{$IeFeV@bc)P;2hM=rdu?X(e*0&Dhc$wF%lI4* z{p>9A9qxP`pTZdGjrd0z^s{_cqA?2H-2VAGIy5+Cs}s{VlcoRNAE*=g)^;lWT>H8W z>F5hwCj$XfOc0o{Tgng>8ucT}&7ZzunXz@YnPrVDwLF0f|_$P7yRRQl!WxiRVK z$D7BS-#-b5ZeK}yG)CUv?dTV9)Fr)Re=UJ|Y^uBf<8=*qMu7UEfT!j!O7Q14I!6LG zX99T5l{ZpK$Kx{!Ltar#8>W*$KInI~KpQ0trZdy)hlphj6aCGr1}G@R`v0}TsJ8siJNmzo z`M1GD#4K|miz!JENRrV~M&w6h#ftrqu!>G|zB)yc7*eYwUUp&2oIMQ6|AdhX75(^N zj~Dp+f4*EKJ3w!*%Vz^oq;JHnG|G|gNt=rg=bJs&os~MBuYc~AI*eabx&I*dJo&VN zw{Fi9Uz=MSB4@2>Ko#PuDDFV7=Y_dhsn^pt3(({B!Th@QddJK2HJ~ohSuGn_MZ|m9eXD1WgjT!W0kdz zfD$@)$z87ZYOw=OEo93fH{rWFmc6FPZ$BKjUhV5hwZ?v>Tap&(7(dafsjbnXJzDN* z&AZYk)s$H-eQ^t98T!B4d+)F&nty#51jR;C1e9J>R60m6K?PB1B2}tL6Y0GZD`Ept ziqt5Gp!5!*L_`SELJvLk5C{n+AwbH$;d!3#^L)>_&UMc5`n|vFegAODlG&YmW@qlX z=QE$(?Cvb5{l#Ud?nyZ6on9$257_jP!QbAP+!eH4_JAr8i$kAuF0I~YK`gpm%Uny| zYN}5rZDvvsBkS>zF=1Jxpr#+vjY$+BhPKIVOCwY`B3eGj8J?wvV8&Z`<~=ZCnTR*L zr$Ie-J4}XXpHHuB!%SPUDyA8mrJWPi8iRwFQWlyo^Om3sq+9Zj|GKm`%<=N=XVOhNY=r<=S$aZwR= zuX?4U+oO7e9Z0|p^_5VxPnX+`trfy;ySGynD`4$v43jjr;C$+gk01C-G6nVy6ot~# zhLf!z-+EB*H^ikV4D$m&fpd+P2_VGQZhCoH!%ITzI1hSv3Uh$)eEbl!6?!t5)|LoE ztjrr{bfgk)(K3)bEwo^)jXuccQdBNTiW;)Dx==Of)i;ztjndF-cUsVYk_3~BifzaX zT38QVGzg#iEGTGBYmq&=_qpk0gH5MsXu;fUHMbs|a)Jp}N3B;FHoZL3$OUepw79vs z4J=cphYu~W!JnWfz7eD@+plbTIJkkjHa?VG1!d$^6bJ)JlgMD%$jFhnUcM2qCOq#N z>}DHo+zlOot(lX7-xC^1SijB+52Q{+^B^M31WoM~(t$>kWKl^mLuW85zWW z$sPjO*Y-i@&$_UlQhJO`?@x@nOlSY?kP@@V01PX3;O_V53*4wVyG|q)Z zPL1w6*@7nic&(B-h?v}lxG~I=VVxai1`+e1KX{QniazNu?V-^04IQIZ`F3u5AB1mw zqK#)ee4e-9=k`8_$C(s3&o;%@ls0!HQlt1ha5wT{d}{|)aD+i2YZKm8RJQRl?FG)|9tRgZ&Cy z@Yu!SqOGu=r|821ji9MV3E=pslhq#=GI*_a&>^d>)d^$4T_Ds#DeB7_NoNgs7{6mZ z{%%dmPbL|Js#w>AEo&U>?24{_mHteOiW*%k0!A0>wWsK$66tj%64bqARzHKP2IaxS8WuMAa^ZrZ<^ zH@RD{UGlwZ0Y!x9&*N2vmT;8e53rxL@4#B@Y7p;c1q>JZu!9ZYZ~?sH6AW_ zHShNcFr`(#Hh8zq0Y9iw4niN-@Xn6!EAbWqzH4cc(32V)4N7pZ`pz7@fDk|-Ezu_a z9;$v>Tv7fpl+Av3 z+4I>(!-pjHUidjqr0Y%@pcX9z`P?}$nq$xC`N5sN)f=tIt6Ea=g(u4rj)<`h9Q!(w`B7tK<8zoub%`BQ1V)cQxflr= zaa|Rv1bRu;7eH|TxD=9QG(sNX(`rOZ9))z!t$`^`6+lKi$2k_D-=jBh!_OvuqP$LA zd#SXA_4;N7*Z`9^XiuqcqI&|Q=Z=ptg=O>sZ@eB~9IZBD~S!27BIdGKu6IaKZj8X9+F1zW=nRY{C{C9XC5)=GOexq+?6q>yYv<-MCT zJ?2M<%iIVFeSQRcmvsIeYz0^A(4ilh6rT{>!y`O3A%~6|GHg)d@HprKagmaTr{i}O zcOa@Mn*tzx`#4?br|9RZ8;CL!d|C1BV&v62mE;xhF?J)+LbSS?<_(P${5XpCQ3@N# zunzt4Hq7YK6dxSpR!_S^i#udHLpGw$T6O3zrv#iA$JpxwZnn|0X!)pgrPZjx3Ruky z{(PO_gtwh>J=uRsz@D#*RB``Vbc|>XE<(t6v2J!pUNz)_QX>D5Os_OQBwQ+ZRgEk` zg#$U8<%SVcmMMbNc=C^o;_Ua_wBfAUm~f7);yowS-&oytE{f)F!C zn1@R&HJbwPP{?96 zogy=Yt`EAQ>9c%Pj|yAUcsW#WAP(e|ZyFSCsIkxM*p(|y+%I&^OxZez zu9iGGWA-JoO|^$;iWwc7&ms#tj3aR-$RIuSjqSz7&*=!1P{YvuA+MTooFynE1O=%=%H+SIU3;rf{ z<3hyNHZ2P3wZUb5TQ1`~DWe{}fPhMllwo8;6~w;6P;DO`Vh`kzn#Pa=*%b2}wByVG5 z6D>`Pdx4@S1Q3>SIKAEXiR+NvQtPN-Miuxy@U2Ud8y%K2Oe6$mM6euf^ zq^c!t3WWu0AmSE$G*l3A7*KghpuNC27%Oxg=1MRA78fG#35@(L^2Sa*dsj{(&>ku5 z(2s)NY@+7|y;%daTa}KZn##O^1oV$d+T!C$S}`M~dq0$_x43VT7X7Sn9F=y54hwkb z4Gw7b2KrvY;c!Bo`?*z0NhFvat3pq&`2ZH7U9-0W?IC*g)S~@CQTdA_jmEzkhix4eKeaTg*$1nqw zTEw_!3@JF19K3*lfcDNfH_`tgfB-|On!v)pl5Bz3|AbE}l414KC?E%knt+Y}v6ARJ zsI)6Jurh}d`dR}ELV1H%q9o7(%rNlj{Sh2YRMpPlw_a=obpukpD>j?Zf|# zr2i+(pBE1J&mVm%5XvL}xoc>J%gX%Jm`116ZA7c_-PfJR*y$TR*U zT0U}TV*!PbZi*srspCtPU6=`Ey{m)d%B-X;V?R$J=P1+ga?k+7O}Tdmmj8zJe86@IVFCRr*8-rm=_Z|4J(fb0Nl&_ZpQHu_V<` z-Cmy~HHOAO^JR|cs5J^=6m)1=XE$OS>UdlV?62`4iDAnh+{I*!^#lmvl-G!_035Y< zts@$DSdAQD=+d_#W|)XjxD650B*~NOkD6qSA54d%dQ(3?$G@_%4bar(&D>O}jMCNm zq{q|#1!IQW{%~Zhyh8wKCiK-!3bG!Br0sTb6;i+!uEPKZoZ0ZOi?-~OZ)y>OXV**EYqu%AN^3n!ao?Qt<@m{B5|2#Qg_}UI#H(pyc|z$D{V<*SB!|8&!r_%qXcHZ zRgY-WuG$FGs~8jkLsSLY=(}*m)4$NHOq{u(55G+R78~sK?K< zI&WEmpW(ZA&qYmA|her3tB=S+n+ugo@PW#i-WttnW?>KXR=Q&VCOg z?wZq%^b3x|;3$3F5cbhRi=XVA7qeI_3jm%)WjVbJZ*v3`wCg=_(%w^cN zhPhAJJ1v^;4s7_$3|!DWmUHA=#rI8-%?{d+RWt6Sih@({Nw&;L z2^j8ZwBR50-WeobfLM$Q;jDJV7EWjaU02&DsNkz$) z8l*)3QQ#iq{%1L_?y(aTvnH!xai_Aj%vkcaU|h>S)4YixC6T7CJjLXR<^f0|SOPMP zIbTuJqkf8~65Dl^ae=#{Qe7>SmAo?Y6Hb~vFB5BQ+H)kVe8qhC-CpVCr+QqNI?h|T zD2Rs?C!!PF^xRV8H1RiR#rA*q&BH&MVs|ng1qpk+H<$dX&lxZ-Ktl_TBq%=c7QDS! zEJ-?mzH1c{aTL6NR;UmbGJJM&mzYXErBG~wOnkU)RJdm15{wi&6mQ3pU(!|s-70Z& zx>mB=nT0-ub8pNfy@;B-u7fvKV&L~GHbOQ!oV)sikRhGzgxbgE{MSkI zmT14k$7?D@xFIC^dX5%LrbJ54y7mG#k=-|yz;DtDnb~aDbD~+Ne5GV=*tUJ`THcLo z_`zr1##x9(W!5m;b@lJaY^$vTOC1OWXSDjy0yVeGs_nNjU$+zRk$RTVNhvsF$f*MP zf)(`**KmzX@c0DO3pXs*0Ru*R9^2W?>*NXRrN$xpX<4na6&so*nH5jWQ-_EGVG5dA z!hArI4ME9am0ULlDA<`(9XfGXJU`(p;4x(flq`bn0A%@}c~9L39>hs$#mqngBQe_& zDej82f(dWnLDoz`55x^>-F-V!gD7Vd)>;^;t4#CQ{j(;dQV_9t7zmf~NS{Dz&1<9~ z0L|Au2~kFn?uGi34||^OWHFwiXe|USScVlj7j_gDm-IV_^Z%>!Tv(d01zD{B1;ke@tGLRP8ngVo zM<5YdEdEPDXwi^bjeau^LXUK+Ai?&7|EHuT?*%^NX)=CD%N!g3o-^9%nV1+yNDn0zgjdKR65VhJ~JG;;L<_;Jee>B?r%-lV5 zmMOi9Y?!*{q!Tl$J>*)|FYRT6VAj%YM@ z0AdnRGIQo3Dwlh1-E%;6;OF}y>lGA4*u9edZI#VcUwJK~&PBBLW%_2OHU+y(EbI&E z#n_MwcSB27*!1%8Rb9KVIFucLDg(Kx6D85!sQyN#F`p0>s9kYIKQf6{f@!Lkj=tcc_KN`(1O-8OizGUlTm z$FWli>5;2&D_8Zkuusyfiq=ZCaiHUCjf`tdNdl)JTnhgh3md@S&`V=@liIg6O*V6a z_$K7Yw?n}$U}M`89`-5>!-?_vOu-tAE7o_zp(W+xEVhhsGbebBvA(%+CHwDkH+i3q z=3a{`Y+{4^EQKd2oLujF&+4T=cVwwxF4(-Shh}GA?_OyHWuIE8wG_CtRWDXa3XNMy zEWqqbSiFzw2>e0B@*nX#^14EeB?pGk)$C;rKQsIk<+pSGiqrbgZN@6yR{8}lztqa& zj<8#LRH=^=K}XNA>)W!E?-kx0I3}JualwA%V>!&e1Y5H1H>T-zTr(_Ee{*9yxV6BA z@_gKu`rg0&Mdn4uDhOOiGcJ8S!g9HGcT%pOOlHnh*PN_b*a+nxTjBI2tNUnc?WQNT zzsDRfvmK11N(f#ldv`$d0zUO;LF9Xw-r5ZTy z_OTD4k$=Kez!{n3(3yqrK|b!FZObnV3aGoAorQ#4K=p*|KC4N6r*>fQ05lH{cS9Cc zzcZy7f1G0p=)z9jkDpwI;?G#WwuyG=EOEvR7uS4RFPF&77+xpTb%ofC0?L0i@^<}) zm6LXe2@k>1)$6Z<-ZV+Lg0UrK+{5Y` zByK|3qZ(l!?)cM2I5|FaWvr$eD)%PNVvdV3D+rRKQ3)5;I9ou0Ei333gmGT^QhQQ{ zXXj#a4!=MAyt`%DBwhXZ`MCi&nD-UUuUAGw-;7vCA&5WdK+F zlG0&WmVD3fw~&BKQx4?~1t&{!?ERt2Wy9E-oC`SfsMolnTg7KKPf0Y^!mbo^7E)m2 z4(LNQW02_Uwp5cXWOSJam~tTO3qs7H2DtCT60H+vzQF#i*#7Ho)*VG4C(HL0lx2aN z>`{k%=2Hby`@}!gSxo(T1Ksr~nKm+>0hy}Gv)wInhUA3C_9)|*N zeu;=aS`g5pi7nZLEl>D=s7NRIb-!!ss<6}20y>@hqE1RQZc`8oypaYCPl>bBMATprXAig)7N)Seb2q3hKzGPCYjB1w`8oyK#Zg2n_!yOgH=wyNZt z54VxH=x&?R91mmQAlY)q9joWW72S4z?x4UADUB?)kk1X$)OZEIuBasTxh$}F@YkTV zkkb}rZwtM7-}MF0Y@93iFNb~yYKs-)@bX_8V@=g9YhQK%9)n(_yo1 zTrBlYbR(uco*ZW?7}BkBnT0=T!>_mn2iTEwcr@cN@+<_;_{#$>N)}NrTco6=98h+M`fVk?O77dY{JQOSasE^@O-C1a9GLbzvch9h42c5vl%|^t24P;|cng z)%@2Ww|73VMw&Sm(KkvaBs52J0)<{Jd23uiIw1RxTw4mH={hnj>HzT8f zgLsC1cCvETPt)Ka)owk~>iQRK3C!txli1cMMyo~=ao=aHXd@(oI25xh$nk8LZ?gQE z0hxJ6v%t%8X?devKFHzI*6Tt*Wuzo|0Ry@3lLe|D<16<7Pj%|-Zlh3TAGg3>4KY+| z2+N=rp@j`AR{SCA%XlX@l31gwR){qo|7fhP0TcoOnUt`Ublk_msC34$^d^tzQPI1v zaAiZ0Rfcb4@Zu_`u9)%Aia!?mNaWjCX6-)e+IrQv9b=w4{{@dXNhMPK#kWX}I9oKh zNF4n(FvIM2Eh2>QqAOflXERqbf5I|y;Aga-ro+c3hOnKc=+RNeZa68qWF8*x zL1PTe!{0U4lwTxA=JuB%!YYl%9HNX%a4yK5#KnZh@%XK2>RO<|bcU%C#P7}(V72Q$ zzbmy;Az7>wGf_%E2^f+)0$^6Jt(MU2NNMlTRP(N)XNt|_~P&B6{E#aO*bUR=8g zJEt8Ts7HS@ks7ps@)aGiFd6i)gSM>9=q2}(Ybn*l4t3KqQ^*3%Cr>slj#~(~L*#}- z`U8YAsR=*FkqW)7cEM=w1l-q&$&E%Le^exiM53*%c-(l3dR#7;Vn9BQaWFN9OnNIXY;FbsySuvq(Vangg66|g=1t(R zFx3&dw^LF?0LWyr%#EPJa8M55PDV@vsajfE(PIn&j9xj#60d@rgPsm0Y;*NA-cAeZ zQmLritq3wY)erh)c~h%H?nc0;7nbf80Gg6ObqLa5(-i`qBWh!1{4=_Ca=ynp%%-{N zCt2Dd%d%3tb#Du9IC*w#O4@vem}T7NyH;=3L_Zu`b@~ply1Kd+7aJA&nFKcwi@KC9 z+|WOpv86}JvJmK0Zb(V6Cq-$!bMMcBmP?`ex0h%T_eB7!9+hQqW4jbAt*wHrc0!#kdA!h$aIRB^oKi{Wk1)9&{^81#{ZS2ap<-830~ObL%@U)LCL z?!qWxoKwAb)R#)eI)L1AlP0EQFLFc#NpbZw^&6Slz3+4A;t9Y_qwVyDXt#aS8O>!% z$saA1WtuXE?heGe$m|R!t_Y`;I!5tzH+k%m1|6!l!m2=ps)K1iJ-fqS_XAO0Vz5m; z6h+@dq%fVZ>2a=8by<%xCsz+koLUM`MoJc$z|P`4yWK4oVK1oV6J#-mVU3N9t?vqT zJy~9-N%pF4tSJ$yXG=pW&Nhszb*8R74~i$c4yWxxZ#^Zc4L2G{cv->;r`}lF=LqKg z2tPx*p3;cRm51cuQapWfXb5Y*YFAK`$Hgtnh6%XTl33wp(IJq93^v8d9;gu^iEu=m z3hJurs5JjPy2(3Q18`o-=%Xe8dM;XeQ8Z91a0i<49V3djtL?}#j}UIU}_&O>f~){v1KmW!58?#n{PKyJx= zKdHPO&%ig(#1Y^{0t*HB$8Wp`cEF;W=ZNG&G7js zJyZ|$ZhW7W?u0=J8c7``H>df2PhL)P9DH2&iL8v?=u+L}!S*k2v;k6vkKsDAAK^(8@lUg%j$-2GAYxD5I{FsA=pXUl#1e{O;p z80bc5c*gzlof9!8EPlsW{5W|0IQ9Z%4G)jhd=>#-96~?5l5R|1G4$*){r9WLe};wn z{P@vLcw@9`XH^IZ1~n%6*dYV>;Q?u%;Rx(Wsw8Q!F^IdfT*DqNdlcOCED&GrloVCr z7+lm%)~o^#DZ^;5aSqih5f-W|kcIHfD015<3~E0>?F?wbI{-*@So9bOi3Oru#=~() z{CG8Ww~K^^QDG&!f=E&UNxOI`gq)!}1Q9@b{9U?T(%v*Y|GQ;d8+3T5u=dv21y?$~ zul}L;EAfAq!GDjU(>o?-w9kZ2uhR-I7VGILDQR%g)AY$T(dQ>_T|1NH>1aLLaW3=q zS)EMq`-m3@ z3iPXBnFhFligznM2qgRSEuPMWfN*blY7v=wce13Yb8CxC9WaleKW8|f?qI`1jjtIe z5i*>2A>K+pm{UIqHK-LBa35S}rIG6T7Fh}-7 z=)ZIWQL1;dI&ISIgVv^2wD}Y51!N*iBSnZ{_TlD+lEL$0)O%Y|C^<>iaO?jAX@F5SG4hi5L>s& z*K5xTWi;*MZ1*$pi9KeJrrp1$>t+U$tfj3|9IU<_G#*e&Ja+ioXt6-YRJ+#L`f-Ci?oW`jl$C9INtOaVpGGT0FJE;{4z`bH zTuNt5ioDLG)vPGp6+Uz{VyEtzjKer=#TRh9c)C@4?+8U%7mLe*Z&#IKSfg&YYxR`w zK26j#n#sRQOh3SUXD&|sG10r}$OlBl8Ph|MsB{#knhVRVO*s{hqxuY6)ys}vj8&~73QV;l$KG8q$jieT%4{~*yMOR8`Wk@)~R}9r(CbjwF@#F z{;-B@Te-W!y+56q`GJF3DDCOMo4txd3&TAPKPqPDgcQ2#FRgOHM=l->t;`Z+;P;F| zDYbETTbISIE9dufWMz0t}#(kB%pQsrQxm?{$6jIzTZSx>Bk&PymRdi@a}y4H{IZnnHib2PwYOM5&L$Q z1?`Ce5!5J&9@bjW>mc4y9=Sj<$%eK74zWp<#LW-7oMBO6hhDNE@9FEelgBApzSA$k z8_P^GGuC$_Ct52m6x+=$7S}U>c)0*^?XXwbOju;cW5l!_j{xf)-3@IycA=~RiM(R3+5AErdvtg(+jU?v1(ON*p- zfjkCTJu@Sc!VUhlb{|#!z|&D`G_PaN1029KuCKJq78!2}T;GjJV48XUc(!Iob0%9A z<-XL}QOlV49I{Tz5HztFbe@V(zXV+XO=B1V6?mgzA+gWg=@8y zbEO?eY4s+{_J$6^JbJZmj}p^1_7x(F>}(C#tVKkQ&*v z3Y>JCjywa3dN#^QxPW%B0+u)vH9Ps(Q?w)wI|55egMhH^(L?)Y)t#=kr+rSo9RFAz zqszP`ssaK>0s7A-wW=lk7f`{EWxQ{`o^d>1;}Ylbo~QC)=T*WL#P#OmD;aeGMi6bX z!Sf?8^$B#lEDX;5yqZ76Hkb0_=~UXN-L8ItgoPpHi$Jy;>xfFkgKo1AI(u^7w47`6 zW-FZ6Vm;C7@2Z?8n8SCv?w0MzGPhzWX->12-BX*39*Y}gy8BI*S+)bB5kAXmKT{4# zGz#E>b~%CJhdi0XrOe>!?{^kYU+sF>Wvk6{EbQh-I^&Ey>;WNsyTRCPoa$)U+8xfg ziVT#StcOj;efASNJDM(9r57!>uF<`!Qqy48*)V$d_T5?UeK9>=)w-&x37dN`%n=d< z@-JS(Zna!i**g4wjGud}@+^h*7-tN<=#OUom9W#-UUf-r>)&H2C7>!2Y&?!NtlT_! zXFVoS74Mg;chL$CnMUOV=`)6BacnLidgHE%C8|ma`9YPwH(Lt)sP~XNRwznLkGrv# z;lAMV=|@I`gikcWTH9xg*L%{L)AZY7V{=5Go$o4Gu{2}0x%ySS(l2L(Znb)6+1e&n zi|U6w;Veq)N;jFNb2)lhbo7hVqDU;-x?R49djeXQ=v`rYArI?jtQoQYow=jUckSi} zP|JfMxHq>36(aAZUui#I##lOWZj0Vx=VptEI;U*ytCL@#7)t%GJV>;hUigQRhzqu<+E>?Q{!MGv$KG;qw7;z$wCeWumz^T+8gsp|B%_}K&lFtx#?lIxs?8X=4wJzg2LJ z33_zA`F^Lq&n&hv{1AOeWxhCkN{k%(I%JLEV97c&IXbYa+>-XlMziwDtYPmu>FU^( z@Turn@CE#uQ9w1l^vt5q3Q2T=ojv3)$?jA$Rd8qQsPmhNkW9ASC z3xCKvNHehx(4u}9nr81%!}_U^hrg_gpOVBYSpl!1!Ay7fx>U!<`quMa962-~`uh3G ztsfQq6$7g$F9+jR$U>P)&$gl%+d1SI--)Zupy8HtouBkEzOhDU@@3$mU1zk;f;Nq$W&%Z zDZE}IQV`9$<;xru zCMBr0%s7d0us>lYIpbSJ&&LrB9)HOK$h7Z0gb6fUC~nvR0r1++kM6&>n97sCvL8Fw zsWJVbr0c2|HKgKkP##(|-8 zK^k#CWM}y~4zAICASX3(wbH^|pM7^&eFuIZPo30syc?2!??)K}OaK8rMKvpFm7I28 zqIVPKxz(!u{jP|g7Wv^DE(hTESEz!Vl_7Xjl=)ZIi%+pkDTdp5%aX5p=*IeT-e4$S zWXRaWY2WK@>_L?t*70?)d?nVY5P5(7qsltNGB^hzpyj;bl}4)yUP4jFM{iROKD)P! zroc)s&=)NGPzbtlu%@}lK{zssrstPCXC;fCSw1mR#CldQBVIFi)`R=~nckf318gF_ zs~=4^G6s-H7^|| z;Iu{II(CM8k-_L0PLIqmJax_OY?l84Viz7UHdA1XR3KzrV$B=?7HX_N8t_**;f{0=0JE5A8x6c&r+G;qlOJ4s5$vl4gq4#Gy ze`0**>)Dx=70}dZ>7xUmPP&?FD4Smq$YTD1bybI^9uW(-&zl)OZ?gT4NilOJz7xW; z#Is8y`!uL)9KC2gl+sH7mDBk&!|L{~f|X}J_8a59Y3Wjx2^-z}e73YXCFcz84SE@f zuAj7I)H-^(tS<|ahXo`Ke$(~?k68|=pwtQXK~uIy{>T6dhcV(%*V({Ba1Hto9RsS1 zPoUA6%tr=cnn!7?e$7;k)WpwwDb2}VJk(Lmpoq2X{+*xAkI)iv!lD;v6;9;hIOUeYEX$+zzKLb(j>j z6!uo#bW;fiTWB0k8MF;Om>;-u#^vCl;)g@PG$%^trnf84S;q=1`e|h*?T>x6fM!VlPyy`|H*Jgtna7~Xh z5QjBORE`IHes-M!DN9&mBB72j?|Y~%%yIDl`>!?F1Ayfs_~6AygXK~T4DurGW>$e# zh6ZX*K3>v}dvjDvhkE(`adkxl6zc2fUk?)%c6ZhkwNx~eHT1pW za?kx*xW9{OxRIGtxQCOfvnWXGutumFJp(V7Ku6(FFHi3PwNOpbKk`+hhxc~NhzkD! z3G~nuz4XVV*j9!&g|GPdy9g^v%St)PD#;2f$w|v8TvS$8mK2tkm6Mf`m6wr|my%Of zQ;=7al@->A;2M=&9&` z7ga6_Te^EY`-B8&$o%JY{}kk(EM0UQ16{P}L@7wgDoM%7n#n1sDJrTdT(thT^nZf> zQ*uKeXLr}I|0=nXnylPk$^Q-XS8@%RJ#PMut3MiIubTg9|Nq3Hv(w)c`Ud%X{?Ss- zPBJc@E?zF)fdOgfm-ffj&3e8zTR#cGXL!SZ_D>*sp(3gi&W-s zmHw;ff4A=cmB2r||6j@e&rE+GRmZ@PYofnNguR@ZO3eu;r! z0{>RmZ@PYofnNguR@ZO3eu;r!0{>RmZ@PYofnNguR@ZO3eu;r!0{>RmZ@PYofnNgu zR@ZO3eu;r!0{>RmZ@PYofnNguR@ZO3eu;r!0{>RmZ@PYofnNguR@ZO3eu;r!0{>Rm zZ@PYofnNguR@ZO3eu;r!0{>RmZ@PYofnNguR@ZO3eu;r!0{>RmZ@PYofnNguR@ZO3 zeu;r!0{^$_I{eRbA1>bXhdn~*PjxWAtKef`V1094=aL!y^%|2XeSWkceBH;@rPRa9 zS2>2!iSqEURZsj`x^uCK3u9XIzrFf#vwb8M`^Kp-z4Ux-xah3e{R@4(<-^Qf`tb0W)P zho3eiAkg(n%E~qul5S*Bj#%lO6^ysEwzgKPhe9`EDJ2|=$E2jBGDk;3gS;am>g%kF zwE8s#O=28h(I0W~sj1G2P?VKjyGjZTeCav(^zxLIy**AQrSs6?#i@}Z1JQ(Y^jCt( z=moJ0*5$jo`cJN`tav$2h`p3Q>eNtFe8QdS~oqN?b={jZ24(xsxYV8s~$62 zk(VL>56g~_yyTd+c+UZ~ke6Z1Q~ruq4)Q8sqA>ev*Q`og_u1tLQWH>k>kB16g5QxV z9u9&7* z)X|ocLj3&J2UikLCz===gK8_Qs)z<8m0JDWTT#m16BJ#Niq6vu%k+ln>gkDd#AAh8 zWZU3vZLTeW(drjXgt{`p1DbL9<&rCRtro{V#_r-K@mGD*j6eey^~A;TT^K?5^?d@0 zpZS_OV=&k50=Gk4~0n>t(jc2}X#L7wBJd^8$8=IeCp;)$27 zs6~31GF4n+!gDx`DWxgL#l>ZTbXf%N;nw7hU7v$nQYQqNAERI)sO+W)QvI>-0Z&Yl z)VHbR?NVEZ%6636$UT_z^zza)Rb@5dR{SimCUSv%^LUUFS@yL% zOXRgG>!?r5p0RK9*{8hVSB;I?4UMKgI?LxqoGZ*<)(Ib+kS-?>2)*s?=Tbjk=j7x( zXd``w$K}&iukm2cyqA(yA3Qj!Bk6@qi0VD3xSX4-yK1c2?tgKK_lXn)>-|Yr69huG zEtD0K_S-!!T^K{5z>=HX=I$o2$enVVVQ8S*`8{Y#SM(#PKj(_EiI2^dZ(~*J}G*Z(qyY=C!NAc-{gb) zEj2%8ACSxnt(JFky7b zR#zbD3*2ua#!%;?y!?yO{k5xI=7T0_;ruL)GKWW z=u-;F#7ehteYZdu`g}J@xsm&6Nj^iwvuc8HmcMFF<@1vKgotMled~nc;sE|xY0|MQ z%Og}@EeQTNpK+zIr=m_h=ZkQMrL((uMDOMd&=F&KCr`4%^Pd2 z@I*=|n~mX#6i+tW!6#De*=!t7q*$`qPRcm8sK=_^F&Ow{)-l;?(@=pI&=C-}w?Btb zVcS|`;Rwf#a_rVOX)6tfI$y-fAO<6KKdy6N~QY8{PeW6;2$xZb_cBm`*2UP zy}iAsxcQ7OirlN);~82|AR(iav2>|-<9V?72}L$;(9ug0B7twN&CkxhbWe+0k~ewq zVaRtN-FL9omKJi*T0pt+kY3cx_owLWPT!ahL;ibF?=1nLM;1n*T88r*F`sorO@b@< z#SdC*)@0Vbfac^>OuMQ|b5w#Rf)_6=KYaL5`9$COgO9ch7e6RC7UT2cW=}9*BE$6^ zigV(|_JW;zLBW$JL!C~x)s8Q;?Cp|$P!f=U<@UYCv&U#<# z%{j+(mAQyseF-FQL!2;u+`EwU0y)IogBi#>|L$k)VW`Rk9FHov}}oLd-#dE2@0q(!IKza6V*J=oGBwo+z={aQ%G2=ktMlq^O!?@3iD zXWvq!8y`Mw)=ga*_&9a*SfxgJeFCpyih_vv{+AyX5`x<1WHCOPnHdcVdPj@pn`CU6 zrOX#U@O(*Z=s=biX1^fruHO50&|2C&Gb5b5RrG?`uZ*IQ@9!B==LIeOv!;Vcq+URP zF-PTTx(5KJ5@CV`RyF1MUgO@oJ7{3qT8@8Zz!>ne-m-;W9Zg~G#}JGzBrTg(MIS6N zyD*e@;htzK1YYYmwqI=30ak1N^#JF;>v&OiGZqrlMgO&#sVbv_nj`a3_ z@lp~$ndQJIDhl;q=wOfbW`E@9>FGI)Sl!_ba&xn+s;MD0K*pIH={5sVANDhcrwP0s zOebA{C9dzz?P1;2n#5uKPPYv4v&G}jb?#n+S2qjMzuQZgT5>9*(ka75GTg_MjOn|U z=)uZKn-Zz}qEEULa37vu)H5VVV@p8?4&Z;>Eh~UNK6@)PB`be#gkJDJl`?qc!oi3o zUiu)+YoPmG;@Tz7{paXO1+HE?l6FpeAil+w?k0J7c*xL4d#%Df|6r`jV0wylygmPU z?B0lLVPO%C)MQh!_wm7p3Gi4f9~+^^&^KH!3#IiZQ z_vYvNn(y&BPsny`Y%Kh91ph?ttuI_5M9bmTvuYP59r^K(2H;kEOZ6SX!McA4uk zUr=|m?YL-m2Chu@O_^lD$>h3C@)ND)wEy6&B`fd|?{F&i)t~=a;btr|M{uAT4Dhe6 z)Ke}Nn!cVZeE~h-2YKbxr6`$Gd}#sCHbL&WxM5*+Fk5Nyb7?GzsdTe}!{Z&; z26kL)M2`_26%^`lL?W^JT*l#xf4Z2Ou_66mPSoXloWwVZRat5oIp=73y1Qe#+S&>N z#>dCI9VZ_1#mG%fOf*c6h2w_4ef!2YIoHQ(B4l!I{&l1ls;aJT^wt-%*%Mujq5tk2 zn@ozq*t4}ReSD*=q@-m1vNgM^zJ7d3#b{L>5&a`eL{#2zz}?exqDr!0WNZxjFcx&w zq~3WvcwlVoKFcwaFJ?E6AEUo>R?)0rCA7aTq(RyKc5i4S#pix4dZ`tRw1CniWUB^PdNVn6@>=B@3T8!nB`Kp Q_q_gfT_c_1%Xc3AKg*O6b^rhX literal 0 HcmV?d00001 diff --git a/htdocs/takepos/img/arrow-next.png b/htdocs/takepos/img/arrow-next.png new file mode 100644 index 0000000000000000000000000000000000000000..1056f024390c8e3e183a9b929b82a8851158db69 GIT binary patch literal 5125 zcmV+g6#DClP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z000RvNklb)D8irrHPAMYLnqqnWL5-@XYT zCAKL6ATE*(YNw{ls?p zDN-YKS&0W$;(?@Ygl}_hMW09-=OQ^$mlJttB_39c522Y!x{x$6rno@rOr^FR`I!~D zo6wIow}QV;t%D==?W+-oR_314XC~>jq)`g1El9n-D<5XOcra>v_eSca%mYcsfmSSH zWi08XF~u0ETO>6yrzv-qQX_NPa%UyA-Qjy>S2Ca)7m{8WQ_R{fb?Z-PIy-xFBIyG{ z*Jdc`gRN()X>F&rQR7^BEY105Cg~`)NRn*)uxri7lAhz9b53pEo+Gt8q5G2F(w)6` z?SmNBx0B1%E7=*L{nBe&){eeY+qm&oEYron*mmt8aU_XOZR5rVgpP)R?b`jA-{f}0 zLLW-HByL0*M=tI0LFy7hKi6`(u8Tua(v@^>j}w`C1EJ5A_t|u9V`NNmM5adQlsL4< zjZS?-=B}3KZXk4vJGPeRj?6=M>flmap)a-m`WVnIrjj1J61z?D;}t?DL*EYgK?y1~ z89GUZp)>Y2LPKi9<8~mSPY^l_u}?z0u=hdH?nIq)%(LOhm}2B}Q1mLbJ!jxj>=fq2 zT+0=aX>wBArMr&^ovqmS>n`=hxTNuVcy7$0-TDvvXHJ{q!?h)}v>=XkYwDEq3he+|~a6 zzB-+buCA{1{{3(0={bf3jUTDSj#Z(rL2UmqBy{|Ep0d!Aw7a{jM~{9%&3ZB9c`M?F zy;$SNl!ab}j$NDkn_iSMWT!sQMQA#9oW3+FwH*!zxd@HejWDp@#3{9wpJHh>old8e z(1;zMH;qYcPbuxUy}FCVLcjn1ze>+V?8@|;yf{vio%%SH3fCF_5Iej-jYw^O%X%qQ z7_q(6YpPo})v2GRSY^ca&eJHQPG!Xdv7?}om5?Sn^|RC~jo4nP?NhBC#gujrT?@+2 zV=30|GWyz4Jj|)mbZl?b@~W=XPjjm_V#hx)R+jqg?9EV_exe1jozt^^dGFLua;`dJ zJLgFVsfW2&9kHF_w^Q5y8oJaSu^rN_8bPXd>L=73v15%ORiz$MZ^Vu@f|QopUgVMJ zf!MwxNZ&`Nrb{Ds)ZMy@)O*w!u|2ZqL+Sx_Mr@A^oJt-0jn)x6P0D(=?fSO{u@T#M zw=OI71L}*|0eIk2YT^fChoFzth>g??iHM!juvn&3cTp0t1JZRN^#C0aJ0JrWQUhYQ zf-+LGJ&xER*>fQ^Aa-({nn4kAR2`5Iec}0WA@GcXt=5Ax^RX`s>fq z&s!`O`t<1&QbT+^di0Ba{PAAt=XE+A-Me=WsUbe0t44_T?|-9HqflBxUtL`>D54QU zBQ+p2QUgLGH9{jaQX@1}m3m6K5IP`J7gEnr5upPzcOf+(baL@yLb(t+AQKl-141X) zsmGKHp#w5@AvJ>{Lbqa2EOl@4v$Hqfs4YT=z?fpo)xF85loz1`P|7=`M(FIN{)74= zbO8QvDfO88B6I*sc~@#sl*F)z&_RYoNpdwP(yb9X>MmVXYPQP}+9wkqQeRMKg!V{j z-%4j{o2&m;<`;}aXfMo-DSo*Ai_1)%eYZyFc)N5RsejF}!ktd1ve1jgLKhbo2<^eM zO7SDd2-4|vw7Ao28lfF93MREN#Voaf5uw8mh}NrM zom!G!r&Q6!VxiBUzaVrtYWq}MYGaDA5<7FR?5-a|H^$id6jtg~2gXgsM(B73#A|9T z>8+CL^4|Bh#Sywu)-L0%;%iB7m6s`2`nHaZ(2diWKaF*2+pRw+(c3+*c5H-hoT)Lz z!+(2Fh)yj@FH)`gb;m|%Cp79!qn+Az>q|+4RI7jI&K-UI`V|eEV{AeP~S zl=2Zk==gnUTxz=;^pax*n+%6_cMpAaYDqekG~<}TcbHjE)C#GMDdwri5U3wJtS9Y| z+KN4P^_vK-=d_9KaPLxIXC`6@tce{?XD+8w6GOmf?C{m8uVVC3@WuXkO^3 z;|F3Rbkb5^4-(?0qp1+ZLO`%gO~y{ILu8@n2d)QC;wX#Jo_#zyFrGxa*L z*`R3$FJcoqN~x{br&^w}I>(zRnQM6p>1m8_E~-quCS&&{y;Z_@D`+7zEzjkc`hMY7 zX6iK^dn)OnxXW%Vj3qq`A#^gG`bO72k#vk#!FXv*aT4+kv~o$0I6~Y=K7M>Bj-29} z7f#y{H(K4PZ*=W}q;tBqv+jK4&6HWJZ!jyVZ$y$~@u~GPjOFRl1xStD$c)s;ovO@8y||Bsn0NS)I#2n#T7O&XX$q?mt(O|0Eo@T)KxzP_20&^6 nqy|80KxzP_20&_n=J@{rM(599Mih5M00000NkvXXu0mjfz6HQz literal 0 HcmV?d00001 diff --git a/htdocs/takepos/img/arrow-prev-top.png b/htdocs/takepos/img/arrow-prev-top.png new file mode 100644 index 0000000000000000000000000000000000000000..23567d35890d19d066aad433e6999503aabccaaa GIT binary patch literal 47668 zcmeFYWl&u~w5UlS!QCB#ySqzphv4o9cefzH;o$C0aCdiicXx+_!zB0KH&buw%~ZX* zRr70hb@$r4S9hROKLiSfuYL%t6%Pt`-}f};ya6JIIGy1IlCD;nt}QaZMpN65Y7O_@b&BcKY1q8qz zgF)-Vd|$h3BaFG!tgdyQyZL4n8JOLkcv z;EY%4K+pQwe!P9}d0Oy{{FLdMc<)3i(wy_+B)0Ml(tlVVdP|#nmiBph6Zg4&E7Irh ze%rf)^!2?1eU2^Z-zDiCazgIEa;gY*Zq-9Dbbx+-xjXvy>+KXQK_BNAuiq(n#!Ed| zf&PtKcLgW^y6J}n*s9=PZ{@x~ckH}ZxaovFFMJ8C#rW{muo2SG|9E$Le!TMkh2OzT zETix9`P1)H&F2%qIJ}s=C78U`RfcBZstPtMpzv!=;+xEVN6_zEyVH-)aAXnae^LC; zM#+I1=t$4$NUQG1fVIGF!dwNwQk8n*9gY9HvywJeBH}NbqaXi{!r%JedZ-InbHTuP zIc%(cs{B0#KH6?;;&Fl;IQnE`wFFaUgok2B=O2%s=t#C-dn97f$>p4PkQ3;S2B5x% zY2azzO4p)FKoPkL^kzMSYpZU6`I|v}?T$FcHp`=!X@02sj%q%H>!Vft#We*5~R1;Gh}~!+XxI?Ycs?8sBe5-avM!!QRF+woK+Pc{pQW9G8y=u zFIw^pH?JcURrChdU_NSBJ=9WLXx+Dn_w)|o%^NbSTA6ExeZM*c(Y_2q(RISZHH|#a zS=k&4W<$z#5kQ|`EUFXbmPut!0BJs37oE!=sMKtCd*m2kUS+g7q}) z*y4NkSlo3WffL&`IDD?#&VB)9@Zdu`rjOW)Wi8eIej`xZaEJynEkU+!FiaxFftT1@ ztcVmDDbw>-nt)dBX>>MvI62|D^=C_5VSpwobf#_m0#|vY=u3*|Dp?Va3LoMzD`E+R z!Ankrwlq?wPk>EdsW-)d^4-KUOWIDN30o7OORf(PXj~7qRwcQCm;*9WdT#_P#^@H; zh3A-}s7_V#I~;#`1WphBK%%YSH`=1f6MS565|Oq;&XmZLZxGw_Xi0*DZNGA61FTmWc-+cBaWXJvcZ8lp|7=Xf)yD;t>%aoQMBQ2z(Z7|V)Z`=;$K13lj%r9olbzAKW_VKjJ> z6+OB0P@0o<(5BxXTi8-ONr_U@@y9W#*15kG`$qR7WPdAsgA(!x_9D+=vx1kgK^`<8 zH~A%QYT&7<@nV~0E5m~qIJ^6f31nDwaN*@l2%gvgh~h=p(1jZgd-InNbRQ|VNakn| zv7p-k1D8|ghEv773+Z3HuM-ELN3I|Yol^;*_rr^DS~5lC*dzLWs^G}7T@x$%swJ2S zgsU|IN1+gv+Qjcv8Co=psuCRe_rW^+YqrH<<#iQldrpUMi*BaB3cPf<34~uMAvbUf zzbKHjZ^k2B39CEhS6eJ2v=vBm&h6buwWoM+R1m!w3ic~8nF~f9XNiiFT6D(NNpk*3 zbL(YBf6hWE+QI5ij4IkmCOit>MQ$2q6K))HMfnlxqVOjHe9)zeYbliv|H3gcDz^nW zCO*)T6=!RE+P;o)ssClS1MpEtcYWDV}jIW{vCXpUwRNXLP)%E z{ik}QmUeSI@X0_%@!}dLu7$<`>0X{FN@EBks-*#%6<=5&K38p!Q>N8ypClnt<0$vX z#vuh0H#zqXi!+W6X5g5Sy=Hk=?Pi!hWT#L#*Wf*f!r6`|+9z%1K0!YmpvORb=Yi%( zRysv;gK${s_QQK#Rg~E4#xNLx&lK4Qog1t2b}V7Ja$?(>iEAW3yr*>XPcnsQ{DWSp z(Jmb=_#bmHtv!E?>i`Yw${v?^V@n4`dR969{FX^%*{wun;}B&w`@BM6u7gzf9W3#N zGU9VntYae7Cdulb1#u4%mRko;`Ne#8=5Jf@q%0?g#vHC*Cc#}thfiKCWK{)s7i^8n z`s!$-BjWoo2ML}OY^VnhN9(_hl8OE>S$ZQ2CsYFRl6R#b)I5XZSqP(LmILAD>fH4S z@B){kMzHH8zFm7KU~4iQ@@8kSt`|>I_Wcp!jOs>ZH70bdjwa`3#%2>UMyA{$NJDk@ z_#u$KrBh0f()UL=ke0Oes0E%g6G)WBkm4_D%gq|^H2Mp^n)TiqF?-_r&izm95X!x^ z!&^6F$Mu-WtSsXTYTCvIAyKba$25U6MTK-K)uM487pa2RYJ0i%PxHQ5JeyPtTq|f& zHvsf+Jr0Ml{^p82^6$R^g}>Nv@yim=H>L#YRucmmfEp{@x{v zGI?ncP|f`NZ6eUItp41Rzbr?E8f05omY#m7L`|^?r$)ZBj@3#87wp}0ZNG7XS3I}) z`=WA3$ZW$Jr$o?xW#r8ZAHTK^&$VzAoika+CG1O*4wP2bTs$bO7g|Kkle1hmw$x34 z!~ca*;WZxGI%y0DuDPeTE)xNZk zy^b(kwK>&-nYjS>Y5t5Mn{ZgIPlo3a?VhV+gN_}v+J6c_8>1e&=~D^FpKr6k;RI_< zm|$y3!Eb;gYbo>pG)1m8kVy3oQ-q7hx#dw8r9q(4ylQZNoIqN2FL)-ZPSUAOu9ZmB zS{dmDCrDlqV=k)`n#Z!HvZ#h`a(eG!tk^u-RTQ-%%448B+Sn zxSP4{lA#=?(ZSt}*NF$Nr9)VV#~av4^E#~NWMX>COzsog2IaG&u%{ssjlqtoiHjCR zidcr};4Qoz$HFkdY;|W4wnT2DC7=v>7e(64n^h_a z$o8FFBDVfu`2l6tD~SYC6PlP+3Jl7nBcW>|AJRm?IzmA}q>^!s<}C*T^wy zR}uks*0}CKDRv>|50vW2fINA`pIzF|^GfLSlY=8?)`~2vYovMyOBOIukd^K+z1#EX zVK0IbYbPU$@!-ZmWrp)eS!ZBzXW&TahxGQOigr#ubL{<9tVDOXwkEaInG)@Zbw*k|QXM{JAB=fY{}Akzi_pbs(Wel2X<^c%Kl}7RSmIAP zX`)~~Y4ox{halx?BdzD#S1;lnr{K zqQn*!7A=rv9>O34c+D{Q3Qv>_N5y<{m$+^MI{uO=xZ>&kNb8(|^b9m^R^_^3!19O( zkA8TrcctX8!0kTvXu0Q&KiD1)kL}`+IcJIsEJFDbHky$&>oI=4-4)LbMzcUzckZus zP3y2Yg=wN02nc}~MR{ebW@H}t07R8`L@Q785OJVW;5fEZ7Ac@ zfMS5X%uQPSe41lZL7jGh5oc>Ymc5|fJy`hnrg1x?DV64EYhs{+XveW3P$a_PgWh;eM1wC=JJb8k}Kt&B|j7|k0bCN2JfVf9$6u5g@ zWvgw;mr(!Kk3RmL zI3=4fL@2w>EYXD2ANq9+d^rKndTugCFzxa8_5;Qn?NOMp|w zJ5oYRDU=N}t+2iMz_$3z<<+2z$@n$H7&>HaHpZ8|Gui)7n=LN9DAAwzM1-4R+4>{zTrY9H`Evs4z+6pk z>F3qLpPF1W!A<0CV!G_@`}BXRoO#O^AfsA2Bp1_A#8-#!chvJ1VQJ~z_Di*DYxQIV zYbZ8jsRkIYKv$Zai_NwM2)ORUyT&$5rko2U=}8pMFr=rbfw>nj?kh?a2PdQxagFBt zNKl*h%6X4YaF29}E)0pw5D_`H(u}_wHIovH4jV1Y0GGoH>$NG&WU5Yl)tAMk+->%w zIVvHaj-c7Z&UcI%D6@Fk=(yRn(P~H$S`qYd_#;geLZ@So=q7NW6h@^X+xEvC`sDmg ze35#^=nI=F5)5uEhoMpkOJ7*H>}E7o7#KE_2-{*nH$d`_)Lz0Ek-@+v8k_T@BI& z0abQurI10Buegi$XBH-3MMD#F{o+FwSrHfdc}EvK)L#BZhcS!X8aQm8aad-4qYVG+ zCwNc3$*uOhnA%rU9YJR)8CBZ^|)l$O~nl@(uwfI)=}0Bb1`iG-5cg6g+A(n zwe$2bW3(ggDg3=r-b~QNhCC%lCJ#wHh~miAG6h<6dZnbm7i#R}nibG&qbU zcHZL93-}KBsm%9hoz?JfP1j0v2VK1)Y$_RD71wn1(Us920wsp#6VvR+5i>AeX!+lN zVdjZSX+lvy-Y4i4KCwPLU1LaLIj_4o2gPz31rnCHBDl(~e(YilA{krVK|!}9w4?6c z(@Tl=TYCR=4yk!Z$UU&K=R86e#g&s3RycpAYdrdX5Vv`){*)2Bgh^NkBT=Ku2O~%1 z1R;1DdrS1IYl@w6B~MN(>YbLTrP>ajGFm@yZ((^z(fi97zfs0H>r)NTJ($ut*lAL` z_7zA#kAE_)Jovpq#MR_{^4q!V)7+7;OadbF!G6O)qk?6SXzLrTq*2Zr=h?yAGL(H2 zfLTw0NhH3&RrG!6`$U`6MK)tExrFyr+0Q5ppiV?I`fEe;(I*s{um9^+47xa5xQ>Gb zejod!u-i&slfW-|J!N25fQ^G0um3x6IZxR)Q4Vl~(*cg5A3eI*6nWep$~fcpL zd;{YA`p@zmO;)A5=M0~XDxdC+^T6D14<0i^^}p};y&hU7>*2+;fAu_>#Y@}@pFjAo zDVt}fw&T@gb(tUXQdi4UT8&P_OX0NVnTsmjTX#=>-_UUk8i{|_f^g2wU-|P(auuq}43l=HlCN1L%edoQn!AYSX11HNA zOEpiDq^nuLmL$VQX2$~}eh~v`&p2D3@Re%)$_whoy-u4c8i8x_)vUDXCfYUD%*5;& zr`c4Jl&OO@16Q;r*O3S#odTzo+DILqQ8UUAvwltM$l7Wx%RrrU}2GD_&ID$&n@Y`x-BTIaKBdX_?`r}&K3*Bwf|mE>NDu&ehf{rJ)z z|CPUW62kHs^FuDs5_b6#%ywxc-^v{6EUGWO!L@(!uG`%mX!9A)BpDrZ z1yjf8=<}snVK?n)_{d}rW2p;)Yc~TFbxtR&zP~x*W3k=$#L6vwyo!8Z1o=|r@c!&y zUim#z!U%pKx}0>Ly?!Y8x=T8(6<*gX!~JC#hvfx!yQ>KQNB)J&2_aA|5avPP`-HU~ z0&=-jLC#hg`r^(bj@=cNrNiu>jv@h9u~>h%bryH1E?_XWJ&kY$BM1_MFwOWD#G=67uRSAnP=VhT4z-)aq4fV~J zY>W@vN%*W}Qer~twk|ms*tyCl+3+7(W&Bb(%pL^Hi&PROIn{0nMNxVd?qtCDjV%=z z+!gh;1S95m=`$Fzek%ZN&y+&W2igF9)2=K(tArJbL^|!z4CA+GaldrKYvE@~!^p-7 zmw{CbEA?{S8W3zP$n$(-R6B!UDj6RJKaSEynQtWjDO-kh2;nJ5xr_F?OgQxeSxxJ1zF145QE<^cN%thAw!L>zeyI?fw) z8XAJvAcF_xk~3tobHEjIF(3`s!*X!c!_rS_m95uM|9Yq7^Lz9f2^@X&NTG@B(_Oz_ zF1wo;s8fdfTXr5!-&KxJm88U+;9|#d_mf*{Rq&*A zjK`;Y9#hTHq1>hj!lEA;p4Og~D{KTSioVJW)X`jRzHCoC4D-;mxBbpWwmN(4#P31~ zwZm{kF}6?p$!Gg*x#Vr|?@y1i?@yVewRD;8gt|3U=It?rnn{d{BnZnS&w5g~pApep zFR;L^^xB*Br=4t>+DxJwx>njzx317d6N)CxWPgd_ysm&1yKyf=D+-E^M}BUH8}q^&ic`}ifBW2ZKX?- zl^W_1=|kAM*~g4TfziTV%~9Re2KYt`7>U z%tT} zhz{slvp^z<{B*hYs4A(0hb8rd|I?f*4CmHkQNpqpWo}U-Z$q07$CP#&H39Dx#tGV}DQ%5;3kE%@7OS;C(LT!9uFf2n-5A9cj5!{zw6`hG z$JJctSgPCb+{b{|xmAB*HhC60s1))!E@fgGnQblNlI49Ea^en$+j(avQh7)#y{b!9 z>Xc$+T~?AHpY6fRm$0W#u-&^W-#TqdCwWEdYU+ApzuB1LLms_NW|9X4BW7**yaGrc zyhD*n605UG3yhSgqaTf60c4?k)^2IkmQNl0P^ew&j64=Y(HyW5$@nzhJMkGQtzpZW zw0!(C0*ET#qdlxzHzw+}85_ySw7z07xs7w=)D#C3pg+K>^}b${2=Cq^E4X#f&}}wI zofk%R8SN`o5kUNC7{>fF6WW}i$y3uX7Bh_2>-%Hn77!6q2AT4;@i=RRK)y zXrU(hMAf>@H~~Do_3?AuZF4!x`FS2fcq z8p3s31rTVU z6f?oCsBApUD8`Te_CYC2grTy&%a%T^m7es49ju13IjcE_4#KiE;{j?+;m>*xuOWsv z`jX4oS_J9qy^D=>hIwtv>Y=gDJG2Zq=bSDi`s1snsms$&UTjo}dj;OQY_etUi_J|J z#8>yTiaN*`EU9n$~Ve8aoEYO->A&PN&vTXPa zuoV74`dxkOomU1I_W2UlqTF)2xs3P zy_|WtP$T9zN_XXt(B*T!N`xF<5WIb9hoJFR1C%TN1|LPdM6y(YD*@BQ=ceIJ&c9JU zDil7LRDydvvr|zxbK5d-2uGL+P`e8PS+Gm3X-(Lyu5K3TU-YfD1=xFJa#iKokgIn1$HQ_h8OUV8Y7wOFbW7(5|&(Ks_Ms zoIxTthdwFb{pGK!-{NOCq#KxfE1cJE$oTlkKSK~Nyq5D+8Xl!kw4fwmc->bQfz3Wg zU{zROs~&SNs#fHMnH=O2_3yq!k|mqe=uuSWAGS_@?AX@t+&7ETdTR(t;Tf@~$M}{W*esYujL&zkbarLh8MGh>gCf{orU|cB3U4j9DZ1js%y=Z)lfmp4&5g9^sxTz84 zA#z@$Z?*=CmoIgQ4h~mn%)CNfr)*-su+Pl}?6Z_{zS7-PQF=hu2$ZsoRp_n9 z>~WTo5+7s5WtFp^qT{YD{SVH{0{96THJYP@Hf?PWXncMNq&P4Imz-(GgPyM0Fly#FJY~z0t}Bi_cD+= ztM1X9-fCkLP*pi%v;sv-k!mx{QAR~Boh+Ch#08i*xl`!V?u~&th<*QwTIrLxvD(e* z2CL^G4ZR0tA^-YRl>EE!>hPqoppKb}e$(#e*oZ*A$w|~=c|D4weg}Ij4?B2#DgQ)G z_M-j&fwY!Lv2ujYn7R_j(59K~yTY^bGnKI3E2MRrFDy2PBX{`v*5OMvuz@1QU z**8n=R33eZfe2!i3Zb~3x$3x6@&*Q!Ou)?gq3#T*C3+@II50T( zRibt>8cXvDgkiBx6+MUwo`-P39-fDwY&Z=A$R;=)F;9Xe@8r3HNw(^G*xmw~YiHQr zX7|<=@pskO1T!y4LXpq1eo}vnJkxWiWcA=$J;25jb^1JA#2 zlWI5Nai#!nO*Ad8lNE{?SAaK#Xho!5lJmr{7!^*{gq(q+v}3R7F-tQYWb(jv zt%jdz2U-`rw?Dc=__)zjT|mW2d*q%+#HnbEop@<|Nei6tbBSc>HlrW+EHNg{)8GcB0$r7D1Fh5 zuZDoDgA>a?W!ik={dVo#1CQ@GmYSNO0%`IqGuPbd$vQZDNF|CdI>$U>56buCw?0L@ zndeOM^!X*|2|4$#VlEu`Ei*}}MK!@pjv>K{$EIjavXN_Ah}qwo zT$|Z=WO0L-5hm8y*wE%vqJl&lESQnm{b+(24=#zaF@{4dJIMaDxc^!c?W7Gt=0-~i z{8~~3|8p#X)+tJXZQ)54En#F?u#V2lM3P4y2r=nLI-Qn{cT5>u*Zj4TDY&IsBCJ@2o zyTv77u|=@5h20-1P81u_8qrk0I1rDf-ukh^r3RM8N>*7cpQrCU7u|^rZ)prOs!NKQt z_l>0B^)=;&nIOj!eFcpAwF! z{!IQpY`xf=i6JJ~zf#3?KC@TvUh0iJNCs-A)Ts>1pG}1qtuSMOuOJJy{Q^y2O8AEb zTC+M|w)02H?-6*9%(Cx^kcs7wTJ5igP&RzC)klCil`58nN;TKoYM~)hSEcb&I^>6M zc+$9Zy%z+X9es`QEjUF#04|eZE*!QYizrcRUgO@QAr{MFTc}wpnOssqEfixSe0SwD z+n__Cv>7su^jY}~4nXnm%{W%>P`sUE*&k6weM7aqwTUw^)cG-5BunD#f}SSevb~&4 z#S#ppPhU;@nX@hOCo2fwde2?F`Y&AGW)a#N(Eb=P;y0#RB_Pe&x3-BQbte<^FrkTi zN`{J+-^==t!JDEOwh)Xkvzw%NHm-lMytbDNoKj^gcYwP3ox63|Y#frio#4&lP4V~* zVLp2p5=)eVz|&}1b0;Q@PdS-Zf)Re+LRk<1pfIASbY5Q+e@1XYG1y4ry(}o{pt@!* zO`aou&k`La6xvaG`C#|!(0K}tW8l|1HX7|OK-b|A%)-(!_EhYbx&4xw9RD4qE+%B; zf+X z6UWS=U4ZBl`T4P~t&Jg?<}tUKZ`7`_@PeBWk2?Bnp;<#lZ0#eozmh8)2!J-uanv9;Fe#wBHahNdjJ8f*PDr0~O zqGf%7JZf`bA=HD%4tiQfEJD3|yc3DJxFseI0x!41kqmRf6b8(SL>9hisw$%ZvH_py z(8SBrIb@xDuKxqBu}Gv1WM<%BP%_HT_y_IrU>V`&TNk!8vMsfqQ=FE{Ws2oDMR25*Q&>N6`o2;FZ`*A{l1-T8fEgldep}iLziuH3S*J|cnpfD6r+vf^Avw6crvH99=q| zY^z+{>qm1cJD~W4i-Q6+W92eck#u2zE(>SJ@*kJ%HroHx1gV*el&SyI5P+M#fk!BE z?fnN=g_$rDsiVzJL|#>4s3+*mdLZ>XbmluB? zYIF2q=Q}`YMRgu(pyHtafZ4$#u~|CQirx{n=BV1-EbQa0S^WNJi2dLPr%4{3T3)(g zzgK=WrEdi3=6`WnJm%aen%s%)GPj}cm&4Q=!1H1E4JmP5?k_L0zkGKGIY?}9sUbWG z1`zn?Xd>Zle*E7s>26g#;4DmEd^b7uX~7(PxiH5a$Hs?nZc(9H9hjusUfBPI1BGKz zQ}hoNf-1qWgIEvcg2ZZ4VJP8JUXTdmDaqX&NSUh(**^L^zO9Vt%fgc${hyJ0;kgN#~d@3)gW?C7rVu)oOTbr>n%8 zR^r$eq;nzqVOq51_3N?4mLsE{^zZ#??h<+EUF~aK<{KJ&t^VvpCkJxs%>O?p{r`fK z>Yl5PDU4Kl6rZbfvWvUqVHG$fbdtVJL%twa>>0ksyNqwCDqbdz`t4$>&S23jl`iHb zQKm^`9d#iMn>XU>Mc( zfEUlfN&MgxrB#N}U5*0dwXH@U?#{Bhr7%N5RU3oFMAIV9o*uW{#PnUo#rHG=*`-4v zRg$eadzJa5k^Lxm_d*R;)yA_RtSTm7Z0&SGq2a>)MC4*SDO?h@z5G1h$O}7Ydi}sQ z?qcj&fC#Lo(Uf@&KN5BFeQ;OrQDl4LHI*D!c*U+1;3Wm`NeP(nnUn0oIw92vh*vZI z9F<@=$LkB*TiSMK2Qj1TcRK>HDPQ4z&q=d(U@~_y?vl&Tz zV(A|>Y~2O;=aawa92^(ke}uP`;dg|$&>rfsIn^awC7EAVF-lbJo~Ul0(EO9(#SwS+ zOY#3R)qM7Nu^OK#OYy`=`A0SX`L~Pt@V^*!_E*d0iNW=6)L*;DyZG-e`~MTwtRJ4S zDH+m3j<>uw5g(k{I~wYgId9OJboD>L4Ts78o-vgLXKsF0TM||oL))0e<*B9T>a7p@ zI>S7a0xsJBC^y&cDK0~iIt%vIQf9h4gbmk#G2|W2N(X>(jdD;n$0RfCn3^5D@|zu= z9_2k^u12oX_$F4oo}b8xzR%ite^k&js2lm7Y~uyJ&ag{oO~rc1XDv(Bdt0WSpFP)3 zz0sV9RxtmlfE7V}Vja9dAl7$#Luaykj=vdEv%$|k3$tSEKf!ZrI0{`_v4k^7n}X55 zIGdcTMa;(7PLWUH2P}TvG|s{R(EWEd%x2bP2gG&%&k`Htkmyh^xl_jPk9mHFy+cr) z2=7koYr$Ir)f>nlq@-U*X6tzVi~6*myOPb?pNY*M`niR2%>fEa=5N=CmCjW1ucDO)Z&Y4j2xAbr6TxSpi7+hC)0FSsE!a1spp&>7@h7~$tpNgPp>wdL!N@tUi ze9tK0fU}l z9CIy^scK(nb0v#NF%Ih(AN~S|pZB_$ftNDTU%k*kWZ-WEDY(EuUcL`?;Tiv5=JRn%C4`etSW1j?f2DCa1uf4YY@`qac zz%Y!#|GtH0=CS_*ZlB%HJ{3DPGDutLhiBi48BjUg5&t^d9dcvtm@wV&{a6m+ zUT*K@4nk8`6dTx&9ZsMrQDOxEBJB7jvbo^2g1Bz(V_8k^F}nTaxI@L)&Sv=uD5;Z19w*3+Je$iYo-mp-akJUi}k519#+&*w21_} zD5@*l9|URNHZpMd7$t=GlwJMOQPGQZZ&K02_|(1Pgp6-_jLMawhlLEUsO0cEX0Ig) zDcib=QQ2y%8mR}2UJ@74Btw^`)dI4!h2AN{acl=tJ*t40R(WNb*8>Wf#&0BDtoXGcekq@U4_M zn~a<=#5(?9KIE^Z0GX}uP0I>BiGKPeg3#`cq(nR?Z-}>88pHDx^#VQaw~?S z_x5|#R{OeV<5@A-xSMRSo54ge{*ZxZY?gWEksZXxzEsB$zCrklV*5^6B33}~NNJAA zvu1#P)`sg&A_IpyccY{j@=c82h1zUe*kZQbYMroRX8lL!dGY|@5ia+^y#KU>R2yC9 zj#=hjZ@*Ta-qcCSuu%?YtGgJVG?8oY8E4*_g6HT zj1e`R=)BCp5f%{ma+T{8~g2iWa8cYM_#=}P+#YEpVFr&ev=rc7Jj_U zNXqq5Sciz!W%#*IvLmd37;EsB@T*>Ibdg`V*Np$o6$`&YAWt@(E$i)Q-;8gfNe9Dl zn&)=Mc83&By69}$UCTXZg1>MJ6h+hzo=hSMlK4Y5D-(XwS*lXpdG=u*(b6ZfZ+3tE za+3CI3*TX0nZu07y4T(PbJNMoE%SholUTo}Uql#XRJ#{KoyTe6Ley!Bd<2R-mJd@8J3lxOUMgK~dWeJLz9< z9<&mA@y9iZ#S$RixE^6#8gUbqam9JLxk`Px;gvAa%|IS}ar(Z6HTP=3m z5x4(|MbPztLD7&Q%k#dJl%ah)?x+x+xf3UA5WCwtcK8DiUVh5G=ev+GW>>hID9-#oino2THk z2>L7=^VUadjaA|j$1%(buefP_5@deYCA8JgoRCKe8*8@bdjwl~a`fC=0;n6S)weM~8$vhLrN1LuQCizVbY|5mLiAEB)Ltr zNe;Gzr%~s(tzw^K)~lG}_lU>krBE3`89wTB6@*)I=Jed}fJUqh)0bF;v?Er>)@fb^?~^G#}}QX;+PjX7*TEmPwNj&P)VJZTMOc*XPjS z+-sbQu?1h|!li2b46f#o`nZ0}kU-E{Qam^B%BJb?KKX%dZ6uht)+nRN^L7&u-M>pp z^5BN6&Ax}FG?45xAw;Fv8~@EJmi}ixiUW6@vyoNu_gKoH_t4sd8B8Q~1SS~k8U8xn zPFa04jEPgXkwx>@-6kNp@wbz#9yX6X>$y;Ci|jYw3^e>1l-zdRTEOZ2-p@_}?IVx^ zge6lI3H6m=?7+!@xBJYMex&$#w7|!i?W5gQT18+T@0R+B{j*!=3N626cFBnFOmNCm9 z4fgV!6}#C*0bZ{yLo9BSBjbS&5Lh% z*-Mr+>uPWcHewLn&xm1XDJB3Tc(a8a|19+Bg>+TLM| z^?^D6Ai08wm`P-JwdtI@sT|0!2g=Oe*2#f*_W=m|b@{leKW_BIxaazxwCxD)tB(m4;aba4)CiHz9uT*dH(HWuseGO-VM$^+#qttJ6@2336RbcNT{@ zf4&oDB1ZS`*312Ap5y+FM%6Qu>){3E2X^%fHX8$%_Gj*|+Q8Sq)p>9lAxw$r(a8fq z`@DyRVvEy!@B7Qz{M^e1r$&a6XnoECU#^dq+-#$oQ+i`#(~0`)HRv*D?(ypH9qAmu zbyI!MS8tiS6h9cP;;#<&?q8eS+~0u8rY>i{3?1wcI{`VKl$` z#fgSn05QouHPFx5L(Bb$QLE5e+W4Mtpgf-<6wDYFTiFh*Xapo-FL}7!;fw^9ec>{m z_89aI3x>$#EkD7i-r{5j#juVIxOeqbtov?5g2@K^{6!X_FwQq+26kRZ20N#aiq&bKOmgS-?JZFlowSw$Frx2dp+6+r}9);zIg0{{`2_RJ8Z2;IG zUL8nGU1m+#UrQ^zB_VGlqFW0xwOo0N^`-XIJyF|G@d`G(w}f}ov>2=@D{;;nd+L{M zt_-Vex(4~935=$UL+aU{1PPtle9IBp2LGnuw*Sq_{hL9nD?bJs$b>vzx;3K^ib=$8 z>HRIf5g^^bN&nT67Tr-3w3S}+F#X#!I5pGMBwf3N$BejJmPzW(7HmrSvQ0iB$J{^TlP@=$) z7Gr{l)^_dY?;S1rD7B|EH#{8+>6#l8&)m~&NagVGHefgwB&rYM92h4d`Q81VihH;l zVIhi9E(=`q1QrC6-n7&87bP$-*oMFV@$+T!Z+5Ytdh35HwfMg#|II4SjEY_3f)`hj z#FhF^O%_!UgB~ZYENL5)?sj(xCpn^7MX=`1nze8mQUHyb2Nv`4?1UX`_WOqGG%{?6iuKK3sWmk>sgYi64t1A2=#p#8ZB~gr zgPBK8)BY=#?qb+OTk#UrOU0jec8ph=w;L~nI;U2x91oT5L1V`kmQYiN=8~D$NubWQ zq{q9=x2feDpm(rG)}u>jKSM|2+h_2{9j4C5eVyS{Us1Fi#kmxIVjklH6~lCFgq&${#cDB~V( z*<6E|^xXB^k9%jLdg&%g2$!UfQ=-Dx8j?c=2z zInCfZ>@)4E|M)4*d**&*H*PKsI=k1@joYj{^Al=3fnYchpY76@m3evy3fi4aj=51ycV&8rEB!-O-WP%dAn0-Rq zi(L+G+z(|vH;V`fRX_Te;QtjxW9{?wH$H(ba~*!rFC618qDG&aI=RjWxDE`zzPCPe zbMv{=x9vrkW5l7LqxJ54dJ(;|J1c#2!SUOiDsjP#{JJvY&%})-S0-=o<>+a=Wk3F* zV#zMW!OJ!CBd7DGJ;osb(Q@pK6vB}6`?@dIl2`2Q(TlBKv5$Y_mDb@CQme<0th401 zsq>~g_T$i#&m)Zyzrs&-*X#SjVg&*`>I;(B8e^tO{4rO}?fB&ZIQY*at=lVa-|ZHC za>l7|bd&df_By}DMp`^3tN&^kr$&uk5z98Y7MWkrPu1Z+{F6X z*sq78$x?$U6kHqx$g^yuxG|M2p=Twi1)pPuI3UurOo841ny++H?_Oj(#f0@pg z8oY$uR~3TLX~n7g$!I-ijHhkzuCNMvp0@SrSUS2*3o5&UiOk3*rbdEu3 z)^pw3XQB2JiHwF>aWq(L{o(sNorU3ts_TB@ksikf72SLF?QA9+l zqN374dI^ev3W7*gnn)9o-b)e{6&oN*ks1^!(tC%93ZaJ{dZ-2nB$R|e+P>ku?>Xmv zzx%)U|M}f}*IjolH>}w^JI}P=JoC)#$)1^5V;m_onDi#B_Us7aB;}cNZKyQ;3$>n> zMjhZAY&q3e+_(A}O5muSl%pOU-kfh<*LOt$t6>uTF)Y>ZpeW&olpqaenkHC(vT3W&mDL(e#(cw9a_TdTL?E< z^xCi5`olL{a{C3YFvqj|wzaz8YL3@WHRkhBZLS)ryQmzg5#`s^b74IKrRd@m)Be?* zNpih*@wdtaG!bSnk5?60#8HPc;O#ZD zd7saKDZL`f@clM7f?cBwggK(&`6;Ha*z+XtO-qx6nbg>5P(nb}cjgfJ1V1Wikv{QP za}_on-1#QSrUg3nYLc?-EfkEY0?DFYH}Huuo&?d;+o3-ZeKAQ9j&R%T^0JS?oOa~p zhmji%8Sz}bh;uwBmz`2T4I%=|?i?7+v}1ml;l|bCiBUYET3r5xFWnM>gjCz89~}n; z(mkUSSL?Sh@06Uoe6!GfH29|ZJyS^FP7XcOu9jqe$XMC<+)}u@#EvO)NuNNy7!De7 zSrw@OdP!9mKnUOHM3N;0DUbAOF`_4o!a5k%z?7~Epde1s4*8f5m<`-;~?^vP|!`CnE3pEmIymQl7r`p3;HK>*7FT26VGtf46C2pWCptADhlw7#(V)cb&h89zmXb%L;K_wdfoF}gG*fLL;^r|Zz8_uI@+jA*k~9R|yZe&@xP>M7)32&hE&o20c=W6C9H1l@^4BN(HW}Q6y*x zAak?qM%a{PqA)Fna{YE~@f}iO$8zPTyJxE3aIE%!eyAGrtlXIDH$RhxIS%Eof3H^4WoQP`ZgwCKq63WAjDanu&vSw&W0=j zli|;*%Ot+XPCYZCt3orUC%=N@!!Ea`i}~*>UiyFv#=V^zD)fu7YKOZQzcDQku~$rMYB zG+Kv6C!vMveAgy*2sesuqkOUA*cU0 zbznzJ4?MYh{CVG^*4S9GK*X||saUm*U&r}kF|UP~=T*~(&Avze%x zP7bvEqG8fWg)65&<$ikcCQ1r=W`U*;hHPY)uD!Up4ega1HB!}{jVTpPqDSi2S8CQj&6Nu@JFADMUe@<6FT|yp1p|PGB`eJ0aXTFQ}yvI zq|^&{6$U_ynQMuQ_&cJ-!n6qY$El%25`{&TxQtJ~Yt%?)gB_e7D2KZ@hlg%)<SKaiB2 znT<&D#&RFGD`iBM_YKtrG^wpB%Mpq6pme{)Wcini~@$XvxU;DKC zL=5s8xGAVBVPP@s`B2jK`0=;e;Ww^dxL|TU(ka8V{_UIF3c8;<*fLDB4fT}YnXq5W z6&i<=!i_(dSH7h65H~3p%==I0j56eruH~ajeF)a>U~oVf#kQfbfhsx0wGXD13WH93 z9%IVYS?9~Dpe_CU$BjkGan>nKzeho6!Ca7_ZGvj%#_K>U zwy5~JDr~aeLhihKBthH-uIsj-3V zBFav)6ZD1t%I>ncu{h2BwzR{tPb5t%Z8@U5d7dvFgXzrDTSVd-Q4{U28U7l zK_rMVDGR!_K=ijK=b-URO#~#_bNAL5BptWc17uHn5|G}6+dBto!mZ<1?W|%b$@SG+ zF%-oFFmwWFF2cuz*#k8s;=i5{ARL(H?wQ{szMZ5&Rld@Sbe@GBn*QUz;^h#Pi+`J~ ze#c&ZdKGqv`fQaf^T$;|sXgG4&YTXc^)Ml!A+C=wphktSo9HS2y8s*hPzmrlXx|9X zuFkRo{7hrsf)aX|DDY6%M>H5ijE%{Cj#k&r2*THl6foTD& zWuE&8!2a!Od%n;^b|LO1f2h;+TVSBwNzg7@_5G!NoI5!($5S6K`0}s9 z)I`s*ytDxdxVYN1Pm!SHJ#FO=t+F{&$C>@<&$$j zBbWCbd#xKsQKP#Z+s4H6ly2z4Lp39)IS(Hj>gCQj7f*5%#f z|C&AdcVGV)ZxcL!=$X(99v@N8A1_t7*=DZ@w%IK$YoY30uW2KZbgSYA4_xcrxR0>+ zMx-YuHs6&!erR9BpQmXMl}yAgV306q_^cW!4>RkRRlwxDO=<>AmUdpz6~X~JZDAnC z_>ZsU!*@0o&`9YfFl9>}U!v^HN}%ZL4N@x7^r9_$q6s-LKKngt6}^*Y zYqn7^&uV+3(JrgA$aS?LOw0QLCO;IrBC_C)4ydj03KLG|3fY@SFAi}gMpIxQD4i6x zDAiBfUY{d120yRMl{t7ttxT1)ZBwNJ ztgH1|pReu9k{ND0e^lIfo9&1?m2G(h7b({o|c+JyjJ8zMlXnp`M$5+!rU(_Ir5pnZb^mrOr zX!dK>h$danT9lDR$nye%$=K`5n;(smq}QsYC01i=?VO=bgP2CDp_hcUO^ei4j*xpj zexAc=%Mu!i?dCz&W@Lo*t+h^gaEVq{m`X9IQ*1HP3K?!rI zHZ37;6LyY2&B+5BUNZw1G!JJU{968P^Wg|=$R7#rG47Add~=_RpqM^c36JJa-!fy%*@E*fdrhB+3n~sbb>Sf;lMIk#+=W_PopsW7D34A!S%|^84M?%TM(s+$LXG`-kKeG(w*{=r-_&w$5oT!@Yl9*I?aUg!7+?kHy$GJ78kzR%25(!T*R76A#MnTxt6KLmL|cN6Q{kf636A8L=ZG-fz52T={wTzB<4}mHf&n+x|Ye& z4L=0TTX_mr&}r4Iwq5-@GTUmaz+wkd!3m?@p0DP5S+(s}T2vbWAFgi+iBH6#g81|0 z^Ren1E}Mr8TdS zj07~JdSbywun31!4Zr4+UyN1-B(E5>AcwO_i9GhGZFIixbn=P6u_%(HM4t+Z|*=>Vh%w(&&=I7 zXPeT$$eDxLK4(vP=I0r12{v;*8*Jx@CA^o^Tctg#LhSICeD5o);oQh4R7%XfI;hdy z0fXtXVWE(N)&6D2X8=>A5QF|Qz%I@_Z1epEcY7>T|IB>`=? zIS?6PY_Zg!xl?mz)PA$46%e9iiopY&si2v~z}g-od&^cJtvs4Hj|lgjx^4IfJLaVx z&An3s>yayWEmQTju#4BPglHvM+cV^AjEt*INkaTEUWGr~!UpJ9%;Ff{q~=|9ll7c1 zz6mw*b$_5U)Y#^zyPXQta9m6-OP~fb_RhV~y5h2NHXG*XnWHC+SG=>Li}&6;*5r8_ za%>G;(8P)GS`3X>IKJNZfy2XK?%-nnT%dVt58c+T-mSu@j%#Y6#!~3gR=rpSDL5J% zm%p?p_U8k1hyM@air_(?gHh#bY?*MRu4XSs=$YYXXrG<)I*#i@x0x$-TNvZQK1mft z9U-^$X;L300uG(yGO*#IFy^cd92U=-xL`N(u?%ikyi&aGGp6ZrL^Fi(6Yj=#U`xI; z_2sw??SpUItF(*El`w>eW^~GWnB{T}c~Y*QLSao)*PN_g*a#LJ!}54j)V;K|$SHAc zAC~r+*$hV0B!qQJ-|y4BfKO`A5B~tyU%M`3T%*&mz+!2;lfWAsEhk-`gs;rtQnlBG z^_G5_?tEbXIZWDeYoMZFrTA6wfGr3%cKXWI_8e-pB?6fpoRQ-9qOd>6Hc%4w&6=XXKDF3sNx9c;o z$8C`l?!u$1*WLuYZIW=#F|^G;g6|oAf@k)+WEX=e!KrKN-}+b%N@ZFKTq!O+Hmt5e zIz|Y2QZ4FrEatQkPEG(*@j_D#oplpuF~`fC9stYKs6dEnoXw}gmlX{1LwIz))Et-L z+qsyKDd>wh@1|KvzaSId6K(g_w$r56s5ec{CtAOjJt`|m>w9h3Lj24@4ZS?#=4Mn+ zvjrXITPEM=IXd;w3mAzS$w7pddQ^F(RP7O;^|`lFxcX_}btld@?XEL)W!c%K6yS|n zR5~EbmisXD9nA02lzmx4{_zqVSAVc_>F`Q*<^`NNI0{#ItLV%ozeHmVT&IYqfC?YC z$Ly~jgF&v@&`h>akWzOjbzjIAq?mm*@W6`=awWukf$M9LT^>38t|E|`?)|2YZQ&Tj zy%rbgRS8o2EI8CzL~GYUa8}mhf=1ifphZ+zCsqqIU=WC0P`gw`-vsNbRk!un=X(lD zg!Rz_fbW_s#hdWu3EzzJ6p~N(`=+jPTP-c1)2R=9T%vKCid;AmZrJdQI6F<0-2&?6 zsPx?~D(=}sTJ31zrBuRx%<2g`%V=S|6V$)t5Rm#oB z+bA5Q+qxvv-56k}Snjy3=sWU4TF=k13;mGNNaqa7Zjh$MDEM@N!Zk5Yyg7F(ZMc;9NEhUprGiFJijqot$@_@6F1=x9uRQn>mFn{9~ z?OgT9()Z4psr?pov~$PS9W%j?*ryjKDI$0WsMDuHXL+`%cQgsl_1jy>pU~~g#KgLo zJuow$r$wezC<L z=AVt+?(@VNY36WP-zbF;+YI3W3bq={5&dYl!*{(5w?dw31$ce=j&`&0dAVY+84d>6 z@l5?(6y@}G)4%}LZhg|~`j?erxZ}4bv8~Z1t!hc+1FyBhji4~%&~vgdcjU0ZWLcyk zg>^?W-@|fod817}!2a`AQ~{teQk<}`1bg6>4yqp$D07ESbzUKFqtT@wx1b&k&uO$E zwm~hzcg_{Dq73kt@y=r?VzsVX!HV(tM`LvjpaAeoqlP4=;64t5Q<%q6n%rN4A>=o> z(xLFm8}FXu#Z~xq%=qX<9}B!Ba;+`X$xphr-ZXAMH&2@Xg2$UA5ox~STck#u4F*~$ zj(O*wYIeH@8AN#16)JsYGfOjf!ZLiI9pa;D|FMZFB(Ld4{lq$Ebd=Qb5{pg?Rp^S zLaR_n5bIo;C}BJV49Oh?mR7H>7SnA>$?q{QX+)b-tCpQzQ??761s!y%v3irdxOUUZ zoHoQ?U!aGoR+mrB!-OqN20ZSdFDo;9$i3!WOfs=W-?U5s&8RKlp?VYCOgmKnwZ% z5%&{g%Ypy(gYk%){L%v}%e~k3-(D$s0aDs_)OdJxwA5)kneCAO+u71iol}))iLAI= z*U#@dG!%(MqGPe{*Po#y%7haQDMyy}n8i zX^SdNPwLjaExh6QuwzrwIvZw|dRyRXy;&0@I?k$;9bk2JbuIb@I5?YxFcbq{N)c`7 zXDpYcPffQF>Qrt>jI|?ywcfk+r`MH9VFb4q=`gpSz=}FJ-SGN$$%@tLS%g`~O_Bo5 zY)Y({fX)?i1&Y?Li--*GJmeG=cAlq+<27FmZ-bt7fACtu?07y}Ep^z!uA~qe!xogptqa>G2li>(zXjt32#(-1T zlG2h>lIM>4V)0l9kX2^V#FF4a2@4}BuAZiSrLem7We5K}3b<;tp58dsZP#>0bD3KF zM@gldCXQjc{qfE+JHv5U(Zmu5ut0Z{JDD_SU%3@h2`W$>Om2VJ9U9dSfIY!682?44AEscnOt}48A)xp(NMy}5<%d9YiXA$obw~} z4Cz{8BQ8rGmWfMz=#@!F-VvyB0X4Z_+_G$#Ku9f$6>Jvn2U*ChBs$sw)h9_Oxx@Ga zx+*&=%(F)~PmERrJeN}YXt994vz9)X4r&4Tp3yJ9nFREIDqV>g2Y(Ct4KHR$(r45e{R%f3CUhT&`)=4p@U~fF^G5zbOtiLWq`g{a2 zO?YFBYG-8-30`MR^0Gzw2_pQGvk}OZ<1|UqU}M0s&N2-%rPEZ?hshm zP0_4`4k^RwQ8@c5Y?y^A7Pb(Y2Bx%*!t3k?Xq|pdczXba34x4(P%8k~c{~({!jD(c z$Xz51oCYr@3!_N+B<-T1AWEw45KIW={#T;Nq}^?1{&UB+Ht4`kLCvkP3yfjR!@hsx z&F^Cb!2F*JugM zHuMcN4!mAc2|e=lsbTBJNxxXZgh#$NOX%gb ztOEh`nmG@M@uMIc*U6~0$O0KnyJ(xeOafvNOw#lRS9M*@K$11|HL2{F6DB3%Ffh5H z8^51_YDkHrVD9imW~(0ErI%3k?SOH=65`TMI9P16ZUOe5Ry&FSe`o*F$ z;H#d}a}MzBHm#l#^0PQiqnX@$#FTxkcjuzTBZ!_&2Q!f6XH56Qz$s`RHD|V4n{q0Q zohz8Os+Ju*#xEaKzV?W%CR=yU!WVm!zH;>jj+~jrdS55QJaOh+93#&+Y1EUBzx(7!px-@r6P~|Cepe1@5VjH_>&)~)wSaChYFaNcQLixh&r$-z7#IW zb1kDmt)a>NCX>Pu4gwP?*!qXU^P@Zh*ZlSuDa=dvDJ`RalAg}?^YXapaLVy@Hmc1Q zuhaC$_+9ko+Ju=7WUQfDvG=gY_NK71KC(9prav2ayPNU4g3yOIJ}Q373@UIlSX|{r zj9fevT#+u!B=``FR%$)gZFP40(TS@}b=6Mv+d@q+I4%5CEqG>QZ1_t9a94tMR%poB z$+(z`En|yn&r4-%5fV0GN_e{MQ^56;k%8k0NQ)|o++|-s>&%pa^b52=-@a$_d2A!F z{*I}oV^2PFC)8wDLPR*)*I1~D5_PqEr4cR`z8-IzzTHGx89YB6clYXD;QjfSueyOj zGcz)4pSip?!}jbf3)>O>!f0TL9*!DNRKST*J~@9e$%a-xZm~&~xXlb*o)B=z{?}}% z`vwMWlyPdh_w;M%#xje{%$9fjkl$B50x9;+#_8uVjwE8~n;$O<37)r%=%&*jd< zd==iF)3@C6@Q;DOECOgC9-39N=h8s0zdat9yk*hOmy)j1?abl|(m+t=w`3}G^MYKL zKDbv}C)`tVF?x6YBA@0D&Rrf4CA~M z2rJa|VaFe*m^X=3AO7Y>zpirM#i5&m4Yw)uj#d9x4?io;ubAFF+CJNy^I)wlr3DNJ zOeZFo2vWM?-u}FvET=C@o}(aAQkb?s7#~ZkPcn|)Ft-Yy#C|LSv1{|Ck;&8`&fsCn zGK%-TR&D!5NByOF?3Od z@AhU=b~59s&+6pi4BIY5-a*rZufkyezPuBs69!79V#{>*8(Q(*>O@iC;@8k~-_}c^ z_CVv$OJ9Xr?;?3;>4u!NOCz`1POgsD^DpmXfd8iJw@5Y$Fq~_m$L;$X9%BkzBR`L2 znRyv8TfL(>^GOx$w%FO_WhEl#KUN4dE=NiAD4dT3QsIX#f87B&l*2PmQASf6xh@8}_lJs3b2S&(v-i(@YIA84??f!wUg1u9Zpo6^D zd<2_X>t_VhrWn3F_}YNLu*;&*tnAg?AmEWY$+{W%}xyE~#yU`%EPS zba||``{4%cP4>I%&*N0_K3Vz~tq`zjbY_47b7(sE<^r-e`l?u*s-%cdozk~vOQ9e2 z?sA6Obz-%!e&`{BO=(@}Cd+gdcQ4x&gF-bhiA`I#%lkl&U&|t+DoiirthgF$ zhV6ZC?qK~*yZKR_C3_I=?X5wD@OvpbZRbmwOD4{3F-q**Y!UGazl~j0!YedWiLcJ1 zILk?%iKW41Q0m!4vf7&FJ_ zh~%!y+(l2Rc-cK6wMWwbK zOCnpzV~>o#mh+AYyLY_(cDKII>_ubfenykZdU2Rvj1n9bw8q39=L0&*F;NR@=whWR`es=T5-HhlDe)6B(o5iQfEJjYb)7mQi2w6ru zR92wumMrmU&ae$p6Hgv^HL;h-pqo1-MytyF0iQ8B_Vz#w)Q0y_ zb1K47E=FW~k2unb=|E^p<##mu&R6>vP(dZRw@9=$WzRX;3oTSGsO7}vD(<_&CzWuc zXEJsY9SpTNa!po@pfq~*oQMcW#NcVP@pYmplXokD!{~b{(^)}IY`(G6+!2;74ZeEV zy*r|g1eQ(X%9Xx8Q5GvdZ$cY1lX*nW<-Vt_iO_>rFHW2pD|hF7l96{#HExr2^CTKd zAHs2t6iO|Hj{ZCg?g)jrM6aDqjr{QmVz6g%?1Ez1zK*9~l5~Dtx%R~5@&^bzmI1JW zE)*8%!4iGbZo@^frhy}&Mic4#N%mc}|26H`O(t>zvWH$m1p;D{P91gI<^Z?^0+N?j z#($PRV~?wk4!qJU?r@iP1r_Og0FL3{4p+1i-l2rqRon^Z zt|}-$JsxtHm0KJtnvug!H@V}dMf)Z)&DEi{;-f+t{<1F4FNs&O0;1{yS?&sSsg95J zt>?TtxPRbO)JyEGALWAO1FOd`2jZ|4k+f%0_3QT~?rWUZy8A9-U&_~0xNIes3Vs~> zm!2lveZyle%&!$b%Py6Ao%tkhb9D*c1k``b)biarsFJy`Arud+dqvEa+X_OYaJudDi|xkZmb%_L898&YojOx+8|aqcBio3`Ag=19Wtr zgD9NhETnRJ->q}SQc_ct0s&!a>Zr!Fu$<4#$wwhmG=>qHmPdJU)=_6W9uI#)=c)N| zhWl_0x+<+O4-B0P(1`vaJ1fY|zQ*VSIjV`Pl@w%o?YYb0J@5m?e_YeyUQo*YAEiui zA!Hpt&8)aZa@uW?QB7FqRx9`RyCB;wazi(q_aPo&X~H}eL3mTNc^=2bXDcj;H@0(@ zCExTgjP>Q5!C-;#ps|V5-q%{W0xI0^#MHubl{lt?{#ea1dZRGj7 z-H&}Z)0?@ykMm^j>PM4})BzLCqBd?n?d8P*P5vob%f)m*JP(i3P50eL?7}0*MoWud?}XBAm8bTR zFNaM{>~-_J%Aqa^!MR4H;BuO&yiAiHgYwfkiKH70&G1DioV*eIUZgtcU8KT28x2P; z$!lL>X-7^!_RO~RCB~#h&CX!4psCT4C;L7hcQMycHrEkKXZ^9_qF$GDP%P9gXJ+`k z$@Y5|#WZY8CyZ~Ak4&d{HK=PGx_D?NA_5TH+M_Odaj1;DOys;ob(5M z!>g`zO3f!w1Fk6|6?s6jSmlUccH}iClq_M5g@iuHy63UBC^!56{nHx!5x{m4%6{?5 zV3`yX)1I?`kG@n&{Ex>}{`223MqkD>4ID2W-FLTia(KAMGsUB-ggcJf9ku_!fjjp< z4&8A}Qd%WjmNncJWqJgWpu`d-b5QYAeYtCBo+Vx`UiB@DZ-m4OyDs z*!WbpZ+Ro8ynVi*j&pef4F%IIZP@~L5Hp>fegRU03wTHgtVsdb28V^2+VTYKq_EKX zb?HB~q5kpERHK~t%jDcnv|4Xd(WWxnSXC6Y`*EO$1fUWcO18F@3D}9mJoOk2q{nXV zanQFeFVn3eHs75h|c%H*;TT)xmxQp4YFn0jHPq;2564>*&ciw+s#s&!scslxmB!c zDYy*2w`@c!T%D7cf9P|L(mI$Fnjbdx$<~&~28&hy(Crd3JcJ53IoGposvjUjkw)DZ z?pleowiS>sdLuLEpB4lX*|3i*_);4r+(?94tLir?qhUU6^&F!*3%A`)!`jp|?zFFF zhHTIkL(m%v2{6?P&9S2E(RlNi{r~ym+?6EbK;%8TzB!eWCz+V!Pr8{|`CHvERCDz5 zkapPJ9a=ir!~2gAH9*1M4vy~5{-XDsUEMr2PvPs~r$pVHG*4M7-jKcFt>b*(?P{p6 zvuUW2nPaHCqpH&>kk$c>U^PYn9?t#_qQM>yJ^j>zHBbE!t{UTd_qNO_(LY4|-8D~L z`eQq4s~a~(b-a9?MHQuGr5t6IWJQ(aq~#PYDl02XiptB%$;!ye%gD(~$tkNT$g9c9 zivIIBrFDRDrQz%3qIT`>%*R z{r<_0K~W~y!COX7T2|(-kQp8|7);c3e4QQqy?o8QydG-(Bj^9N5x1xu!x!W4qRK^4 zOE*s^uOL4Sng8hT?}Ypvr1KRAe`hTQCub_-na&IJi2?cze2P$ozftf1193q?(~A3?-HMOH2Pu z`d_8{f8^qC?*B)E|3{#|Bl#t`zj6J>^-BbPN%*&R{l@i61b#{Qw|4!;^-BbPN%*&R z{l@i61b#{Qw|4!;^-BbPN%*&R{l@i61b#{Qw|4!;^-BbPN%*&R{l@i61b#{Qw|4!; z^-BbPN%*&R{l@i61b#{Qw|4!;^-BbPN%*&R{l@i61b#{Qw|4!;^-BbPN%*&R{l@i6 z1b#{Qw|4!;^-BbPN%*&R{l@i61b#{Qw|4!;^-BbPN%*&R{l@i61b#{Qw|4!;^-BbP zN%()NT?hW2_u=fxnCub6nAPEx`z)A=iR0C^E0@d|Q-UV(27)MI#JZP@bBVi^xAJpl zM+-jQZ`o&BMH;2(SG%<2x!xT-|M~8HynUeciTk48qPWUpE`Bi?vxffYA3u5bThTDP z!5axlABhN0T*S&PcUr0I&s0?fOt>BLh=KxJxPs~?rHews@7F%_e1(~5?RoAc)fXq? zBL2G*M;Tj&+IUq8Ct$0VHWe#(%r>=|S2yV4xaS>fYY*{L7mmI5IrXWrvGMu!EZ=P? z{EOHzq#!lI;duP>=g&1yeG1mFJALZ<*>TIvz8L!A;#Kn+E<2wW= z7{=i|Gv`!Xi2C|17cRG6ypdB{>VqmPxa{tZ-FF$p|4HjK49Q<>BVAcrJ9~I& zK~lc&e#Jz8e_0YE))&-bZpFh=($eYUBf(&Yu(0~tTVFI{HH9snJG@a+R`#l{vJ0L> zp-2{6!A=88%i&tCl2TH{gzH(y_xgFQSe!lfIzBWkEYW{5!kv#uAedpuyuvBirE|Mq+Ah=ZF;$HEj4q+=c)O{6ErGrQU>}?lT-MzNPrSW#rE7$ z$^K2Ix7BZ)Z$B$7O{rRW9DI1}j~J{zi1f}3rlJ`sS;dQd;KIh8jx#Yf(yA+~tgMs_ z6U;L>eMGa`bCRyRrDFB$!fxKWy1L%n#jl8bm(|nP({uUe4^h8pVu|U2w+lxWNp{u= zCe#L=`^4Dkul{6e_Iu>T?wR%Vu<|m5PqMat)RNxXQwOypBe|HLF5?y!7LY_uPL(@B zL8O-E=8plRb1K(GGt<-4mu;-A!_J2ZdY3uLkMjOdXJX+a{`m2oe(TFcnJ~edFe^zV zZ%hy0K}M)IGwfm?Wqi*uyU=ZHsIii$86B~QNAU?~aRy`A^d&?!8sg^xg#uqzd>$#s zUY#df+Jk8kD?V4zrn}<$y$?pvXefEQnFM2`e=t{W;ihq|4c%nR?8==%_B*y^n2}qb zdR#jPOa{379^o z@qkemyzjDK5#bb!A(!p(`j%(Cz&FhYHcm4VjJqQv$CI+J>F9jVdnPsi=@4pHNxtbGgK+M%&Ac-b zJ*P1T?rl?CZfSY;RU_wEp#I+7+YR+I$A}XX4+VrfXXid=xSJgaV-P=&v^J~Nr7aKT z8`)v|Z);vcfETi+$+907LU#4((;5gv(}B&mz8v+dFNl8Eewu@Wqy7MS zp)>KKdOqs5sSLPw%+wNa|H^zXt*)+au{G+@6BmVrzyq@v9vEsaqlSib87PYqhE(pK z@9Bzq}*Pt~S9V!iwVyY z3yx1)OqbYrK4o*^Yy8AwU(|@JC)t95A&7QrGFVg$W{#5El_L#lx zho6ILX~XKA-?l{DgA7fS6%|(*q;9Z}+ZRmA=}t~eG;}Ko2Aq5dlrS&{T!`-|<Mo5C z6?U%%BiiQXY<9PSm~#%96kQ<)uXdOYIyx$Qd}9{lc?!-mtdu}8x(xzRdYyKtk16+j zUJGlIxp-e&cXbYb(+b-vcof@?$P`DKK&k8E@KD>x=&8mq{n3ZR0VCC3zyML=MZ}xk zDrl55pq}kk7sdhqDTwe9s&Y%dsHBu_Ho|DWat7Rx#+E)IczuScEH++aEYrij+`UI&+DfW>|N%;>L@IF+od2B2i||1{S@{VIH6Hay#g|;)B%v zGjkPp%?~7__+uh!;6(p$>XhWng-ln(v;14VSK_{GeT#oa3o7Qy5tP|rrX0g9dSPMguQxyEQmKMixu#9uufdS&m8)7zWJcbnC{mM3OJ87-;T zWF75wug41;)x#!G;A_L8hj#FGU&LDOz!D+a`F5hN7uyqLSwZKi93jP~@HF>_E7?)6 zEwBq=*}<@BQZHNG@{l;ejLtSI-wUZN7r`@JtnXdHFfamgw;!+xo2t*!ZU6 zuHI+W*Hb>h##w9Y>g#3dLfSL=nxN}}44^`6(V-=hSb3!Nb?li1g&u~2tTLKfQOEJ= z7{+-T^?1gCVGAI;O)tCkjZ&+J(>-Z2pC_$lq#m4lT6k*o63?~h2>=|W7iHaxHG>>W_O4*>3wqcKrdk~V`=G2 z52NRiScYI0H#qy=R@u{O52-0pTkpmd#%$v8s^Of;U91`;; zDJki&2KKlhqe~Y3=1tc&cqv6UBeN)EZJL7YSlEauLwr;pxEM)m81E^(d4=JpTg!;= zz%#T{jE-f3vu#4aXo~s$PiMdRUwJNTsLXlLd{FWI`U6_rl{ZwQUj4vFr+c`I;2kxDnovn?ELh)5qSEqchVN*WjSW#OWQeR2@ zhHYwUsxCu_3H)~*;-g)S!Hf(fSl_v$WctO-2&K8v6rTj~^XkUYuhX^OrB)wQrfn8`r;ln!C5$qkd@(ebS}CMVIeB`EOIsnk)bS literal 0 HcmV?d00001 diff --git a/htdocs/takepos/img/arrow-prev.png b/htdocs/takepos/img/arrow-prev.png new file mode 100644 index 0000000000000000000000000000000000000000..b7311f26f54a21d1b846310103687d9d653d5806 GIT binary patch literal 5112 zcmVxP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z000RiNklb&-8piR*)RrRxEt3qH2po@yW)sFDbu#i5tX)Sra0P}dz~ok0 zdj)6{r*g&sqT`B?UkMq%||4$X=8pc(&yMKOp&goWb=gXHb zA|$8W;}8%~69Q^NKurj!2>~?$H6frTBx3%y?I-T+>~ORSW;8nMNa}6)UvuY%OO8;n zYTEX*tI`Jv#>vsG_#LWNekzO3ywIbeE{wm-0mI7Au~1f zGn?{rP=mTC;=Up7+eA(+OM^a>G;IrVP#1$dFvNqB^&xf^k|vU7&J8D^ZYgS;$j=ON zC!-&2X~5s)Ho-yt_1%ag!`xN=Sx9;#X`I7u3#d0w<)apF9*mnly+OUg+?R9`X~!bf zOeMW?Za4*XgHVGxPu#6U4d%RYw+i)Wbk>#h+IBKXxlAOzNcjrpwpJT|L(^z<_EOS& zKv&K{(tA6ejZR}HwN;ICwPR~8bQY41Q>!G|)(_ijK9Tesd){+ueR~ONf1rDk-ZGto zPwm4L_P4X^)OWfwpu?uyw62}}q_(>8R&3Lykf}}WD0L)@No{rGJ)o0G-==mipB=pG95|hcAn_eTYx@SyYHrJTE@-|kLlEa&M8NB z-k8*Dm^)hCy8-A1Pi(F39a+Yn)X`BJ=u2&WJ_c!4=8~TJg59M0aSrHg(zAbYqb4e9 z>tX{e(6O^X&7u(4S)sQ32mqZw?3XdVaPWnqU5Ps9oVO;&&JD*Q7m7hq+dTu9;!0tg zvearvWS$*r+q(Mz=+?r1RCTK_#Vx(JfNpI%cK-8ODB6Od&$(@N`k@w%-s^|GK=zVz zN-R&yzMwaWPHjD!mtc{*Sx9m9BRaMk15CNUsg0VE}(dcX-w($V%CtdRud{X}kTR?lv zuQ5;$pbKb^2|KCnpN0;{9nc=rDO*9xPHL(Lpp&g2Wl>W-0G(_FDU8}4@<{anbf^l_ z3o)sg(tu8ST9-k+&v6EH!0d-W-RC$1I$-)wwNPMcv)={aXWQK!={zMN$6* zXh28EPd-ui01fB}>46&1pk|Q>=$sadMJ9Cz(14DZjt|s*Km$5r`aVzt8qkeM5!CyD z26V*i`#=q7Kxa3pJAejsZVSa8paC5*Js+q64e0FZM|RoU+XFPH^UBAMA4@%n|F6IP z1T?7A%)^HdOTA~xk3T-tlPABR2h?d!>UZycD_vcH4eBIwb#(=7Py-v-pawPpHLwY& zflWXSY*4Q<2R5)HX6^&^l8FuMh*|nTO%(xlcJ*ThY+y&s%m->FHn6js)Kg#sJ7T6j zP%k;Iz;41qvCw;yk49%-IJVV+R{6zfYn&VI_hIfs{t9U+C>fg0GYNBsxK7uXT< zhfmZ~jxVqyq>#Hp3q?sR7Fj$-StLr5uZ1Ghnu(qClrD>U#&HIAz|2CRo^YIj9WaHx z74Fp5tN$zBpPY{EKTGF^f4}_?pPia%&BRW2N>@SsZ^&*Bdor1ndc4^!>@rW0$|R+n zm8u_9km7mp;0GNX9Fzijef>!n7Z;^|F>ZaC7ZPWTvQXiJ}sI&Z!%$x=7;5WLhvHqn+LooHL*G3*)})qm!@0QWscm^-=UrK% zHrQhpj;&f4jzfRZU<<_!3&(RwN1XR;Gj?uR>vnF63&r(`eJq|E0_Ys-2e1L1HR{`i zgm}}@T$02_K(tQ1)~`E~UemFe&~1auY)MLIU1bMDleU~_?{8F`T!=p<1a z>{G37SzY2L$t<}3_FU3q@l@4R zGLiH+2Iy=i_1e^aDd_}P(elc<;mercKqI&Gs3X*k?CZxj>c}b9g5TCB2E=om-FEV0X2;cVvLe(wS&=F=dhJH`prF zYn9|gylTBjrV8}v0#Jh+%%BE$u9!i+8F$YXlSeJaJhnyPys19`s5j&880=?i$5!A% zt9OtchkWh^sN+xXf%4i8T-r`Xqo*>cs{}X)Rh*rasZHaVR&S&^Z{xWDwO{DnHQ@X9v0JjfEcE{; z!p`nOPWcKSsN0FZqs?z?Jd|0BTz`cC000000004b3#c}2nYxW zd%dU$Ce+szoV9OJ5UN#164pJ za0WO590CqYl2p=>Ff$P7r^@&6|A`4W3~T|`N|IF5`l0|F2QD6e^`*?6HSvE?zuzWy zyMy#Y+3fr|ot#{w$8|vvh>MLRF(HQFAT4@*Ao`#{g7ksTbDaj8&CYi}{6cX_1=ZDc z)YjEgS$PJ#-O--t24Fq#t|UnZ!Knn_0@G$(KZf-mukiof_TYiBsGJ!$KgNmd)2_I% zupp*S8%=UjB1uCNNE#A{R;xjhB#KKaFq<0@MLTx81H0YsJa;&-+Z{wk7>JLH0>Er; z;H!;4^RM+=*|RqjNs<^kIF5*jFm~)Z&{jb{0u~CuTR_UtA@QW`S$zQ?#cvabLt^BW z3&}d+RDe+<2eatz8QgTkIC63eIdnLOoLnP$`9;oSUJ;E=mUhe3^iorh^99<#UT*QJ z`!Y#+=ygtHpJvG5I6nBtpV+u*45;IFTL%GwW}e%XH%;1QP+nClxUFRvjyJoth{N~xTIhDEdo^gc(H37_?HGxG7Zy-4-fzq-nKHso|^h4QX9?2s+rw~!J zcdBeb5YXu~gaqpd3DFTB7sY_Y7_Ph`i7}&-*|a5<_dnRgp1m2Zv)Ke70H?<&tXcgy zbIzfKV6oW9$t~pA@sqCK>B2G$20f7xVMIiPGIVep)23dDPN(t6Z?13T+s&z{RLbU` z0<}tsAPCs)4n(^hi^WD$lNF1_iq$F-7#M&~r{R+1M4}?Y`1G?MQK^)u)k@SV6)Kei zheN_9ir8!-qG-ovvm=Tkf*{bpe*^;)`w|kO>(o8|`}6H6l?v2qB>`#`N~Hp;Rm5Vo zVzJl&xcSC$9hTEt31l(>hvTgIPfUm=IVq9kqy(pPI5eImB&kUdgd!lO zpo@NiBuT7UyO}4SSxsGCLx<_rY9*7e8O7Y$lel5}7*~8%RV|B_ywXwA#w#!Wc@Yn$ z%;w$)UUM^}oyA}XVqjtn6UJXg%92~WDk;D{_r2V1{S1bnPANfa4y3K&ll9y9=eqAH zGgXnBS43`J5nq12%aul})esV_MW@rC*9AI{dJS5w22r$ASJyyoU48Sh0drjgl~rf3 zTD?CDwOZ*?+7<*!k`M%87clnrTd!sHyN`D226FR?c;LamvOCpjT4XYTDc4@XsLKa) z`G`Tp#Pr5!G;u8JB%gn=qs0jUAV966vUH1Ec@BrfR~vt3@sd~Eyx{=@`Vt)#My~)h z0Rbv%>l&!2sNv|b0z}cy>USUI_FJz7V8_mbELi*!CR4R5|G2TknL7CjR4N5|c|~OB z6q21&NTIRJ?OzBG8mi}CYoBK9Rl_{)x4gWDox9Wd(-W&&d)CDEkKm=}?`8Dwk}w#8 zI(%-eEkR}J76Q~NY&Mbax2BQypJQZX=8<_M&+Q)06`4#RAwHVqqy)mkg86#m&y<;} z35gtyrM{Sk+5!NJqB(sYFt)QTgiV`Mx$Ev1T`xE)cD@7dov5olb*Jt05#r$Dl#63>h3pLwys^zOaV(KKKTQL&6Xfjh3^@Ipr=D5Ot{+!= z%@-W3bqj}tbWUDZ>C-!uYbJ(r&BT#i&fCyv;k)mD;cstz$`9Mpuv$gbns6c#XAu-W z8~{O(wImnZl%S-vk|v9l0JX}efECZJaWhqqKYB-p3eZAKbU1x_htR)YgwHg=!JTu| zf`YVYwHl8mZD=PQy%y%onn-lEn`k+A9HN8F%l~PG@Nd?9t6Go$nLZb}wX#c9TyW?0 zTsmxEm-2KsDwTo}xRPQy#j-^*S1yof>-L}cPj>|!Gh zu@Sr2(CXKSU2H^h*ifoNPzHpe3J66RU~nCk>JYaV>E3QbA**g@pL%^De7}acx=zk|a@RG?AF#KN;;Y`<4m3 zzh)Du`!Ycg2k}oBQo<{`P7La=DDs+zmMFP2DO>ke#&zo=V`u66EF@-980!xyyAb5%8Br+Y z9VhGpp`m&Y(|_{Rg;j!~L*iMqa0WI@4Q2V8x>=g1PXNtIknh71WVIUm28fI>`29tA zBe-?W zHT>h9KN1;XaJzQHjH?LL1az(D&4h;PJ<2;@T8|70g1{4x&G&2h=Yqiy#ERv2;jr5% z&i>S|WqT+A&Hey5&Au;|J$##6UwQhW?6y;td@zOd-0A~kKd*Arvqy%oib+TLB z%6B*TuVP-1EcHRj1 zumpW$dUx0Xv|{-JH#7e2mc6W6{k7jJ*LId{eVeeqS@+2gtbT8!E4=LCTm9A@ZZcJ4 zGFAJWvepr1a|1Weev*oc8X^;Cq7S>oFZBXI@Ekixfc8HHEkyJQ<>{yHa)l*HV%cLW z`OB;8{8G1?n!0ww9nsN3jTWk^YPoIx3Krl0sw>ZfDYHBD1)3T=S3W>SrgLysuj~3! zPlrQd{(=`co^_It$kBxNpWJb#F5oeWNV5{e`)D4v<$?QVk`N!w;`?8vvbl%xxfj=R zFg=^=rd+|evBQarjiji!oYZ}p?A@E$slk}66Q?j1xqHF;e?3lJT|=k;O<7r|+`>Qa zIYdaX4xL`Z$&)3V$Sx#1=QLSar>Jjm4$|oLfvi}*fW>#;&|&$Xt5tN( zkZx?Uay;uKM~)Vdo9A3(crKRU@u&XI58KiR3?4|##q+wHzazZOCvbKY_3wN?_0-8% zus`)Z7A}5?ox9Qj*!e*Gf&`KNb$wkYg&2TLD)+rtU_ar>|QxcyhJc?^aiX3reYW6S1s zxah{=ka&36Tds+FS%U9UF=MV?evpJNJL;9f{@(YSFn;VFU4ksqMH~sqdVanuDOuv4N*A5u9 zO39=NBb+O2RL)g4a=FYozh1N>+MILk<#OMXC9F0ZGMS7A?wg51DMzJLy2`NHM8xK` z2RfaG$jC4TCdM#s?C?$xg0;y1!~M6o)<*zXtu|NrR;%c$M}S&|IzUB$TIqFStuJ=& zO6Q?vZ=z84A~rb%xl-G4rgNaRB@lpNKsrF`&Q%P%WI(qF?ZJt+Dd#QZ=lSh4Zwkyu11U**Z!Xw&5P^)DBDsa~Oac(|+vsCW68*B``Pvg{tFKP3<8$Y*-phn5(leR~@6iCL6oxK6TBd1il82 zdhjp0RxO1>qlrNm$MXEMi{)qMWt4gglYy^Q(urnp_V+a2uPm&tcq(?~y*O-5#3mpjZ_ z2o2Q}+dqQX{*hchaxjx7T*jb_W3gIA=FWSDAGW0doD^_wdlqtDch(|WraUuzr+ zjV6vAFQB%r0ZWsWCX2OsnZ9$mev`$DDB6jN3~PSr&KKXdld7n=oDV)9GUg1KF z()HkpAP7p}W?%_0*2{I`Vk5cuqW%O2YtQaYpwpn!2cpyVLKN-P)-|~8QBYUcK$)qU zBS-UHUHWbC+`_I$3I6v8f-nTQ8@LikqLqd46YXzi*`oyiUkJ|Oy#Y9Ta);rZ1+H)Y n1+_VfIJdB^ZFB6>wzmHTwMhFML%JGy00000NkvXXu0mjfK;ap? literal 0 HcmV?d00001 diff --git a/htdocs/takepos/img/gplv3.png b/htdocs/takepos/img/gplv3.png new file mode 100644 index 0000000000000000000000000000000000000000..ba78d4c4941dabf2fcac5409a92ac4c57920c69f GIT binary patch literal 2666 zcmV-w3YGPVP)Px#32;bRa{vGVivR!tivi)#(!2lw00(qQO+^RT0uvMpF24YJ`L;(K) z{{a7>y{D4^014_zL_t(&-tC%skW|$b#(x5`77PlZ01Xf|tXfvU1+9P)Nl;9MMIeIW zf~A;|yxWx-F&@d<9Z!mSGK`{-NXD*+V< z1U?qnFHjo71r>243NtglEQV7Q5|M$wwPW#3mU1Xa75(4)}+D^1dj!r-wg;N!7wPTlz6cv~* zaG8PJ%ocdxi%_r(8VF2J2gJd((|x~-stE3f0*?zktgtfz_z{7D0<}|XS^^CmbayaJ zV6ea`S+E+%|4L05^x|!{8+(dT?jEM~Js`$27+y6h2%>GgYF0wJYE0l-O z)7o925Tv&W;2eAZgu;B5;j^dJ8-bz3oKpjkZt1g)zX^66mI| z)j_Xp5wNzxdh2k6HU6=}>lr5fjzC|47oe%aZiQ_MKeNs1Wz;5au`^ddqYxT8_`O0| z2+eKGVG3K)+k_Uu1%|7S@cDv!RA5U0Jp{%pe3tfppM%?rytQ5}8P;njwoMwi^#raG z_|!q~0P19O58V`YC~Ow^rGefh%fweYXuAOFEA&%1pirdH-T=NSi#0u9by^9`QxJv5 zHjl?NEpVEPINjb~s%aLOrIZQ$Er2cpYhwES(!o;>ZWd4fj>h!yt-vP^&Rzf~rSJ-% zg@aKFTLZW-2{m&$=#dIvD=Zf1XvcR*1&`sq0ThV$zmI09^NGMv1M6&ojS7EJsBiOF z8n;M=9{?nvrNFcK_*#Yg1^TDhK}Ke?#C57YX(PO#~hmZ&YIfXpm0?Of77b zcz4lUy){(?;9j;d=Zg=NarIQ8n^{2*frBCRE`gImI7i`?I3Q90+X5fTF_*Oh*9+WO z1x|lZpeTTXIJ}Zj$9dYg#Asf_jNm>ECo6nxzAm326$kDY0%zN14N};eq2A;GS}N34 z_?^POB%Ep+b3>f}wIrZv1mNKjYL#A=I=IZiomF5OUkN;%%t28n`n7hnwKmOUxi!^C z?!7sJ)RYjqCgH3A+6T}!^hf+gd!G=mbKa5;2^2Z#5Q*l| zfdhdl0@EDyF+dtC++#s#w6j4H&?112wh__NE(zy`FhF3r<@t|C0A7{B|L)KTzz$ld zr)$xAGn~&v$ExqQqQD+9qd48hXc$805H1yOr8Q%W^E8V!qcoEr7HA|sO)M9(j7va) zLPO)u<>K8*eH(mXo|E4b6{n4!WlMoas%ZhvALqY1(?UYejX$qum2H*6CFz(2o?R^x zDEv(hmVvj&jg=p^uDHvkZKlwQXnG#Q_KXL#Ubbsr9Nn7x7-IFOx}g0W@Fj z20>x8!ootY1Jtn~{dF~g`?~m)`Q!|iyHa6%kmfQnQM3*U9~p3ePDSc@Q2%*2Wf?S% zmJ%okp_W5IHRG)GOwilcdW(Gu*4g{T~>dyLTd*<7nqH5>P4bO#m15lF^bQk0@fXG4I;>Zi8G4~)h=aS0UnUjaR`^J~?z=+$ zHTWKdViR&!n`TiY-;I@$Nas4sHq*3$R%RqSBP!U};>Y>BK#9N@@vNzKHf)UY&9JQQ zCMxp?bTg|ev(NnmCWO%6!B~MAp&w|lz>EMc4xx`RjCHn%FPzVQekwkb8YeK{!Gi*~ zsNb|P0)6c!`IJklP`iK9vb6vc-7RoHJ0Nq5dRwk5m+UDA)gAo?O?LN0*eFN#QW*D#LIwjzkygL(4{)S zRcNGevoWb@0%ujrt~sxh79Qi@G*o92@TaP*zZ6=F7pc}Mlq8{3Nv<1-3c80vD-#)#iR!fAg3`3i=|n0Ep+VCB*yVN$x?2_YiZ5k$@3&Tcz#W!=Gm9%=?NxpL Y19h*OP%`Tk_W%F@07*qoM6N<$g8#_jNdN!< literal 0 HcmV?d00001 diff --git a/htdocs/takepos/img/marketplace/cashcontrol.jpg b/htdocs/takepos/img/marketplace/cashcontrol.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66240218dff5cd3557993179a6185ab3bada8d1c GIT binary patch literal 80604 zcmeFZc|4Tw`!_s7){?Sh$yB!NC0oc;vVSCm5R>eLWM|A2*+U3L_}D_034^SYJ%sET zG0bG&X2cj~abG>p?{(jw@Avz>?%#9&e)sdo^SeJ6=e(}#HPGKPAds;!NE!qJv4R*)Pk|VKGvF2w$dntz^!prW zAk)+TR36-wuXjj7-eOfmdSZ0B)!|1-w2Z<1yf6nVA4G8Nz|@K}_7tr!QQ&dHjs2 z1ItBU9>wP=`K+S1s@r+ZMhIe8A3cp=W9Q>PD4D5&&Yi9HmjhpsQ7(JY1xOG zT2x(q!>7ikj?S*`p58Bg{i9>!6O&Wlr!fmS{LjUu<(1Vn;?A$#J<>k;;P5wH3?Rn; zo2>s%*+0?64bXKAm;)x3-*hn?3j!J=Hxu)PE5}dYG-Yw{J#$gF*;HqonQ z1l~taN7(tqlorH^ze)SQDEog$Sj2ybvj0xl|DX#4;$&n1CXbOD1Od^g1@V_a|JE22 zX@!uVbJUO{(4(#VBT&((RStas&Dg?=PaJ_FsdC|d;)w|@4TASh>u+Gf%d2I- z7>K`ple-wV<~ag!8$M7)iy*!?mm*e`(qky1h(7KS#0Izov06X+Ock>5jxKTp`W7>f zrJlA$5P1-t*QnQzK>1wlXtG%S5eO$!Q}9d;OLm3Cpm#5jRgXYS8Ca?gm@tIkLab;L zeCTX)Xmb2U>7OT6=>o$G+cZ}Ai6cNCiYjyjiZJq_Uu>4X#F%&l ziuNOi9f59vBM}4xuOm>G=@E!?nXpfP0XcpInopfM0>xJK$Aj>Qzu)ffvHP3v{$3S- zOO(H*@!z`QZ$10}0~>|+#P$YdUPegjeN4N^sc1LT+-qla8!UAh&qtg&A33BG#0$ND z1bSsWMe{}cbUW7Y;t2GU!RH8c46woy-6n(n@%kHs4$s}cHWnd@E~2lM{EOZ_t9=AA zD5`)=3(@tH5{^I*X&Of$pxum3zPbyQLfZ%Y%*lSZXB|kW!OneLH~?hL6f+~(7QA4wt4^4uWyLt{L^~+>)QIy zp0j)b6CQAprD_rF(hvtZTbxL?qw5DU`d(|yO~PQ#cbEFG)pYFF*HTQq!lnZk?&{*= z8-;4L&XWOFWC9j6FPn!`Ui!CsQq)Z#qv6N_1lUn9{^j%`+njy%Tb{JPkXy|I7A zwv6G~6FD)9YhW$Ka8dfnLs}Nhh&V=Pi+WE^=nM=Jj3q;H*@#nX_20@hILiNm}>jra^-H+tamljy{SsRhyRDqKZ#6!uxdQaeQr(HCt2XE3dlgQ}O*y3WF^8 zk;|{2&QIE5sE1_cpkp%X((*YTsqkH=RQg7Uf`5HbP;+fv2 z;!}j*C#FX?+RL#bi1~WNakx67{Ty8u1|uLNw%R0v6*~WPYk&(8?O%9p?8%h5M2JTR zytS9gx6D;R$bJExUHAlk4X~XR@+|!ugad`@PeDiDj8-a;bjJk;w1 z9H#5l8>dv!r7zt$ic-i4PMs7ZX2*Bz6*}%cMIQ{+C5@G9_OXMrbsM?q*-fW9?0yUh3(RpAOo8^CdTqfdnQs_(BFu)k*E_8#voOrz?o+<5 zCH9(G-0NZT_LJ2C#R$6_Vz0OaD8SNacY*W6r;k9w+jKrehXxU{VA5?QBwB{(0275e zz5ZO=S1C-BHQi3R?{%TNIq=6vGe&M=GL@G?@+CV^jNPF%Co>g#X+|Uj?azgghv1XS zH{U~BGd}FJKNdU_a;ze-CeBi>Mj(>wst`C7-;Z!XCqPik8;~Oqa|v0JfFu=;X>m{k zi3-Vbxx<}wwc3%#TQJjwnagQaWS?#nzk%SA`Ncmj+eLJ5Nwc zF1UYc{sudI+29zHDVSoMR(?J?x?4_}_0K>|ZE2Fhqu>EpQPGPs(I<8TdC$?0jzFLl zx+1`E-Dr2uO|uTnA-)sNZLDV;QpiOziu5edUV5*`DVn9j^pr8rW(4R6wi7wi@ku=u$x_wOo&%qOh3T$H_;fAb_78mJ=07oqUE(+ z4^B2BdzE?2i5olKnuHmI%2p`rb5|X!ZhR9v^)>pwvu@DAzS_`2KYB4^uY3x^Gwl}4D1F(-G(t+vphBE-4((lK1 zx8p*WD#LM=mNT36aG`IqQCnrQLh*6;ulDlj-#_)<`i!sTOipD2f?#YymfioHN0x5O zD=q0f=V#VH!X#X`nLK?fE>NcBsotk&Hd4Y;(n8FckQ|Y7WaK<}8bUwW zMefEaU?lGWOy`aaww$FhAjw(!o4YfYAJ$l08I~7)ksiNx<-+;n*8ERg+Jj!eMac@J z4*&<%!-R0d(=(4;&z9`EjUvhd2?;3)q&Gy*XGR+l5tQCsow?9v= zOO(7G{vms8<7rtl0Jo(}*-v`iuW)VL4DlzynrUs`(3q+0*=;YA3N3YD42B`KsvA?p zFkHj)7S|&X8z}_`iBgYWHJ?E^-BhKDsWN?Xa9I3t#reit*H5P|aTZ>CDD#Q-20f3? z10g(Q(IqM8*}$%5g#!YZ#-2~>!8OdYk+T59>^S=EWULWzUQG>22b(bSw~p- z3{@wZ<+$<|t5-)gmxb&$3>|@<4+HeFLFVy^+N5b(Bh{U-j&sVD9+T~+=R4sr0dc5HFlIk(9A$xlX6OZ4+#FoG&LLL6v^bC6dl*1-z*i9yl+d1r$Q zarbuIFz1#^I0ZARs)Z(B&CJxYNw9t}dTfs3d}o0qU*%X>O7|ql;P(^whGr;FDZLy; z20@E-$_8PkqFiLFIcR8^QFzC%NBv2_1xux(u|<;7(q6OI&MKS)s|gHp@9%4tTJ%VC z4@Y`llG&)MtZdf0jjK28-vmDf20p!&kxcmCt)6BKgv0v(=X_{iS11R9M_3p)ozgsDc+g@ z)XY1;n^+Whl9GP0=}jzN&co}~xy~n15CtCuUFxO6hNRa$VO9pv+rtjP67xa3CC7q=(QXPe>H|G<>cr%ivQ#-D zZ-xJTG9BkKZzM$ZiVlq3Idu_Qic+Um^SgDNspKB zy3*MN=AlV>+-T=bTSMBr7S{zNhKHQC>ul=o$qW)Z;R+k%&S25IWPK`KlIg>{Co*&B`E)4r5y*?{MN@L3 zEeS<#B<$nDTXzE;I}H}H)hcI90^uUI zFG0G8&ys6;^#!|QVgfo#IW+dU+2BL=;kru~d$$q^ypo_zrj%`H4@1n+fcS5J)q_W-@syp6~s5X*V`Ft!1_ zDL0Rff^h9(CA30`I^XwK9?=O}!+$w6p-*6SLourQBarUNnW24HtOrY#QlpRvalM3#c^~ zn_vV9@b)7>)ayjq(Az z&k<+_OlN&d%*MG!?U_s?NsnmR)KTe@6B)G*`d zVMp~>sireMmsGcgxb4Qhx7s}4s#NSHP}KLFRlBv1E&9wES~WE_kpctT%C1SIZHmn- z?Za~c=@AZ@FKa?jd3s5TDC_L*sX2ABue(EWaPPgz%}t!KtyzXdh(yB`LrS4+<$kKH z6X@9!tsUe`KmtF<3b*hR&FO3o1S=gvZ$iseoSb7jopZE8dHtNKdGy-y?N2*be$MI% z@kN`Yv{@g^drgG8SmnQrPYltO#!jx+gcXlyc!YcsF!+{`)=aO+3(QE|^B~y*&i{jw zyZ;0*{1t5Y51(6vJJN5eLif6lKq=*aMLzyZ!cBSsp1gY%uS|sfv=v{cs^0Bi(`7wR zxGDT_st0}*nEGG{VCjQle`v{#YcY^5lwHyW-8QPWAN!LYrwzV7Q(QI_a$HuBax4Bp znNf}pw)7xRLE%m>H+W-$KmtEEgI!K;*W!;^7_UE3+z?$b_9)p%WiV$Xggsy7UD_D( zdI<83QZiXpk0kSrDuk0ej-6MCrg!2Z-XAQE2e4I*Jx;j9x3BQTwa)HKqixVj?)39z z=V_HX*E}Uvn`ign`2uRiXE*BXO`0@aal_OzWAnYedDFwU$R>Cn(5jX^0URxNzGn2X za)?Ar-W~l%+`1!n`b&#W+=*>&nO{Y(Ii}@Wk(2;|a+^K~NNJPd(+@nMtaP3gIPa8v zfoI@^2yWR7t)IQEo5}xlK-S}jv*|N60hVKJuL{a@AMBJNLT%fsXjtf5;qnyo`jlyZ z`-FVF7GQTrgu^ZXzT?B-TKrth0{A1?&Z7JNn6L0{BMO|Y8Y~Tv+^mzfY^`$gc$n!@ikB6 z3j{k=b>W;LPLwGt>!1OXc3WQpQum`JZA0vs6@2st{yFr9sX5nEY8Et%iAM2T_o@o+ z-2~tmCIVTCf*^a38Ijuw>o ze9^k@=jqkb$|VAH#t0Lq~9B(GuCOH8?ZOcPY->*G^y>)hbbPxw=x{Y)w zc+Y)z@#k2&TDgD1tbE^|(T&VjxK~J)&tPTt)|6i3uOLA1&%eUfB09G*bI_zFa7Qb@ z0l7rEYu~E^GdtVW23uQK>iBL%auAEq`+++@*cx|Dd6M1({m9Y*Axri~?hUdmaJ@h; zaF4zT4NQTmdTUGa0QXBgB8;bWDeEW^- zv6k7t+?Db^7#C4ge-QF!uF~1k2>f(*E-x4KSuKGT5yekqY5jF=uLfL8ZF_U(Z0u}X z{3=4kHnx#R}6SWhf zS3r(x$U6nGVR5Ca;hR(AX8T!BCuc%JMKmaK@XvW{h)2Vx$=mk%ehY`G7a9 zN-ADlCZ*49-+*@s`bMEv?s!^Y~Q|sxGz?;s2lzMFW1ln?+ zeFrk5LE8SpwiQ?q_A~kC#AtNu1 zMyBV<4+`F!npvjOGfGQ`OoI~Y*MCmr&7t6W9c>(dICDD!0p>7>oHS!mP39^#3Gir7 zQ3jv#I83h1Q86iJ72>kD8mLKZvWTn@=kElMr%o$<6Y?D^vF9kS;2SmZK>|k%yi7 z26!R-I(Gc+aKSoHISpgaw@5x#>$mX&l0hl$u0CyFLwXGlh5?H+0z~gQwCXbU>E@;$ zBiOFZolkPBnsjN*8f5xl@l_>Rs-fZWl}>Fz#oT)l49JhA1#s%SjX zXZUrM?+eSdrPhn_(qYv8&|g0ACR_VMcjV2UJ1UE#gLOY=tEOBwkaGjoIB>NU^-SbE zl6t0AX9@+(ggr|G!LB5(Bx%|F{vJnjPjl+^b~ewqP7irBKs?W`j<&YNOBYM*?;gnU z|A>8QHVr6zv%mHIzaaYmD`6-&3=r++koktt%#8$!HaTdXs~r;EfDlBuaq-$#j;qW1 z9jMsc{zD*TO91|;+v45(l?lfKj1H4)CrlJrh{d!9gfmyd+=)?y$M&=cX1HTceS-fF z)C61@m6bD?#{DUcxfRH&dbgkrNpF*Mwvs+u#u7^eeA#T9d1CQK zn{P+;i^cuT2k)fR<|iEd^R>??gp5BJ)Jk|;Wvt?XY26~NSY8~eH001ZamE&#uH_oG zvh82#DL1zS23E4$b_|*m=CH7RlAPVEb&4<*+hW^HIb$%fmk=gIdr+my5iA~%YS#Sh z0?#Y`At@{e+6^0n7KW*odTOx~mm^^gg{z91s#6$=I+T(M8OGGw}Q8TKAd|FQc4LGX3m z7y%p*viLUjjNfMn;K90LIS1zv$Egp=FH*?4lVdh{!;_>LB2z=AkCaYI2BdAy=0JOK z=993a3SrF`X?Q3xGjcxFv}zTq-)`KB`uQ3))l}1(YFkS(Utrm^ zCNz^?Oek}JK~w_*SCWE%s^uZJlYSmGzF2d9KF(6$?0YV-%C$GKK*_D_*Oz@Ry>JRL7wF$S?4`5E5WytBN%VXbMlQFG zfW+-@x)KLE;XD-HhR$=4J0B-B!3$r+yYk$c;)B}^-WXOmIZ9vhm*t5iqDBpck=EBF z8sHltRjHH1&SAEe+m7l_z0I3O#Ku-DDqZH{DtBAAQh(6&3B8-=2>U%)_9|*n0r^*Z z7W(Ex}J0|9?v!dkyYWY(gZ-1fll6GhQ$Du3jlaTY*DWPp9%CaD6b}) zL-+!O0}zDv*TEf^?Sqphjm>*6Fb_Pix9O;)e7V(8Q2@Tm8dM8wx0*+iRf87lkX^$w zQ>1mWISv~Q*p-zqUR=WMhDj~K_VR$vl{Ohmv1*7c%4nAp9rQs zho4>p*Y9si;SO3P(OpnRYPd?;d^UR1sGXMJCF-FvEYhyh_lrGhR{cw-0E^~W$Ikd` z52N{Xd4H6bmRt84D$q;Z)g?QubnXi8HPK6YxWqfg6?siR8z$_B4(*guXJ_^cBA#4A z4x`D}DEQ=fEk-~j2)BtsgYS^m|7e?%f2<@^KHw@P%a^Ijp7yLWrS&Serms}h9~KBl zliaBwgV6faZRfzML%BOmJgr3swlx#z+f~4rg<4U0gaFoGKs-ZNOZGs|!7dUTI|JUDG5N$OJK0tSfT8BUqpG9roA)R8tG{dN`?gXQbJ-CV-3V`J#~XV7Xy3|zwl z%okv5{76oH`!+$cljtM9pH%gy8s8MRVa(Th%X9{d;P0peRP82XLD4zE^wPdL({!~E zi63L0<*k{`=;rD7ex_xcg}N2|&6mbgx1GvRIlGo^6mgjuBXBifV|pe>K~TkmKOraK zlCbNlu>dkhCozkm6o!=II7f+6n2T@19DTinRp(YkydcQh42H_%w zb_&1RrLu$3E7bLpEg_!EPg=DJOOUa+-Qbufm(m{iolTPQoF0`YhR)VYaK*V&&s`xT ze-2%agwHNOUaIr<#1pkFpTwlw-2L(dfu|E3AV%6>b(d)@z0#zS6PJ89*;H^dfV%AiKf_U9V5p80}!9fTQ>z$sB)u=ecR3q zsLwB+>kaXIqV6pIvgY#P8R)RW=K8$CDLMv9cw&_V=lKC+M$?Kk!36UTzAT?;xQIem z6yX6MU!HSyU<>75g~)^J?VP3UKi&*nxlhWg0OlX@5wXcd;eyXXc#9{sSk@4XXxC&B z_lv*o5C*5ZG`RTm3fHPNInE~CcTsF35B3fb8S5M^11}ZL310c|n)LE@G2iZps?+wQ zf%|}eUeoN?b^E;LmI7Q+W?=f}qR@Jnod>G=Fq_azN+gF78@lW-j!*^g!^eZ0EeTP> z-}lz#_-*UQ<&_Nf^>Z!8eKnN0nxw2AKfmMX`?9PjxqCZ4OX2fyl$IE=Bu+jmIfg3v z{(;9~V!Oaj<$Pk%tLHy9&7c1u+6PgtAlkLsPSJa?-0+LRwF~GMhy`IHOLzEfk2&ck z`gm&#eZ1-P@TD~8u2C`Q^{>5;4HJIh&$6?;L$v!n-Uh(5`BzZX?a;$Q8J?z|l8;|!Fl@#{m`2D<`6hwPJ zw9W~8LWq2f0Ye2dg{F8*s}bP}(3}n$k&U2fQU_ zyGYV4K*-*C03Si0bR2=*^hH{)T8Z$)SjFq2T2*&$-|bK76UzD6l4S8fxWtB>r$>~J zfXolXWEoUC)dAjspsi*h^RZtPheD2VSjXdI>Zux&dfj=`zZMXiKwOAPh!)!>0COYb zCEI1LKb4dJWi%8gQ7n&Ed(q9wZV}NLyVZX32qe92rppsK@v`L7Q2oiA?K}Rs;)$|r zQj&9)i4%3GRD+eL^PV44iW5FmlnAE!*2i`0bcfhxjiOz4$M=)Jcaqux8uF0ywqx#gH~Iki#TqUdBJw8?X43ctM(76O2M zn}FOl0c7Ag^ZDU!g*bcZ5xQn@CWWQ@kUy^OEK+RZ^$*OA9ku978GlsH-L2u*OStew z%nHa2XTZ`0lj$e*$$hwjQIkUY5c=dUmU((VF5ra0;LoAf23G2qnf!V7$?QZcgU*Ge z(najPZ)^5+_du#@4f?8$9k*GIp>LUV_9yMk2DB=Ym;v;Q+e^GgB%LpIV>fxj{JK9JNoNYptHa84>N0nsy(8 zH9FM!W9pznFx|1e9Qfhrgys7E=JYD35ZBD@FF_io&c4czz01P8+d$5i{+%J<|!)J2@wkE&zdBJaC%YY2f&@vdIf}!^?OS{3N+Ntz;cfcWRw59@N=SzW%yy z&RF}c{c4|%f9v)Pp3ZTTSUbPpiw41mAjjIc$p~BtVDE5o%&gPT$1ereeM4Eg1$}ug z7(Dc&yxzI-M*PT$q2XR5U^xTnCJ_U$8#Ewh?2ZP*hao7*P9d%+#5t{Vt9Z+nhS9A* z4!!p3ADy(?PmS%5TX=YTr@Z1Vr^>5vfIbI`JCz&w0jN7S%#z3->2DW=I|9XxujKMo zkD^M!U396O`tx;352GDeweALreMo#JbLF-Vz{m3$5W*c~!X)$*T@^lwMKQPLrV~5y zmQiv^Zx_nt^`exvrC^_gf6~dZUYRZiItfeSvlAis*hLGEKKm<)x)dpo)gG<5D(9;B zttqQ>=cLA3i+-Hmnv8#%nKn6W{5XAM^C#jIdVT?m3B&um)RGJyBe~LYTCU=^r?=%Q z`4!e=@aLc`KnvBZ^Ghcbm($h&hzDFS0&jONv_5|ZU0WP~8!gZUA{tZpI<<=q!WX?>&B?&>X zn$XfA|5hE&jD~7$Kc-lLtI;=o*~Cry4PV`4S}y$l$*_u7$SO6hW5RTyDpL$Uz1%^Y7ro z&Et=iXLUQ4&iUNWJ%L{3-b!~&njSb+N_flqM}}E9|2M?^M<@YEe-MH9^`ZN+nku#j{c5pnt$}OnF#kbQV5chRNTI`Rn-!Ha>k)0O?A%Gw!1nX87 zt*Y>a+GoC}O2%VGhlZFV<|f5z8!VEP?($mP09^usWEAKeU6_X6VX~~%29dB#3W+!2 zq))1!%v3=-;==}SX@pA}jQ0OPr}%Qr43m;hFMj0NJe@wH@aERjvD7k7<*M;_uPeP> z3Z>&|r$?n)Q{&zJO$rw>#QXbtuK1!mvZGYe)+TCr+f;`)?$7_- z;h6t(LNPEXU=Qg6b98~K0(@o%Cv?&kKTT;G6UK18FYf9U29I@KW%Vi0ksay1jQ@H& zP`21w%8x5!K?=kf%VC1)c zx_y6U?HJtfkTK;I!unD{@>cQS$^G5%(NM{yx=(8cs`O-f1OyR;d zm6ws^-bQvMp4M2YaQb9KgP4uYno;yyUS2j>aIt)_>1t`oq}a@L>-t*!+na{T9}y>h zRMJ+JX4>|fOv2UgUp(-jxKS-l55z_-F_T^)dyNOK6nQ`{)XESj_}&Pr9kHDBikwfm z<%Z_;9;LL?&rVTSc4sf%Cmm>H*p?^uXP?@Ly;anc|NQQ~!;($Fm1i=YY5|O0=HpGY zVl6gmD3R-PUTp5gF~jznb7xAkRw-(RGh-c`WIQ{XiUtZg#O5vg( z(ED?aUt5w=D~ac$H6qiB1hJ54hgEOFO)# z!<{J;ne;BMN6VlYGjly)lBRJ!YuVgvD(5|=J{=i8R!_nPm1}v?A|Q`UV!<_#BrREw zHWe}v4}MvXI8}!)cdHk~{D^G<`z+nTIyU^OS{AVv*E!(35Nox#!csz?z}9R>qP-NR z*So=-u<(-l;sq$bb+*x$k$Pk9FHRW}?K868A6CArIkT`7ho0kow;<4No-t|kGd**@ z0b99caZSwxqpcT6_rm^KttR8W0ESI9E`v!;wlD%IV*|MTI4$r^FGaF;$CRm|lFvyy z#gEZTw$S>sRh)k;c68OZXP320hXa`-R3U6J3`$FYxaP&wqj~F)oG@KlmYFIcFKL%{ zPT=<1NMouI%bPNxg{Y3Wn)i^Fo9F2XBUWDzwW@<`G^}?|0jhTa0*MqL^vTDovL59bVz(K`p+tj8}YWIXYObS`skkwL6h$P$EekF@^iy zS%u}!25uw|`OGxaPb`fhJfR}NsyM4ix)SUbS(`Y}k;PjT>5H%A{h7M{K>z%ygoG%A zg6vJs#^bkhjAXpLzB7d;Q%~2@S!WmW$P&?oxNSaYFt!`YuO&ylaY<7L@59}!y!g{S z;-ZdgN(u+)tG&Uw_$piWKf_aW?s*u>-+_4SA2c@y8gHeiT}@Z})T7`wtw0H|QQdZ~ z4RSlkBk|Cp=@;PrU;+Bo;Org*SksjlX+VBkdBWu8x4q&Bu8rD%prDrh$ALWRCG#8v_M!id*>Rvl!2caNx`#ZIiS`ja02DE`pq;`&cyTF z9#pcazEA4|W)A{Hk{uvqRq0;RQ(8%j1~CZF)eDV9pj=;SvVqeUz+?l>@!D_qj-7gu zgy8e!(+cP(jUrAiNBPG^W)~Qd z1dUEO137L1%u3b&M!n|cE*#i)@!RGehhFX+SlpZGOhs%ms*Sae;k#>Eo_;~i3sGjZ zUUy~5rO_IM_{`MPMTtd$R@^(Q!XVG3BhY~3uM!d-Fd=>5C*TthLHY@DVS5v}6Z|4n zuhY(zVq*6V^XULSM@Y8VFi*NME3BU1L;U&HJ4_E2i4B4dfLk zWcTEqLOERNMhik=a3v&4zrA6o7(;r(p)6U5H}EkxHKHX4Bt!}nTJ5CPc%`2OGfO2}3n ze2<0(#Sx0`29JQsfqCy#1A*CW5TD<(2i@_;8@1Q8v#tUUN8@{In;0FL7)gMU-MjJ=sKlOFTYA=Zb}%(UkbOy6XLys(}>Zux3rQ{3UQq_)E~k z`ViK_x)3B)(K7!Cq*IQcqVocfU(fnVa(v#-<<29J{W`GEgtDJ9>QMzt(h;ar+ylI8 z({>%PV2`DGCzG8jwdn~~y-2DIpzso>s!jEz8G8{6sdZe3a!?U80qH|m)%%xU|6W>{ z&VWY~`fOroe8^-d*{b0PBveQjkhyyVDwrSweX^5|K=^=-d#3%*h}eJX2B`AjOfN-@ zc#!u17%B`wY$8ctTD%dw{m&h(0J~Tijzd=JV4+8#j#e~zHjJ0&>7SZG|I(8`;vXq% zjgP-}S487qI)eNoY4+VZ!lhj2{-qo6KaqxfRFHJ<@9`rx{XKqv^IziM>-TT@_qYD| zts4KK2AItIAX|F-XhXWZ|+R8das-WK-o^psZx;)}#O{S$ge`5o$^B_WUcOb!UCKo7Yq z1&99O>J|H?f@gniYFHp&%oso@Nb+moLt}9V`WNiZZGR|*Wfgnqg{mC>pML%439f%I z27|GiS1Gqv(KY)W8c6=NtUHZWGwor{B{~j8vL`|UuFsBJek=&t=|1(fR>J7ZpPcWA z_I*HYhVEI!`Yd8s0{IGf>q=AmVT$0ONVc!1XDK8BCSPCsW2Ua_a(}@3iI>FkLiOl& z>2n;Q8_q*|@MG^h9=VO?j=sA{6HY}$O0%gV^L_>h>TTvLXC}8?%MYGfFzFhOP6@8r zrzjXs1gt9AR%+pP3pE2P4&nL!BL)`>Hxvs*6*o?_rr6GuXilOPB^7vO~wUr^z8u?1%Co-|G`dY_1i$!C89}O8xN7c zYZc*cA{d;|j%I^)&2bPVid`M?d8dLWDR+pf&ty08mSbWcBhFpiGIHAa8pQhXj}rsK z7o`7)@|?5|P@nX5m$??!P-|$KJmVYG9As73=+&6qQtVAFgN6;{V2#>rb!3XL$`h!u z?Mf&qwFX5i@`9gTrJo~8G*%peoO>(QGV33WYMeVZYAun(CNJoYPp3|wPro&zcU9_- zPd9FAB|?R%oaAc@+vHGeyrxlEuxrOCc?8ZE9C)~VKS4i9rZ8Ntr`X3={mV$jhaJ7s zx(1jYwUM(9x00*NBL#GMUW=ZvtAhuHdDhe?4Gcc0@*E_gYz{gUr-rtN_nd*M81etC z*D7L1^dps2ll}1DVc>kSZFe4biyJAS?139x&HVdFIVZH=kJ_o?;utz z+><2w>V3m!EQU*uyy^O(*VC~w7||tiu8}Vk8?#p)&@jFm68ob-$1?b5;?$BseyYAR z=yl3xwVmx}Hm^k(X|42YZt6dYnDtzhG(#dd=Ea(*m$^~Qo#;`E=gEh|wLiKQ-X!EH zY?@wS9Acs_{|53Wl(t1oC|1GcM&m`v9X2eT#*!VOlXWG$G9qO@W%k3GQqoS@3Hq+a zYYbOV{YBo)o>PU9QFm-C>+k}8p3U_cn7+0<)B!||u`y3kLxSN&D(!@IEM)vN59pEsN@2>;_?>N>-9P&Fj4MdTgLcK6}tJFuh-1l9^@= z^(lv*51^a8#9<>^mKIxZT5r}wZdvInTmYpS#D{sRyKi1K-|To= z)9ro+IAlC5o`4{W`?PO!x$YvN;0;GFDUfKE7`0_OfSy(rfA)nkMi|v z7jIo)I{&zS_N&1fVjhUP?<6b4=aE>!hwAE!!S{Q4O6?De4g)4JwI=RjMVRTjeT|Sn z6@SQ#qLGilN~lR<8y{7l?C68@%r9{dMaF{l8ppPfwr?s0jWzBzyE(l+{@vw1KG5zt zwKoxrDPQ&>OI;tVs-+9Hl6nB(&wVgjX#yI%ZTL#g?Wuk z?~V>Oc%g3=kp~J&ddP5*?M5GNgM4(XAuHPN+=roz`AqsR{bly69aq#2f&wfKdf$`1 zuWRFz@`xI@2yKx_7|=(wtBB~Ba?EIc<2W)PPwrwoLe=NZFZDdhCtlrW-v_?C2dydT zY}M`v9o|^R4W8*lu(Sw;;AK#rMk{`rplNh9g4WXUwWp z1|4ea@K{9z{y)kI7xF+ifY}qG%PZ}QMr~F|e)eBqJ#%u3$&}h(`S0Skp4V3C|+_eTIu!y*hFlg+4P37X%==TWum#ds=iA+6~NQ@WDfi zy?R8xuDSd^E`ehB-KMaGGz@-Q?R~0H9(&bY?Lz;n-szU>mEAbIW4)%&o$d#41aCQ7 zgE)D|FS9VcoF_@3rQn+G4cKZZ^-LhX2jj2UM`*yic5ryfbk~2pJxq(jNqoaMe4OAu zC9LPqCu1-KndGo$WBe+)J{*amWyYYrXL`_05&hS+*xdLHe|<{iybE0u@!Qh$N*;`@ z9_|-=u!k)ATGM}T*6_7Lf3X;{vhm)#0_sE>dgoJLahULZo22)rbKGIZ&wUtQNO7(1dlMZZkY@!`%UQLTjLler9~vM8v+Y#I8qTY|o88<4vsW;#4s{ z^(d7o#c(@GrRVM`TlgTIlWa_p^t8YHZPzHwgfCbDpFcuXtvGE@=?r~J?$Eed^1c7g zy6sh_)cpDv6@N%%UJ9yrrHHT>xea+43}i0M>{n&9?W|QzpzPf+s_Cp#$+qEJim3-S z^4noEdX0y?gc$r%GO?tqO=}d@>}5EIU%Wskexl7}?OXpQ5eC zksFn1f3%v)*eRsTjlP*vsJ-TaUx2xMqDjx*SmeS_-Qr8c{rbFm;#|*MQoPGO-BV35a~8H-boTZ$K%yVhD!E#)PfYeue&iy^M$tJrl&^Mu_J6Kvg2jMY+G|73l3>jTv8#2brJ{8x%jtLg}J2{rApXJiY0 zWC~41*ME=cf-upgsgEO#$&L%n&=chT!=Zs*Ey)aHXzy_8^cvA-W_oo;=UnMXB`(-` z=e2Rb8^hWj%|5%fSaLDtN-zf=+l|JQ+#}{iqp&JMN2E-^YeL(Vez>P}Lr&sy?yzA>|Z@O=L1%^S^z)UKZ= zC()90nc!MnP(q8t0-D=hl|So!rY}W{Y;Hx4Jq-WxEjat$Xxprx_(rH_Ph$PjZN*v@ zi~e%4$Eo@?y@$#RiMH(!E{L;jxcTRg-!W9kC{-!ooB&LN=MncKxv$lAA4)Ghed9bI zp)Yx@>}$>5i{ee8X5$j?)jm5?YwN5ss=mHjx1_%OY`goVb|fYARC){MsTb*v2G&Hk z04>wTPc{aWX9z8o>cE#tKzwchpRRjh8}x1K=VXf`-be~%`*ury&+D=H2YWV&Fqc$? zTEl2Zo`ffNCV>5jDKbEIkS$UBbK7}xG0|+ebDb!vLyoDi#s(K!zH>k9jVX?_&fwrU zi-ff+R~*M~#J&FfE2kn;ISYMnf8WbD%xTn@V(B^Z z3q#BML|OgNG)^&$CpVC+$WTH9F6KGxCea92oEI~N(@h|9-LGvU>Q<_a?Im*=9j}$; zbMBq1?OhKDQCXP2b3Z_GOV2txJG8shzfm#lCn~bt${fkMM zYf1*@UkCiP#mq{zO7(1T5Etb1dOHH8kPJWdoxI-J1WiDNL8gHSf%9m98{e-x8M<$M zWixgdg;OQQs;3Q%w;Pz_Di)qi{Av~-_+T}6CO50H(Q7$uwRSo9MZUm{KQ?Q>toI1? z6uLNh7+#1+yv$N~rWrnu<;1oQlNyqc^0K>Ma0yQ{A|`F$TF*TDaQdP~>d>dNKlCi1 zS!jkfzF=3JICjI)52tW)<-f7_-ce1hTe~<`R79jBElMu}iWH@)NRy37FQKSNjS!Iz zfhbCE0s;ckdyUjk0#T|oks1gPNDz<`NT?A)ylek{_mq9U^PO|Qd+!+E{bMs=WUQ6N zDsP$ZTysA2d9tpczM<|ATKU`8OseDdmawA_xFf0~^dxEtOadHtbtQ(&ot_T{C!5%R z9Q#qvrGP^=H;lM=2NssC%*Mq!DO1rvLeMVc|FdfCfJI{xrtBVCh<;X&;%6f{gukS^ zEo`z-+WQU-Yimi{D+&JBEHk{*z6T!moAAzby{zcm?qM$^Y40VE(q#SOtw}^oI8}E( z`;wpgO=)@11xkqW<3L8#AvOA4;)DyaC`^O*rOJ()W?I^lt0w+)-7-IQ0j@w`h_X;E z0e`wK0I*gr>db5Dsl>DeMkv0$s+0f?1>F1HY4DdEM#a=}JAD_=LaSz`^XAB)pL#INr zADQ!z7#6~k4mGJVb!5j#XbE-&nQHD6$+zRei?6IIY%0oNSs)6w?Ql)IrJxYIb&qo(k)wUD!tuP%_a`y z(6^~@^5FxD`AJW|XuXNLMkq?}F+NsW%R+=3wI6#( z3t~_v9&{EZNjC1uX1PMv4uh!^bnF4Bg1l>KnaekvM3-7@j?nNc0c5WLtg4mk`3uRN zsxvHDwm3P9h1k1gCG91=bo7rThdLkU8ZbR53*M=~r3S_2I9{L-B zg=n;Zgu}{HE3-QQQKR+g-2X`%NFU>e*c%ALbOmgr0>dyI&KxW%^JYUor8N-WD7RBL zQf11ag`5lWedg|9^2k!^f2xO;a*age)tS;)W0aD z^wTvI1Q{w8Rftq9i#EG&h4#0lHrteEvh5<)v$t<z$jepI*)P3Q{Iz?-h&$ z%TT#U$WCQO&Q673MzS_ASMieE$po<2=%Xz{@}n%Fw8CxdtxGQ>g<{TFbDqozM&q42 z!A#L}=TXXpL2-9hJ+eXuvng8|6seNkACN(XFz4#Z(FI1&!@5fqWjXJcoc}Fy{VsufVR#y157|N)L0Mo za{%w`;|y9Wa0_>>i1qP*q2p|O5ttbY1rQrwj?d9f0U28E;fl>aY?l5-o!~E@|52sD z4748mi%v*e^B3L6U;uz#G<|>OAC(OL$uV@_D5bxLCDnH~&1BYkf~(9j!ZJ$@==Siu{&P$H>lv`z*K31C+`o?Ik{4yu%(&*qrLX z&&AV(T!LjWs8jQ;(5?fn7?J)=Neve3>DixcWwr zCFctj)}zF&7Vm_g6~Gvb65ZCHU45(<2!Z&$c{ttqQbIuB1;OAVmrooMRG-B;x zKnr>ex@GqQSo{k9(VPFTZeIWsFrVg5QiDkAO6qY`5FX0CqOcuZQc+J7VZ4tM52=ad zxRvnkrrG1h^Z1AjND^i9P}~{K1^@<#o_LvXb3KxDc&ST=evOT?-W^C`H=o5BV*d3U zLnMz$$x^FX6qbEeQ30_p=Apu0lpUKGw5Wt3H&rgvAvBo$u^r9knsbn z-}>6sc>8cFMyJi5I=HQ1FyOybMp55`P&`T7ga@Sy>P(aqpOru{@}I@V>Sxt8fNrcm zCRvf_k2w>ftJqwwu%w)J=hkIzVo4!!)uzqKr($>3XJ?Bg%5V`3-QHaF1d{$|sgf?a z9Yvb>Y^I)~=~YpSsA0JuW@iww9o89z`Yrdm@#)5wc~IRlnVsoP3kD~DpjlKTgK{X* zIwQM8CXYe(?3WxKQRrvL*69ZFZB zcHSTqeF4Q@VGXYTfW$I|t?x{yU3N5cPS>$F`~SJW@;*F0*945Za6F=uDWZXP4b#R) z;Q^D~3e+86gVEpI+`YM;bjYM2nJy)mUs!N{_IP>>oOd2?^rB zLFJse?|!RYR^Fl+vKWt?9sT$_YW~hYs^kpy8t&Phzd@%k%JC@?x%*r8!g^xN`I_M0~LZ&106XwZ2|@YjVq;CG|KuOEadj;1WW zo;h>BF15O+fqro9;Eno-+)uyNitz7sv@c0CBNt(LyiYtQc(HLEa~8}UL-_+ z`IXFjt<7tvzivQs^NO+e_tCq7w19(E)#PSg>H5QKFgdbl+%uG6300W{Bvm5orbkPy zTromF@N0N1m>&^~wi@~x<3P*E%)^=e;l&o3Q zcwm-(Fdkaaz|s5~e5JVonVj$cSoeC9y-%3P)03wGD$8W9k-Vt>v{ukAW}5;0C@)I< zpV3YoOZ{J)4%WWyc2g(tGM{8v^eZT=cxVUW6oiw5=p?oG8sDO-u%vS-Ib9@?YdnhM zp0Ms`vEoa|TREae*vsxpUr*BANSYhtHt_rkyyoyz1=oauRO3RlKkb88+Oo;uMP7nK}#ysQcsd}w=%@KRI7jof7l1>1tuV#Fo zX+}IwqGyY4>X_e37sT*h*;idH{kr7TVyMAoUC{yL-13ni{auPBKAyp@!@J1O^Ui2h z<<6Hni=z5bLYPj4fKZonMcJ8G4A(8fzZAyN4O)^6UU{j9WwFceQWzzop&De%C4f`682uU8DKtp5lxNjY^8#@x7UV0DzC#^;wr zsLzg<2hmX^ACkL2u)C>fdge~+m0N|L6pLGV+t;FTjqCACgG!$|vuw-CV0S0DId(23 z>m?y`6PRR#dc;&M9uui1X-U~OBr%25Gx557HXH3USK_N{t}l6bH)130e0klCV_{q; z5604a);CFjJdYjwI?TVskMlDIcXMQc*^&~qpxKaWR(G50)bH1PN$(N*=o)bqQk|EG zFti#8aIT+H{bs2=SK0$qVfd5iJ2$yqY=y`&uTUTYh}rqRvHrNcDmQjx-@r&$;8MX| za!lg$f*1ObAD{~;b-Z4NWnC-1)~I9k=)#CwL48de2eKw+N%^TnPKAWOMK_zz@doG8 zy`;s(mKp$$OM`AcB4o789sHsb-scT2KUDRjwC8C-xRyZk#BiHABD+7TWG#D~=<)$xyD z>Li0WbPe(-n#RI+4r6@Cf7C)ntMWJ!%QG9l4rhhbt8r2VN!g!4XM1ueGVL@zQdsEu zcv%;$NXCV1=eXso?PAFfZ}97O>wB4)Wnqg&YnEWGh~n9g^1ePE!DoPSTRy5Rc?0o# z$s@z(U=Ue5f+5q`V$@3yqIaYh7zrB6k^>@MpX^)XES_!~`UUPirad@He*W#1 zm=mGa-W(|j7FIncnS0J(%ZaDQ#}e@gXsXpVRyqy7vjU!PLNYd3yV`7{HvTf(qp^QH)b0Y(-ofbG_@xT$zyCO zcE63)w=mvccu?IqR#%wttm->bD{DZ9?yc5$_uF_Ag%Mf0uO8+lm3)?sB@OEc2khZA zrlbNfI7Xn_9NvT}lYwy?E7NVY4=it$6to6&tfDn~SgOifO1=Nd%J&(iOM=*e0fmpB zh2r#e$)djx({49k&2g2-^H6#U!k9D@W+Sp`F z#qJt4kuhrvTV2J@2QV{*gqCWj$87gY z7_JMwmDLs629G^l9W2TKz=j#{4Cr_p-T}Egz4dLS?Z58fH#s%3qeOqvU1oq&IB9Pn zTD5=J`VWrf1;ssp2r(&;ynGbh98OEpwSd0rj>r<$v zo5uuc->3=V@~#HTgxm8nXdwvzK;R0XY6ieJLp2qTP6-0B9F1ReT^Kh_-hm6EG1S}ky5Kiis2Yp#inEzcKLg=$F|JQ2uZ4TRc2Cla>oTyijy0xVdks-BJ3#$D`S7K@Ts?IE6x!kJ55D0W~TkS z(_`E$4~nDZTA9p8y$)yf3~JF61%6(KE*mVj5SfB5d{6G)Nl1}*x^m}=Nzx~gI7fPb zPw`w7^xzy&=JhiC7hN>)g8BCiW>fE<-6b<^K0o(qjzjJB0yNt0JQY->&GH-82T6$L zQzP03n+_P?N7T3QJ{oJ9)@mP^_=k=F0DOPALREeTzvw8;4d2gbuQ_(rJ4nzJ8Mo1Q z(C6LQfC|$*pV%Y7QWaBhu}|l62%}<`n)C>aDL+%gYFzFJWMG+xR8+)>L(e2ya)>1b zzExC-i^#v_=zT)ym8ta8_5D*-J^%KJ*gUWOA9v%wA6+f3VoQ%a)c-I-)bWP;zv%Ah z0OdXxf6rwz4loQV8)?S+lH^{*z8&zRxBCj$JBr}l#XVREcB|4GJm$rUzeIcXVYIz*q?R=aAW@0EO6D09=kfPgT0Z?o@zRKF;*lAyeXSlsIC~V$a?@IX)MG=2Q_Uz5dMVm(kTG zO4<*lDnb{3Ha8$jI_&K^-+#8Bm8&RGydic;C56traDW*26V~yi@87LaNuP1D!?Y_D zs}5@tt-NS0U8MZn%#aIwybd=87n_ zhj;zx=XnDlerrAaOeCu{miJdLv{p>J%|4Y#GI=v)Qe! zI%my?2nlq$sVoxP920Ub;q&MnI(+{>7!dn_r zgG#QKie(5tc`#*vf)VGU{xP|*yD(pyFc)dZrY7j;)Zu&G)&)?05+=r^!&pD{O^oOZ zalDppu{y0%N!kwFyN2kT{UYNr+Pyf5)!)3&)a?5n0c{aaiC>r~Bq24DY{@+xUv}ebcJ7lF?tZz`uj_z3v1%A zvs&3D+EAA^9KmS&w#}L=!L`=LH{qR;P2Z4F z0xfsOXofQ{#IjfF2QbQ7?Qbv1m7f| zT8@+{){D@bG3Qi@-+L3u$`y5{b50^m>(K`e(WShYioC_<`!rOY%pzF}k&607mlop3Sxuf&nCEBrNuBjs9k9u9_OZ7w9?kLN zp`TsX`H7HOrwNvIk>aPrG1@YFPg?Y#Y;d{Ch@`c-5P%SZ70>i}?kwfOEi*sr^?WNA zNr9^2%OPyhKFUsx9-9{387ce#;wLf003mCz-XlM|RMB`SGWhIHCLTR}6Y8o=T?Ra?*~qV>i~q7o3WJ^*Wcm=& zs)Xx++zM>z&36$x2U|2rh3Bu%kqq?3*LP!CH7K!Ujdpb=s;0NFY z?S@!U%81_K&El(v`L)fjj0Zd~MpVleE~rm}HCxGQ;T3+ME}SeyGbq>Zh5Femq=?Zs zib^IA_;KU-wz}rXd*`2S;e>VB^e@lc`GkG3mux+<7#%1bspTS7>5SyJ;r}q$<-&PA zHn(pU+nTZc4!n&@^xdv$(eH(g0yqNf@`7)t!4w!@)e@Y|yuPzTHfzBn_#n7*q>0Q5 zzgmOC3%T;K?}myi%zXx`?4^7ro*UFBT`S9X@Iq-XNEz?NwH>88kg~f^5EyzroobO8?~jJ5beYM?=uxg&lZNuAztHI+UxRU5YF0C8IoGonL3|R$B&%Nk9;wYu&s@%a^25*6aFhmF@g87$lVQOi zCaU1P9c!0JJl;3}cZKYYdo!^vwW)BXliO|iJ=0)fm%{ub1-}D5y!Iz4(ENTZ?J@-G z@U>WVxii*7{zzZCKr8O-NFR3K>J`KL#i@`>9URKhyz?(_!ntT&zTC(j16J5=(oh#7 zGMi}^%4Ic)b#1^3akF<7eyX)(;W!Q`vNn4^5{40hS>Cc5w*-w+M3pyalA%KzKNPwXE80m@1iCc>CR}MiP*&%( zv<2%`4wYJ0l>2+%Y77Be#muZl*C`llCKp|4qpW#2drMUnr-d~z$%v^O zmy}d)2>ZS&KBw1k*wP1{)|=`+;?XavNCKn)0{6aBV&`Ku7C5Ts;heC0W6(A(hDbL# zAWnO?d!Zc*Q}8jg>GK{mFs;{2bn?IS6gdi2`5w{Da^rGB`KUaI3ubbZ3xKo$`9wdc z2Bowdrbya&P1^2g6RMBb8un`GPacD2m@+o&O}lh}6P{%(V0qs!ObKZWuz1^Xq37S@ zcqsh^)H~nY)h@#fhhdE5yMfVj7yXRyk6q0ht&%Q|G}2v2Ch~7deT|gVyRo(ZS`3t!7FIUmcuc7yE*k~VQJ4gyieKu zGFP{q**m+Qeja#q%6+T7*7VlH6;h>yu4ge{6>Y=$CiSOD5;73d@^ffjl&DN*-J2b4 zWBj4eCeuuTcoUey-ct5En~~w`S4G=Ujfp1pakwdHUQ?LZ`7BtCBfUq2=~L^5g}s+Y zxhQWEdcpT4?ZO&}8RhRfLE~;AOScjL;|!Bevc|}Vf^#7b&^?Q1^$dZ}O8uop6;=~< zxzCuLdfVMrng`^wlvQrc+Z}_cj8H)fO#FT_))be#>CaGG0;=W`2Ga?u}pNEG^K-Nwz}4x!rjST6AOA-*vux08ERBs@GTVp1Y{R{+N79z<~1yj=!Zg ztiSV6;38*oQ9}v=r;RiXU93sRY2DLk36P9|7{8mx^I=^#q1j-yhL-i_%962%=@~yp zw|{yyuLP;v-8xDEL`Q+u60|oufiixEQJQ!y`WbOf7vEd2)0!M!0G!)drb(k*BDn3CfISp#3t(a&iL8#X|&5Y@g})Q4)_>p`@4Cb)tPjU?R;Vp z8I&mId;S+4dvHe<>llrf!gPnUkxP&{hJ(rUPz4T_!aZ4C10G)Iax}tt7_hewU2=G5 ztts}xHydC#-Z!b_G|pnsYgNg}%yzrggzg%2yE-TLWX#_N;Y_<2W3}TJ)TfBi?4x}) zYD*#;?7bxs>%<{B0Ojb@@ZTC@6}nvA>oOG%zF+=vV%B=-`U%RiCk{2S2{_qt02%bO zz2QW~LfaUke%2A|`#woP^Kt%k&>Qiu4>dzmR14gEr5mNv55RcE^+hKV7{8;$5l)a{ zks8CcK+@Z4U+iJHQzP69QU@CYi=5B~Bf=rC-3tE&>JE;ET2O1v$^C$0BFFX|OmKEWA<$Ff|crMye!P>|nQ}DXLG4To*suIu-m5w+m2A-CMhN2U=2rm9;&9F#9nG1Wp(3@R z^|7}svn2gfmatyNth(ZH&Stmrw?ABc$!lH&Qzc!9CzXFnR|oK?_7_rfDZzbG>IQYu z!fx}C#|4h-ik_qE70N0|vXPe%|LUoitox(cY772iX>_n3AalP9@MB*~T5@qcKsqCi z8gNl+36o_9J=73)^jb84e>0P4s|M0@8HfYGAb*+Az5{NDZ_xofCa>T>wCW(rf4}AY z7ZBcGKL785@pklx0X=%}wY~izP(jAe4rzuFyPws%a{vY|v@VdyDguCguf%C`>1Zkp zaflupxBC4a&ju#}Neg{|-{iP4)%hQel{bp|^O!%|=g+b6=e+o<{rJ-+{An})Trd7y zEC1f7_}wOqRAVZ70_#cm)BEJEM4d7h#OKp@E?xrOa} zDGxtdif&cSr?r27mB8!nF}46eS8nr$e?mm#t{>&X9YKs#;63GD8)(Fvs7SowpIZ3# zaT+-0!dc@U*B#L0&|W;0AIP0qkbVmoM@Clcs46K>%FEeF-!4qP_Y4(=ui^2%`9pHs zY2L1@T-lBys{Mw_Nsziv_=>OdcayGQKxexz`6ESB)EwLc9+{8Xk?x^G)5G7uoCt$= z054fp;`QBEveysH zw_TB~9IOiyU${2g#g@|}P;-6i<(K{sr6+*OoshRM12Shv{1n)zmgLr%5-dmlT3GBS za~Gw98ZEYQP4%#hZbf(Pd8OzAh``_cKlSp`6C)Xs>%E6^FhJ3IK9jQttN3PjK8p`M z0TaZlf^D-q0;Ev4XJxB0p(@q0GgX(Pv`#=~RHp3Dn(bVpSeWKC885$UGHy#3`i@;} zi!z*QnVqt+EOn7fnRo&5b*Qh`Gb@CW>h_xtK=au>2tXXYjj54LAL88)zxbm8n~Y1` zPx-ONYK{F$dQfJmMXC`L^X^lSt@soYa6lQNoq0u2XP5~dz}@(U63ko0frbIuCC<)a z%gI?k$HRLe6Igw#m7FM{rjRRJTF2{LQbNOek6)X%b2PIIyY#SXMQhJ&)^asz9M)Or zuj^7!P=~=Mfp@3-hXJw#YlnZzn80TEA9y1FaGd`TQJB0-JNZNDe1K0BPKc}>Q~w^O zjz5wlsyl>jY~4#V8Xc<9U_?FdkgL%VObF5P$!{`&Y9TV=P%wqYPidKt@3hg;1%(Fl zQ^q%_8Ud_c0s5H}NhKBxz43rlFXmyIkh;Vb=`K^tSA`?)Sj3>qVi02VMSfjo)!0)^ zSu_M=o6(veQh4~>6~{oiP6iv16<-n8gD=BGU+R0~E7ie@4b45-9ETirD2U%|e&e&w zOT^(si$$9lcFQBl`Q-?j2n5NQP0FTde8O>t+H2Lio#;YZeNVdnl`Jq=G!^lQ>$4dw z(T}V5C#YKzkUR>XKs(1rW(f>$wu!?SFqJSV{L1%liZkF<_*5zwW)es&?T-Ta|bf`h@!`rp9eY zb#wvHyh?3XrvvELqY)9fE7h$o(naH=9oP#W`1cLT0v7V0w;$j8twNu%DRc31*ZJQr zWpjzvk(Y_52zoMMYNy6fSLXGy*#U}`!DkH(MmGJB!WBK?TI*i<-7WCoo}b~x9Jp}0 zuC0(se^&4`8U^#FKy{}f}Q&1^-)UZfzCl&I11K61zxOMMRAF>|zJQL5hT zpg;A2#8I>5>RO>Vm|!a10!}DKPZ*|&fPku1Y+(Vz}h<#CK?*24?#l_a_{@Nr;^U%>XOAbSo z$%6@!QnD9fA)U4y(cNFYTV3^!clYRhSZ|P#wVKu4i=2C|gUV?Pdom(2eu3yoJ9lLs z5Qgrv^6k>MRedrpZ=lwP=}6ft+P7{Vf8=7Htrv#l>juAH4DoU+$cxCF0)U_VzM|a* z;p#QnL|@Km?`&p2NC)UF)tfY`JqnW|=pqQwcanDwqo*{>Y&f=}TkF3Y-EFCr&=%L9 zW`qWJ};N+7G3F+ zf~VXTy(JGz%~Ge90yZkeg?YT(C4GbJy(-q%m`<;a7Aj=^4#j^LBq4)z^~mo!j|n#1BE;ON?GvzXP?+YqZlY?p zzIk{X2xzja=q)fY_|N@dB|GeAz*R0Q+QTKJjMSluk8#-}w$?MF|RdM;nI8Z_HbzKuy(Pn@#o zt7-otYydzwL;Po)wHJK5Pg0=e+CWI>jW1)NtqV<5kyxQy0%2t9h0~2cl~E{2(BwnPRO-9-YpPa%Y6TOr+G17{w<*v;a;d(r42HuGEnhrq3Hd0huu;?8@^|M&#cU| z#?)5tXvYOBP;THusR{r}$Tv(y+1mq@!KRc|da59?NN1*8@VNQqm^fKURvPy*Ui*j* zkP@XB0*nCUz7-Tu?A;N3vn6i9inJGAVQ|jhqc`X=dq>`~@*QuX^NG(@Au_Z}o1fHo z1S#r3e*%zQs;1|UXKr?Whj&L+xZ4DpCV)gNQ{7oF`CCvyy&DYk1z8@-3JQxIPV~=v ztbXnpLm57ys1yR@LDAL zv1d7-t&W^u@DNMu>k3;RRxa5`((vd)DY`wGV^nKWc9%gtyj_L>XYxy0S5_N6N-gQ| z-wQfyfNo7SY+xt9-l$v1tqQBAij($llR#MYk2|U$%|o*}^>qc0>7Ub{NS{xN_MY~t zvO$n1Z~w49`oVkVu#j%sQ%8AJ9unpg?JQ|1Na@3qaiUH8F8En$`$OA<*c=w}<&R&7XchCz8&86CJxou@+DEMH!pp>P&a zI`#m<^N`3jEA_Z~fanDBk@ihVdvEZ=!G+fzd6SyuE7yC@|9F(OxBhd~Qsunm(_^8j zGbcHm3~=tiFp}rTM78*?6K~eh##q3sWr3w&uhG8Mi-Yq#V7pL$RkBbP=Qr3LKo5mzS*5b_C?qiR=CnWuRPLivx$rBDwe}uc6n-bT#Br{^0{A9;;bO z@uyT)2QR0_7LUr`yrkWB>Z7pWNY;l@XB^%?v-h~w0i zO_kY{FeV{in3B~tlriKx>a+7eVtE_{fVJI;p6%T6os3Qz6gX3a8V^;l70krBmI#5m zlynbwvF+DbSVUWLY$#iZn7wW7JU__$C2Elqu1#jxOCs0L_4tq!JJe56G`dDCDK9Xc z>0$X*el^RQ4alffe>^ho#_3G|r5i`-PRow$flF=flv;B5T?&|_zL!tAQDsvZ--+N} zO`j*lhc7-t(yr;d&q%#XhuvEusH>TWY5f*qg)_dQX#_D}5Pb!(41&V>mByZ_srs3> z?*%K>lFZWVPd5=7Sxm{NT2U<8wRdHetDD2_e$KDI*EDyPp0Qcvrk25Ed%o3H*H5H` zTc0GL2+|O1XGVOoDpo93xheepoztmH>g29|n~d5h?HO)142E0yLwaFrWmcik8O%eg z8To;WeJ0R*$%zUH8c$D)g}yvlwtQmQ4ZgQKA$OP=*g0W)0*Rui<3Y^mFmD8_Ue$Yf zF^4b@H*f#b*?UhCr@%AUwG*oHlP-Q;V=WU+lUXk;hXn)pEGP6EAEo_Jlw_r?V)#0J zWWCHqO2ekX1kq7NhkM*>YQiN&Dik@RWoxrK?SY~$EM#*y@1d(fU2{`K+eTqM3-nPa zQvx4IlQh%F9aqVLsF<0>u3o&8xn;=^h>+C_9q_1N-E_EK6IZM+@l|=ME;UeB#C#`$2hspy(xqLzkzUHB*&_yQ04<(Vn6sWv_3Np`X=`>p=iMl#XttrL@9c zhevV4&Sv|y?-RH79JF*U5o27R=FiSpJxJZB-F3k*4_!x2oxhc?8sUCg zJL~?>@$&mOt&;56oaEuc4_IyWe5y98Hg@*SCjCmEJib)P`-nKP@gjP6N?9_nT(8xx za@DSGITmGrmkIOqW5DN8qAe()xrhj9kjaGb$PS2U`sc+jMnQL#^}<|cHw1O^bk4pN z`s#Dl3Gf02$z-&%%<(xK&bihP3NSs6SHaY)Rt%m?Cw9}OUM4^JAQ74S=nJ{Go|6TCg!)_J`q`{TSZ9_{3Zt$t0Wkg&dyj%)!wui zcqWzL+k1m6Axd&a<{SKDSTyOd15KA(NAX=46eYMtj=5LW$Fo|jreGt-cfpa2T{By~ z?!Q3ErqJ- zDE?`r-3Ur}{q*t22ePtaCy0Pp$VGYRYsKrU0hmrmpp;|xCFv{m?~cj`OwEM3SQ?Fv zeRsO_mFfP0@?Ib%SF}6+wHk!tL!7dQ8IJ^(xHt30u zG&?AaNuOvcx3H{l7Ri9BezTc6;nQ{5A@0U#`q7i4XsT!lg>}z@WSd$x)oWj3xiYT@ zy~2|(JoWPC&`p6zmqz|vYw3(b9g4OUWvzs&SdAK&p<3pHwY^KVA$hnV`=Ya~Fpn8K zA(4?wI9a|&iKfX3$sz2I43^;`YI0OtAZ*Znt4(&&&v&69SgDl^!*Cod&c)T~$%KD% zA+IidbI~ufh8T8#%&?$+b%HSaIoV4zY}IYXDjsC7Bgy7_edN@a8z?WF^cdA?e)Bw7 zMNO!=6>@Ll%E*%}NFZb_`{PlOx@u_4SN6+41sQqi3IoS#ESe6*^>4{PO|s+3yeYKn z6T2#9WuTpB=B8zsttdI7g!?*!^bHOW8L^rwpE@jF)l>+KAU^U3_&aZo)wb}J7a=wJ=c-#` ztqdrsUwD;8_nan&?-ly6ncTy7&*z8dtu+<%C{#N6G$m(d=;1f^?Qo0D*OyDrLH(73 znW4q|m_b!H$D^cAb38CbvZ4;@YaxDmIu@c!j?2PUC6!uETI)ade3mE6SH-SUvLE>{ z?@QkZW7mn3&%C{VMjo$cfD0VAh>RAVr9!(<@bDc-@(%am3YU+ zjY_F2undnF=<4FgUM=)qaHyf(X^OozM(s3(Vb6_H3P6G=uLwgNu!oqsAmuKFgP|zt z&ANCtjq*>U)j%x_R7k zCAhaJX61>Xq1HpJp|Kr4Dbaj;-)00l1{B-k6@HIs{-=Li2(02>#8?{(CHr$Q8wnl$ z3}w6k1&+HDwW29yNNI-YzS9`(*J)CyJPkk?k;zEFQjlw(@g6xgj zNMX@eOxws&uFbHE(~L?2zBbpISnd*307*8xCvRO{?|Ya>wd}d-!sUqiTVQjaLJ>md zIMPL7{ARJVWvgnjWKgdEAtu0ifqh^+bI-hHKRyCopBk~LCV=y^!yANn4MkXmMdyJ1 zQccr=LT08stZ@DCJF7cx0@xYsd9HPBDXk2pGCZ=Xu9bjSP#o26$4>upaeD(eF>#mOf|#QZJwKis2wML z8Sw`HG-FVGvhW*#+1mIzJ4xGHF-Rnw8i=bcHGRgSilChxBw@@bx`(V(^GtDQMU3=cGfEWH>lkBm;a*c>H9_3a-?rss&WU` zfQc%SELFSh$zGQzV?1jT-(CW+fyht~SJf#e6o1h%-{$?EO-E&rE)-tylWf=b7fj># z%%4u<>+O9qEvu`t)I8i}N}I6zxjzOcorcl`;)xEw=(2;ff6>u70u{+(CqM-H_8@vf zGA7&+bF~1K)ZScYwUpMd>U@tgp&+5)jaHw~F$Z{}esAK1nX-goQ@ejS!QY>}JZ(C) zc$cQb4`4>y%-wORZU@Mj4vIO+wBkPOB?cbel!;P-nwl z>oZSC<7Hl!8=GdpI{i1h^bckR(8}mAV5FSW<+)3uMdsD@H)uSzXRr3a&_9WZn*Nu@ zl+OQZ_D4{An%Y&}1sRIA_o*?*3G>buD{F{V$(+G5=@EJQkyAZ;fj0D}?;cDn8QkKq z!MTR>DdZkXQ%+c>5?Jjhjy*>4gpZLh^HXc8gKag{R)u+zU4m>6FKhlLP;#@k-_xde z4`9q0YRd;w6*u5yHu&E!Utm2}E4>sWH>>H^y3tY1BCPb6D#yaF$W07-xpY~b9^kmm z21-Ou3XKg427N(J&Rcduc-${K#hLZH3^>y3hASXPD^G z8-N~%jjUQ#ne!vPIzzucrAM!RjH+F_iVc1R6?g;CO(?fSx~&Udf5qQ#K``WEetFRi z@h_K>!f1rFlQ?pqVmF}DD`)}{ygrnuP~U)As&v|_IZRkWpMgI?176N?M^X#L2_TIC z2p-QiwAFm$ShgOMNz!RR9ja%$9iMry`WBw|iRH4wJ;6@bmmig~&!{`Z1CK~YHD9Ro zY*)KfGwf{;nO+TOSgX9yy)q6xN0j~O<6s?=S;Fpnqe1Zo>+~O5Q2P(9%YLKFEc560 z+40Qjal7=P=B540Ih($kn)rJgsI2CL)!pr&sqa9o2Kte~8z5W*^K>FGU7$EFO|0o8 zF1hi4U9dv8j-YPt^PrYSpNVD?<+j#@B7%F_?1bW8pBX5gEJOU^a)0d1`}G0IcJh|D z)D`BIBqisXT%*eWuylj|u&kSD{JDJo#nbqQ8U1e@hZDv+0RAK8cl<|G{oh1%vhjzD zO(+Lu8|^LDG`E7-fVlOXVD{X<9w2w@zX{R1Duw{wC*~1zmsB(k)#0BNY2to8?ad#s zYUtd_X+0NT4#j&`TeCcucFi0PoBFjDfw4D$pUK>Io&_z|6(lO64FHWeu0i`S&Ll+dhAgypMKe8Z9bz7n3c#enr# zJSvt7mZ0imsFL`jCu^3Zl(d2#xQj4OC`HuiPQ4Jmv~<|pIAR9IY?84d6Grj z-HayqIDsm;PJ@Vv(NB))`yEK^DHO*&-e*aNdPa3YlRs;s`r`@oQQM%?@Xz{n>Y(6$ zH4vq^h^k1*lt)LSwA#47si+z2+JM20E?D+-`a}36b}HsY^MLzZIgeDMho$c6e)nrb zK3pAjaYy*9Cz&_5VAqD8I0*AOG*lg3O@i9g={5vOX}(ZD9W1n_&ZZ*o5d=gF$-W)Y zCGJ)yM^T!dg+rc7r_5NzM-kG5t==a&a#26E`d-x`Z7jx$@Y3ecB>kY(A1-qb^P(h9 z|4uXZU;ne!KQyO$V$@iz{ABKslB?3Z7i1#&uf%tx-%C$aNm24RRM|Ji8L%j+^fI>A z4J``hCNzjpIyjBN1xPoUjA4Hn^Ss%*u;h(Hk-0o`c*yR0z##jUdT0D}Z5O(B|I=pN zH%i|co(fcgU!1hUO}R2_N@wJ(l3gWwiw5Obt$T$(DoS2uxzYsRRqlML!>)Q`Pl?h| zN_8ETk2Nxg$v&kf?V?bX(y!P-6t1)%t-9Vc;t#Kfjz^l^*p&jCA3iX90ieX zwK8Kg44FkV&q-xsyi1Ai%z+mz9{79??lML5kOc>OI0~aLr%aoTOV!7kckBhIX2dF~ zDok1%xCI9J5Et(-SZT5qq?#ueoMn5q?7Rc#0Hnlo7nok7nWWo5D{6e)zvyC8M%>IT z#-Av1n}@mK#)hOitfU5R%yK;c*u(asl<}JH^OEU^*=Q&X$*4K$+u?1B)<=% zkh%mJQ9v(MAcLv`8QHfH?VxFT+qR=@n$%jBWZk#T`pq{=UrTfPgYq=xxa}ex>%(pt z67v%Z5=CSrrhAz(WKva(auP_4cgO|=CL(i=v#lukR4lq3ec?yjso~sKzxsa3=oE4c z8Ospeah^0MHd5KK@rv7dHtrB?Jg@p6|@;y}xgtv-dY^X3g2_%z6J{xl(Y2 zC--yR*ZsSGr6ngPb1O+;QwK5Ts(X;fd@u*)V#=j-=nLRRaa`{66nkr$&ujfkfkf@D z)V?dRVh_xwHph9tr@smCc7%o)>9BNFv)IzhW)*XR*_|`^je6kC?;#ra#V16 z(#Kk>J{?RXkY(;msOvV`#b2}k^1bP9p}a-F0?sL6J4Jb-_qJ+%lTPsyAmK`|b=W*q zA7X$~!fj0igxL!GG!RC50X|=>!M&NP9P)tcx&^K^lJZA^qxr(D=Z?VFUl#(!BHPaG z+e-pERRxCnZ#F|?pn|;^2XKMUV`3HGcDxib#`V=0!PgiTxtE(-vJ6i3x^utB-slT{ z*(Prz8ln*GoU^jAI<5Zs?B!jvc_?L_TI_OAs()g6oOo_jy87E1CIk19fwZ!VH7&j> zEAal*q+7}xvB1k>L-+N^J~UW9N7bPt4Lp$)1IEojvr4ml$-aG1PLYd42*T&!?dH7s zB!Hj%Jo{5vcx~z5xpu-g0jGFRMkaLM6?SAUxP#*KsZ}DSlO;S3Hw-Uf#B^i;UX?Ws zAEPcLUsheENAJ7weHqv}#vvO!GjQE!onh3=IuSXnV(AX;D!>b-v)s#!6&9+qt?%q zsjxmwNBV>HCtTWQqX#{8>C{HM#Sv3jE;9DI2m`3-F(^?clnN^ku_O^j1WQ0;7{Ys!e@ETdP#jU zphm*YXkDb|6*xt%v@a5JL%A2L^7zgCCR7DFtFui)DCy(;Cv{Mo%-4(diq?q|8#S&q zVCj7=f+J;oT)RUO6 z^e@4WGn@)hC%~)=Lalmr+WyNMB+I8SJG>?7l@YrSBg4dQA;ZtkKmF1}v|5ed)XCNvFg<6~)PTW4 zJmoSxiL}l^DdVV`8<}Dy=LDZTV&;>PQxLLDailJY7TPDt?!*+PO2$=fnH{LC_04S$ z+-~otPJ)(Sfs{W#msEL_Gdx-ONKK~x)aT&{0eK=kVST9ylSjMem^)%O5x;KSuVtK9{SLGV*a5rLIn27<7BXLI=8@lCteolr$L?^#UsM*jF*_SC^CS_mz%}M8wovx$;YPt|yQL zS!dvKEmY;07XjIWBA!oIT+h)2(GT~cGxOH!;;q>2c!^Ha=F-FcFD~4FRbb(g8LtRM zbRi|Sp#+`Tn+C2~>vS5F8sr@!JG?#yE={`ns`R#IKDBRrw`gKEd$m4vQli@EjNRji|40~WH9ceE z?z3qw{j}@s^w(8^yP>I&MPOp5xYKQUnl(tGn*U~tcfCZdD%MIt{|eF?Cb)DZ4GH3~ z#@*qznTRCULx5ZAHbM^3Ex`}$pGZN&qK;Cq?DFc3FURHA5-pq>ZL-)7PX7-&J`@Nj zi)~ks;C@g%o~`U>Y1J6F2$I+w|C>lvA*76S1s4DY9x0MRG2q z3l+oS!q<;3j_FIg5GR*Xr@E7%M+gMH(ddU?g|8>833*j3T|39^l`kac`J2sd)H?O{ z>KZWJcop@}XsZA6y1-^J^Gqb2Fk#>(`Ftk}8wKa6f{k<@`#xPjdh}>W!_)5Gd|39> zhtF?88Uom)FB`9-?&SRdE)}5|$ZTYC%tNE~Pf#JS;M)@{+2vq6D@g9S>a6`gM+6C9 z&5A8+yY!j|eHFUxE_c$XHI2#(s}H=;5_A?0M{j}zeAAKhApB;V*dEi%(yNKzF!(+) zKVD7SoNL7x#7cc5IZ=yaw|O{;Bu{|7T(b>+vamr|oOH>|H`dkobK`7*snn+QByJaI zr3tmCv&^)h;3|fs~AQu-$anAJdYFAK#Q^}fJd{2KeNI_jmNOU0y z`^5R~W_O?cP?yEQ8JCuy z9%LLLBZhTy8g`+(zoS)X1ZNsp4nzIfIQn3$aMaF0Y4xF5Sa}fkU{uyr&R=Cnw_dHrgzKyF-IMu}4wX-_Y0%FWPx9Dk9eA?1 zm4X28c@mSAJH3qUe1pwhSG->{vzT^Eg)@I2X=9q=gFngTna{?nJQN#ua8AlsY` z06d-_F=0Tp0L7!YnIiRQGL#qmic3#LtiTVa{l{0Ea}o{@&-wQAj#P$=8nGdSm}ke) zIR5>!07DiVi!-PiK;K*105_$lr>p7o{E_Q2l&b~!iQc)j*b1zT=Q@Z!*GmlXc^(0X z>p8%dCUR>k;rQ0Rlha1IuOf%BihvncgUwg})XV6WlHzc--6__|sLGWZM87g{2s%Y{ zSt6`=d54)%m9*>9rf86l3lK{ zw3uhB0HLb_!S#{aT^;HI3ifCg5u2Qr_-%!W>7hFDs&X;_1GLwjm~`yPMZt9n%Vlyi z3hs5exqDW0#U`IkvpV$n@%d}L(%YI?2XeUr=1Rt+svU3Xcc^z+&120iPN9v@!H^kz z3vo)hei9)3IWPPJ>+fI6%|H7WCQ0d^8+hE|$N;ETrr)+fd`?VdTEw_!xPciKQob{? zrZGj)2fvRvlo}jENl;BYt9G?}PJra4-D+h-09Pd$H0N)G>E+aem-UoJmb3Op979%$ zQO5B5SuzuyJiPFyj4vb(Oo})_Vu_oZk+P(w#MMQQV7R;nP1C_1qf#GRA_p9J*A_g_ z@y0niMY~?OZwL2w6;tB&r9c*V^`9_(T`;yCH*5cNlL68}5tZ*TAJ}DB! zS{VgU!ONREUxtosGD@ounSYIbUAsP0OwBw*ID^+r z%*#daMwhTHeZT9BY2%ef$XD{rZ?>j|-Ax_VAyN5uP9tsza;i^}`ooTC8O=Julp4dh z*xwt1YtQ0O!{lZ&5)tRY+ODGC9uF-JKN!|HxH<}Qoeqz9C23KQ!(;A6;o`XIA<~yp zba&H{Pb`zTXjAiFO93t^QH;@?2N$C5wG%Hi47G~G66}z%HBE5_wR4TtHR+e@Mn4O2 zi<#;?mf<`b^qSIikz_ljvNu!k0ccx4K_QMiVCA^_ltFAcw6%)fO2^*K+(5_a`U3kX zC;ejzIfZ#aLU)uU&b&@NmXrT!Pw0iF;(?(tt{O0)h~`YvIxey?^Ei6@nd-?3OCM`P z(W^%q_vPV0j)D-YU1U7F0-O<~e}Q&0_X16tVCJ1ZZ~6Kz4%cd?wb9F^1bOzEoV%w-$a-Hhoe{OjP_ za5wkm|CUDK>Ou>ii>@XE$<%X_u@(1|%@y12uU2HeNm3}kS^K^2(wwDo#yQ`S%Fv`U z|L)jyhRwbY1^8pFPXA^T2Y|8n{4MF~i*!zd`jx{Q+G*?V@qy7+=T1ECRG8%j z0#`nv1zCM~>YdC$j&WuPO|b(ng41=I2&7n=f3#dpvbo(ed8)^vranRt;;@jY8`qdc z)F6I0l617Pc=ztf0d#W4kMiS<_s_G{rWaj8WR^Sznur_C6T4aZ!3>+(oG?pZXG($x zO^BL}R%%qbwMz(KMglKZx;$C?8MTenlzLOuk;rr7`WF7@4CKr6sXNsT7`uDQd?B}mFxOAXPVY+Q z2iPPwdKni#MzIdBLrv;32#x_pqp#n%OD>K8PW}t~l(KNiX}BEip}`pj&s;FT^tOd_ z%zJ}CjOxH9(I+?wt}BW$WKPUO=0K#pNu`+0Lt z`u*`h5*GwWx-loqZ}S|#w-l6nf!gz;n8r@La_byS)S^XeoI*EF{CHgTkyDUaYP%7q zyk)6;Maw%E86%2k*KYSE-{hTI(|VHKw%s=w?SU`NeP&GS)Hmq*q%H@~36pTkY~&+S zgrsOI7i&=RIQ)`!5}fk^M-)@9_&X3fG^VQ>Sia0>D!KRlL2H6dv^1y0_q0U5XKtj; z=KyIVNtc&=^B^4|kNDybQ|wU#)H$vf$1AtOAC4F{qHer49oKYNPtI2 zsZhEB!*I?Z0mSXodJbmhNPQP-AOCn*S0-B{xBRa&a@&w=7q9;+0W~PwNsdTN* zs-PhS4XoHehMW`Cqr*TDGybX!25Q^G##gQ5xaMYV9D(RZ^VoH}?_d zekHqq!Q;#EA*Neg0#nwtIbLbGoA~J;g*!zRxw$LgqA3qe5&f@;^2G(-I|cI_7CVq8 zyBa%yQdRvQa;x*_jx~5yx zd2K#js@RcnS?N)5@&n!Gd|hvr%KKLXh+kIb zo*ZokR1@f=S+~Iv+yinYq*H>gm5RvreIS8?KoGV*GWUOVwU<7?o(%cwXCeTsh&EGw z35F24nDSs>@s|Ows3i*cy5cZzk+p#*(v&cbQ@7q4d0f@**Y&$1+3=*I;OO}X1=52F zb(;1pIufC|l;A$EdYs|WHSXJ^WOfWw*oNdQD6O&ORQT9Y+}DxM&20pYs$4C*xJPL% ztvt2d_LW-^y}h|Ld@%m=Cn{MQ`0^vRkO`8bg*)J#3e`Cj7{4nT;-dA4=EY}{03Jgs(psz&M58@ z6>I+5$6Qv?Tk+nCtlAH zIzRGo>c@By&6i*y0Yj856c$cfV?l(EQZ9TzefJ zWcOyYU_rEFCde_s+`MmTsoY}lW)9lhTQUiu!&I(4h(|uTfIrMsEP{Es(o8;~g_kpe znrz?O)ATEg&5G(#{=rzTz6?;uLmH{ZjMVnq_OY-Vox6gaSF;Z}!QI%L}3m3I%{SM!m4I0F+hY^6n|#1;+J zmEx`!IS#mal(rOjhk&8##v_Je1<+eRJRd5>UvuN*;~q+O`h=<}ZU=5};4BXng?Y^3 zpTTwJm0`D=a$5=+h~Yt-(VI0&HE~sLiDt690xsA~(|sp;*(Ofaa@d^w_0`(i7u>4{ zYOyNVZnk@8pP^haV%PLEQBK&e=)<~C%1jYvD`3hoytr(Iitb2>BAr4AGu01XBBbH+ zF5(CUxG_yI6I#MZ9qMcvO!2O<sC^SkIaDhn|+6;Fb$MZRyQ>^tJ+OIDU@Fv#$nB zb=+uDj=*W7Re~YeK~$w(e7U^0n3?BD@Nz7D)tN$1i2Y`&^7GJF`jz`9erByH_$&E! z4rYRaw#N!6Yv{FZf_J%3A6+fqsJ*wIA|TrGW90QBk_aCUZAov5m;Znpc@F>%Z2!>@ z)smsW6Ny2_N`5rytdzVyysZqiZym`ugNSl^G&VLo@a1hcepV}X`01fpk)Ht9^te_v z&2kQK%Sps3qG9W^IcZhJ9Pt`lI=4`+(Pq1XQ~Ubl&D+nf$h1bBbe6X|(|*xC+B%_j zAZ2M;K}>HA%J9MeEPnj@*IjpLBO1TAy9%G&=V&W||G@|$_o6kBf}Z+^#+i?Msr%Pk zhSpd!c}skT-lu#uON`UIM`x73yy{ZuuK#9wHZaP*KV^V*!3CBvyBM`^3uvPC7$*PJJaPf~*7fYBX z^jw3JOZ5&wJ+0dAbsw$E4yk-po27U!r;_=d$dL?we#7*QM(o`qtE7*hHWwRu$iYiE z=bX5oW{lIw6A|wl>~C(@WBL1b_}ax`zM_4-4Ns^1i7lb=_=xyq{fd zbNZQI?eE-9hRT=AY?y7~%fppk*>3-9!r?!dG?!@o&jc96S*2B4nNO<|6w3jfXMnL@ zK3Y;ea%#97+3rZ%;v7Y;mmnDn=D>*I|Dqn=4d%^zeBRdBRFCcb3FMqIbnoc0!Oo}w z(=UZ#=ERB!O*z=+0gMeR%zm>;{tA7>CB4_0E%LtiH`^`i?{u~wEP*hSac}tbqK*)E z-C!;3Nr@|`7w(C$H3KCXg8Zfmu`L*lYiLlt0?;357CVzW+%<{~k!oThg#=`$DtKxq` zF|pxCOtJfzzBbD*=KDo7=xSoJdXEJL zbB*sG%DE&p9eZ$iTXKI{l6A#u=&x7*7q}Wi0WH25o#@0#7bl9#RN*Cx-sN5ATvnQX z^}jhoj=4y&^qme!%L?Ov_w2W$|7m*j`+uJk{Qo}Q4LA0$Zbp9tk;Y+zcNk#+QrN=4 zRDwgJzGjqw=~^|{1ECj_Z@ncsai8^5e;4-LDEz^{^*Jy(=9z4|{iuOA`nx|_uAQQ2 z6Js)pb0{v*!us_rO8a%`+LTC1MPEAl6*iOW8_%}uMh7!W=bZ50kF-nj;R4YvUcmz& zFkL^aqIfoLExpG0qh2pVz5y6sCaMk-(+z}`5oPPBpK-O+H;y;$Urw4`d?ol8*5=!+ zRD9~X^L*~}*1HVDeO>rNhSUBZjIg;%QafJA%P}{>LpCS)!sN%AOxzOpLI%6q=}$k! z6<2^Mt1M{MYTjTH-AR<1&;>#Am(;wp;@lt)9{AG>3Bvb2gN{fBi~5o(^`C{Idq@)S zJ5)tw(sRJIW6Jd##arU1HI8PGw63c^?yhDr8gskF?pma8P=M4ctk}d$<|W`lMlm|b zJgalmoz4;XMNBnqy=%Y`!o$IEhnq@Gk{r5IEr9X;q*8wB_)z78kX=m34IJk}<|E#u z6o$fGb;ck)Xow{?HB*UVs_+PTvN&=2VK+9GCWI7a^F`E{ZMp57n6p0@=fzFr00Jr( z!*ouP;VO9;?m#>GFlP4W3**LoSh8rb=aynXOHGn@_FduA2hT)3;#$9*(ph|AaIEEt zz*YW20Xu~?bGdcUOp0b@n0~N)n}b~bI7L(Q!ft9p?Sda+4L$?f}?ML*IX>nfuT5bhMNy z4suE?Q#p`2-`2`EnsH+SPy@gBG?-znBR>)_t^CC z8>k0b=%Bh)h>_jJ55G#wh}>!b2C=8%s>@@LspP7>H;`C?B zb>64&a4MP{OcAC514`YLHj$kU2#RqXh#dJv7s)Lz>MxzH&kOe1xtfq*7DpM@xi`eleRXV;jdy(oN#SwC=D9&nwW$bHOnwa`?hcw zDlmT<-Y1(pXX=2-%E)^FxrBdeIW*^s;8kSQR$)AOXBT>c$6(2uNqe$hR@Mcf>BT@ZpuCuT3 zy^Hr72nXc|0T672uFOc8O*y%=;#;!Z$~jtRF46VqmYwONn$)uwPAynne^{P=-o)?d z;}sziUn>_=nBfDzG^Yp>(n^4U-O1sH72lp8D}3P?+kbCBgXS1g{ii_Y<5yPmJeaZP z(R!oHexy)1b{ho&QyYW#Eyfk?O3f2 zFhjSJGB&u4>tITM?LEmoJo;V(ls~hTVH1(U59ro#U96wQ<=gk{(3*J+cIuJ$+`<7ogrDS?MEnCAa>@yqi3!cVGh4L9siWz|j!;6;uOOjN@2;_e zy*F){#adtJMMlq$rW&giJbFK);Kd;HkU2V12>MgxpD_p#SY+3@zB<*rDzcLCc*1&^ zf~n+QBY@YubF#=3W$Bay6|ykAJVT+M|6H1x+B)kisJ0bD4Wny}>ME9)KvWYn7sfG3 z#+(k!ei(+!VsUZ93|4TzIX~GflCSyb^yy1SWYg8`^Q`Ztp>ULDyv950aC?=E6bmPe zqCiZ%?NYbJ%Cvo$Q>yO3?&iumGIYXTcjeAOkuDPO0buW8=*@SH5qlhI>6t*-iWB*B z9m8E;q!t%1gdclx^wdeIQ$7CO4_+9&{pFVQhK~A}((M8w7p|vN^dx1IvCjj^+U?3-<6jNf z07oy+rpT|_5)va9nxZA&CM6FloSybzlQ_QE$iwhXK<`~3iQ%az>~FRoSvv}fxxc??tVVAD|=xMK033h!sM##?J-bddLC4&Xo3j- zvn{&}OB!OVuDS9-RK=b&r*8<}GO$yT{`_oJu-2{i&B5FIYCyyg*}h#7P|!nxYmpFE ze$QK1KtEr3RLy5oPDm^1@am_YQ+|FXXP%*Ed%AlOmyqC)Tu$0xBoMTOt3b9J759MY zE&IRO#-60@cu#J6oF%sS_xKx~dG`0VA!dzMf0HaP)Tz=F)S%q_8cp+5@zBu zq59)nML>B%c6owRj+Xp&$i7bDUCuz28w#nnddaPC{-!qo^L!^+9uy#b45Ie{5LEZb z97+s`)m{f!nu^s`lMc&*-VZGUGC_9svn$)$Eux&!k zp;8I0RVC-Dv2jnNqZhSibSIRR!i?`Ko}T)A*t|`E@~5E-?=FDpkP4belYgLZ)ukeHorRW9buZvi9@u&ekG&Y%Pq z*70$sD?GTkD`+pZndoe+rTGQ*_{LD@hT++}w!u0-kZORi+mW&3%IKIo?$dhSyaav? z=xGBB8O5`kU^_V$FPE6vRpm9e2dub!B|dCPPG4M5;1>&NhR|Kpww@OZ4myaDB-Dli`p7kX zakKX`K>uThs+wWmOt||oT#e$bLRbtdzv+;)??TEq6)V@o-R7G4y5xRGcR4A?Q|<#! zl`!3(iNA^2H#Z2Zbg-RYyIZ?dSc$J49%t?J?e%Iu+Ea~3i6AaQTu(9PXign0t?Z6H z)wb~4d!$>`g3$0cgy6Vy!|zSeNz9t57J{iR3LLHOtzpJjpkil;M;P=NOxYRmvPQMD z#E@t772rBlMC7cwYG;P|Ea^y5D;ct+Qn0D&9xipq>|TETbFKcm+wkry=g%ft#v_mE zD|)u_GZv_*>r@?B{@c%jJ(1+Vgj!9fp?*utk8r~H(YV|f({0?!t=dI+=l>br*4TsA5%ht3_hs)@!pd_t=aKf0w0=nd9H96GQxs zZ+bNxpY+;53$TFpg->!8pMv*jU~*~Y&+$mYvaOpUyQ{tGeU}K2lghmKKr;o@y7nz% z*H337kuLUEI%m)JpH-1s_EM0`@*0-HpT&FfR`sl6L797wr z+u#oB4ZxD|AWnoVTy+HSew`B6ZUaKd0+iKVXnF_JYG%O#GegETHJC%B5L<~SBgfkn zBLsJ3KKzZsm&h7*+*w_rs^7s-#k8;}eqhG7tj0hnrYS=orl$|+jpykLRCD1TAgJdT z(vSaUTPUeanKGN>#?$OOP+XPpD}a{3Q#+>h+^?%M%e%C$9}Z5=&@AWA{movR7{8v6 zvW*5)9CYEaR@FfoXBSI|kwD`#rkTXzgtepJ4^|vcu1waUVK&IHb2q zdv0R&1lk3z#?THdhu>oW=M@q7Wh$C}IZU2u@bqJ^u5ZX}k5;yZ#3P8vRKZXQ^5QL( zMN{EDONOlWCrLrpfI;=o7@Xp~x8c3!iOMQf*>u9e>Lb>GN#m<@dE!?M;~U2_R9rg# zoPTu7}kRHwR-O(%UU0C)K|V z`xbQmJuLFy9^>T^YD~ZJ^S{|5BLfFxc3fp~)ztdRyn81qU9VBwN%tN6$|jGSI;S=a zAkg*;#T4LB$v(@71MuNCyDflTtKMN}PgJ22Ym1GFU6(?=OH((^(?tzW>VLD?dh!S> zYI-EM?$8u#6jf*6PI}ff>M9AMaM^SUY5C0%EM9B4I>|q*sCav*=9v1+u;+@a=^GZ^gac2`TS9QaA`UfY$vk5T zkdl70c^kxnPQvxVse3;y8K5WJjR=-n!oKrYDUt@g| zlv+pa{&MG@U%+NXkOYoJ6w$mHFC-7#A0XpOfa}!{(ihh|ng;4ikK(2bLwu+@Wv$~J z;B&K)z?m941({tdbelf`aLNEGaiAr`p1v^yOV?55o3xaD@k-EM`?~u{ zFn(hBf6Y4*@;fqL*JNEWIT_{%3h=wLJ1qc zc~h|W$bhKv832Lv*o?v0+Ru@jrz*7Ca3pzBXeS6Dp zpAY%+^x~DY7ne-W-|amiiZzl(cmu&szwU@wmPG$IsA}wbIdeL`I@iSU6^~=IKt3i2CdC zAj>}Uf{dIDoz&qzo`s!>=fBy!c%qSf`f|&}I%ezKjd zspr{)`np_k=)N@@pV@hN^{Fd4{9m&c_3|>)Vt&np?4}>P4BjYT8*grQB7$bpwn%r! zW~$tcv3hl0H0xTTa-)j3aZs+6TlC=nU{JK_}0+??P`Hh5molb8!yIg*`>opW>5B5N?`xyez;faHMXsZAWJ-hy5 zi*y#&+*Zq2al(1uSZ{9?1{ekjj_K_qmbngm#EDhyN!dAyw)V@QqWLu8s(IE)A!>f7 zq!`{!QW9p_PC(L&V>QdqME6Y$Ci7hB9I6)m;cm2h7nK=vdzvvf4~oTeW00qo^?9iQ z2wmzg_3LD=3*BVml(X}Dtow0~9UB2ZkN)jfzkp1(5G^U~c`S7>v zN`IcL^ShQ>de%2`f`(Oo ziB)=9VMq6q-W1CIX|oVP!5;?foO#6Hyi^2+JRo7f!zi{Jda|yWq|9w^flFl%$rF~I zlUBl|!T>`+URoF#+NByp;?)!l*O?1I@#~6~fnzl~@<`tuT$gqt{RRZztFGmlU|(vu zOJliL>TNw!K06uGWf|gStN~;Wvi3^!;aTlhg6k@} zWhfPmUHkWUQENX?fj+=Z$qH=_aY`R|N(+1!F23(A>RpsYs+`&lU3>*lC6rm~+X9fk z)0tHLkDdkp7wPoZHIa;6&rlO47(3Kw+h*Uu4seh1 z)&XoTNWa;V?i~45g!EV@ZBmMnvrd4mbD2TyHguOhf~P72qlz&${df;L0_gYk3BjzR zcpz0e|F8eyuj}yFdid+U_^UqrRVV-2FaE#VH(iDe<`?iYtPhnC$&C|DzuBr(nMpQ7 z-q80=kDH>$FVjz-vZ+gYm)s>pYH=Pn`0+P2wKHf}gspPUV3!Tp%Rk|_q#QMK{{E51 zzt=4t>Shh0HlPUI-)z;vcYd=CgB5w`#=qH8r9S*-`)*+In{C9q&Gri&%T~bUM$nXw_r&u zP^J~;fPzOG7JtC&08UyQFb=xwL7J-md6@kiPsfZQ*$r+v0lx^G#8x3;rj(yeG;w0~ z6LhecvWC`>(K$QbpQrPT&VEAMGxlj6jE>JCv#^52;;`SZKo)_Nh+_mMN z6GA&8wNcpQDf5v!dCjA(&5ep`(DW-}K8Z&Y)Q`qnzChI>^7d`LNVS#;nqkKS4(`G5 zoqI;hh7i31>j8If<>9OyX# z$P+Rsv81)P-4g*-25dt@ibad4O)4o6_=FZ;_=;0;L$iv_9lH1MkL7oFU$<7NT9nFCs>)p?Qa+cxvO=r?)k1aTansJN zzd@Ah|9XN~T!1nzf|4-kSOYG&1GTnoFYRka0Pzfd0tYI0__NeE4{XX#{PSYkec6^Q ztvJ8S(V|#(HQB&z)L~dYS(VA3(JlgwhC{<<&k;FmUR#f9tY~Cgr;Y`Db5wN5sVDUH zcy502Q>&sxh*bdA^Z_MdA-&4hE46qWC0rxap+yzqcwp7Bzm+HF6UMCUhh{G}If6aH zbkGGQXaV4h@UBKOBLjh0dXbwdUhArJebr$_jO(wWPfQ| zHf?gUM`KXznW<=9{6gwAai{ao?i)Q&(hZNPPpld-Ee~#Xfz~Xi&5VXr5EN{z65WNu zNDGfz!ls;D37(-w_J3E;tN%`d(D>(VA`sc}@+h9k`J3&AX1>EeKK$?U*uZe}80 zHEOIU0Sfmhf~4EUadoF4WvgY&y_UqHZ@&JV`RW$DB7)o2@V-mU!AniNI0PX*fskQ* z?dWX1Fpg6VoLv#tP(D%TBra*$M3~?bB?WwWbobC_^5wSqrIU(|nYkByeP25g zS*v!Gmf=>)-jh1@H1Opx{j2~p&jz%UQC+ig)8BOe#~%Dg1}y(8Jnza2SP_}g?9eo! zF2cmK)(eKSVbD0irvz9LF`V7YU#ClGa(ts5RCiO^r*$y4zb}IqrEp~7aH8bQugZ&d zX;=J>ryOQvvsOo%ARc8ia!tl>R&HnG3@V{}VyGyDfD=Qqy~*UoR>@XB=r_MS4V=+?`~<;+?!ddEMZKm7|G}or<}hd+PwUs%hIkD6ITfZ{j<* z&-GIa5Y0_T{R1EPlH{s#S%<$|w0(~iwp|$aC)`#p8f5%4dH>3?BCY)BFe z>B2xForUM#R<0D4=UJfS8Hk8;(-Zykqc}}468X?k>(&nkX^{GkJ64{%LF)O{@t^JJ z$q5sN&b|g1&lMmaFr#WYQfE`h@o{8$Sm;&0qH@p67*DXYM_RO>!}oOQ)bNw>1Xz4+ z{&t9ILr`lLXl-WIo3b2+MRJ$-LpNMeS|OxQ=;wrtPpXqWbL-CnTKu{mO?<*^}QRgH?n(Wxd%t2auf zd)Q7Lny|7_x;bO;h(7Y6H3KtKMG1zq@Yg8V%E)-ITtR=7?fqNqtDQn?^}jKr$7S9B zXOo~CCv;EbF>)zBn#!WLM^$*)Au*S_%AM*08Smf)CO z%&a+2hmf~#(Jz7>>gg{xuyUnT)TAkUsluV|YnSN)!GAZP?fUz(^nV>T`cIFYZgFc|t`w4+63=O~-IeEOtryfD*^T5rHm#WTf(X=ZcCE^&Xm28Pi7<;h-g zbhHM=*vvCfwBbiQ(fDQFXOApX?B{}8eA0;mKPJY2wwDUY_+$`+sx#?WkCSA_pe5iO z^dT&q6cHH)nvO|d~`#bM?a&2S2Bq#QL_J8>R8Df#+m38AoQ+=f|<)Y@sq?eLO zY@YL>?f!=(`GN{X~&+;FZ-f9kaNCoS$3PpbO%`{03Y6?o`Cc54t;}ByRXWGQIQdK z2Jv{#fbB7-yHwkO(JYlxAM*z9I6ud`IzE(1Gp$=eNAFZ|<_S4EeBn-KNqb^FK}4@1++9ix=i3DyR*c zDZRLGPAvT)8@dnAgKYB#;8Vcycz(SL$%7cUD!Dr8?nXu3YZ^9=r169BAVFBq>Ox2V z1IQCAH~UBOtq&9``h;s=>Z#HT4k~r6_5qGh8;&FnWaS~F5b6x=c^<}%?J#kt4p-?B zpC?7nJpruDi3cSHm1!Wk7%YqIlbcG4WQ6WB5?yVk4R)KB7zU&3^l=iwv0-v>KQ=0d9- zy8^{ncOM$rp&pe9KkAde0oi`cGleB*P=LRQJ#7ea1u@`yXoz{8rrt$xuUt!+gPxxL zKv2Sa-Gg38waXp5XIy^8Zqse1+Tsc!tXgAC+p3*nY#K62N}CGP$hNG(yQOeijnaK{ z-V|k%%*y>0DFFmL^UC&t2Ls*JWFMh>C8Pq9m5a&;Qt}={%2!riVC(Czj}cAI+nSV~ zvsd5Og0x}MD3&q{_g zO$-7H-_DXDQ<%XNFlj>^qYlRDpIga2LsfmTJvyN|BiK%YBjn>wvd9kXu|sq0dCoqB zVIRWn$_KI5MbkEpI@;lUtu;+8!;VXM!%!7<=db&&Gp<>xvcxRP=$_E*Acg;LvV){= z#bf#sjFmQ`?uhcEjmOQ@HH>%JbpU(}%;gB=TD1V9M37+B7*K7{EAJBcP1??L=8*@m zMa3`_?@BtsS-qjBFGc6Q+viz{ZH6XrwWYBP8=5_fvl&T-PFes;Ujr(rgUFZF|2Jn_ zrg7~uQ6BXqet@fd#`#a0Qqc)BXkbe3*E^q2hv(2DS;zVF0J1C9N-|MW0uMP+dR8LK|s}1=5dca#|9QCy~UMSt}K1^fTv$Pj1Y;5i0=wO8T&Gy=n z){>Un`pCwn)WT~c@r||POfv}Za&IYwEZ5CUZT)Q5zcj3W4(2oH@Ga0>+i7U~cxOF! zTHYu??g`TYYUkmtZ5k*658)AUae}2zk*lh!xcE)#>QUC2mIU0?{3(l4&LdJL zqj7(}XTGr*DmQl^cyX!LO^;E$(E{ZyRrO-`rxljb=Dk|2XFgB{5T*D)nKFbUYGhlW zlQkeBibUGPSL@0JR5N2B zVc}2KwGvVKy5iHXNT>AlUTu-n(l zGftQ82TD%&@8(`0l937F z)7?iU-sgV|ZC@m*;i(@*!G*WWGj-YV!(E+|In!{lgq$4Mb}zT-R_4s?g39cKC|A0Q zFFelC#`<4VCQDiReItGvHCCcMIQ!g>R%rjd{}1H(%)Wu)YC+%?qZarzoT$< zieyypL8qd^ZYk-CfOz8ghKZ)J*81(r)>v|;*OEm^fk;H3t>b!pUM5Ia3vI#@$PDr%PqiB zVq01q2R|%yOt7oRcz7Wcck{1^i|%CpbJy_S)j{~@&hvlj^-n+o#}>fTowx^b_#zkMP(Fbz1JROx7Qx#Rmi4)7J?fhlQ zCCmA!vqx(;{mF56ZP6f1znr+%7o?C^P?Ehpt>yd0r>Xcm91PLa2GSv}@k@N0i{TD% z+B`8w9E2k%@}B&F?HAsaPqnUT+h0*6rUhvERwtVKD0ljKPj%UO*?TNntP_AEm?%S0 zCWgOX3#fY&D${|3F|F@$O_}S9_+8VXwIWR()(*9&mJ|@7pKsEl? z?+(BDFh{<)Hraa?y-uEtsGlER>MKS2$D6J>klyhQY1a0txvrJYtquP!ppUO3v<*&? z7MvIgtkZCE3azdayrh#+w`-zvX$7q;=_Hm2ZWVD};D~0ezNhdg1 z=JhR%wqA&VCC|*)Z6Js9uZ>t*qSYrm&o?3VHZ*T@>KH`(`B=sZz6UtPM-vVX&f9MhN4T@CwE%YWOwM%G!bbwf7B@IA0wmEmXp6xMtce6vne(}~CP{N0 zJ3B4aHHs3y9)b#-Z`%7^r4$RkKXwlD3Q0)J6u}tqWx=VnNh-1YLto{F;NpP>zZ^DT zm_!J$>O*IXwQWvn3^zY&h_6OJ(Us$@$M)6M=q*LmrjCRcBd*t-tR*xITbr$e3~hr2 zR+HE7I&DE7;`iW;Jn(IyBx-%mPe!^}DZpa^#4{QKup10I;UH=o8+`l5nUjzTnMiZR zC)`D)b5Nt{{A*W=V?oo>f^lVp+DO$z#s;1#(M_)Fv{GUF0(S~~ed#Nh9TzaiDi#t< z<|>q%nn&A{$Vx8@=5IdhXI%9@@ww%(ua7yV?49YCzNRz@(&ksgxS)VJgaI<739?w}t8uJMDx`Bz zia(Kk6j_}lh?9+ks=!f{oy#4v;(1Tr{Cx10-&8kok(LO5ZJ}B!<PEbwRCR|?|F#`eTHy%XbsY#HkZ#k@$%dD73 zI(}$|p;~}w^sCy|jE^i@_NR;85s&P9#7(ZwmV_C%GnTehBv*p2RcZylzaJe=jURjJ zWOB5w?#>Iont9Xrs@k;mkPwnvU{iaPl*tRV3w~XiA;Hr;$|BAPOz2;e)jxoV*y1bNS*xOKB^K^D}y12J* z9_4nH=<^+}1*c9Rra=XPckt<4dU|{_nr2Cg3CDC%4w}b`VvQZ-u!dAh#y_Q3ncvm+dt}cUP@(bWo*2Y$I+*bEgs2D#|wnyYroAr z%_+%D+45NW@lRJDhW^&B``hON-fwVAmvk6E)$|s>q@5bW zQN;I(4dYiK1^A`fkvjNaetqw(eyr-h(B=G(II;hezk_}ufu~=t6og9TN+`aY2%qdC zN}J|c75mG1CLu*UmNN?7{nvlH99;J6Nj>MWCn7)pdP+Shw)wfu!#sw>R}1LIbvEcU z4@%%Z6mkbWi|}C5mPPECvvX{;)YM1FAWyitdVct%u9`g`HgdL;DjV-@=;PzGbQ)zU ztXim(d&(}(9~ubioSC09mfEoH!T{>{4$1@Y++#B+fcv1IMp#he-et*KpuMd~HPyA~ z!@C{)pOuVgubgbvRHAu#ZKxQ&5W8%9#jT}zHItj-UG@3twz0<+G=Hla)MCR9G70=W z#mvnGI4Ji)msxGe|2luFj`h1hhldhMKl@b>@@AtUGqnm`{=RPCDfsqHcWqT8r!V)L z8UbZa5cfDQw-pZRhM}kg@e6dA1QyCM#HmOpRk7wU&lWA`*6-81yF@>rDVXgnky0E0(g5b zBtW|5N+{AgEZW?Wua0S>r7dlKlY#s|mK5P6QS}fL=lOiw;;B#Gi?rSuP@m@Rz+IXq z1Uf&tb$Xotolkuo%c9H_uvh+Q5(=*HvT6vAbHr;*D~7)33-8M>H;4T|J=oMNy&8N@ zX<$m)K|uPNgKe9A;X%`k%kSTww@cS>EU2*YL~>yK@oZUMG2S<44;L}4I2MQz2I|Z_ z{AW>6sg|z%2Emjw=7)9EB~xO46AA}Tfz`JM-~^KQ9Ap6nm~yOpHeKCAAlETcGXU1; z(Qb5p&zkY*k(CDYd&Q(|^-meatB|f4Cii{((?X6P_w3;4G8EpPtv-qkqTK~gVZ_oP zD@Es;M0WQ&`J9sO6|+|hNe6HB^_>$8+SP2$-y;u(c})O}W`b>i9%jKhmOL^Q2Wf;Ow{n%UQe_l1gax`>)bX98ZYT;WoMI_u9$^`A7E_j0N6N1u zc~ex0Pw>=dptZR}?!%dmB3TG40R0w4M#O5L**Qmv!J7J{g+HmCl^8sCD7j0?>yc1@ zQmnK`TZmRD=r;uJAtdJv7)y0IKDf6?JVQbPo<*MmO`|r8})DwgDW2t#IDT#8*yV@yg#vKf~5mQ#tNjIIo^B z_!R^>8_5EZ5V24@*S!k$7ya_0FBVWsAE|^>0z|Z=e6KqajI@yMty0V-J8f-NsjP=9-n)v35OY#;)6F6Kn{kV1D*n};d zeE#6#={|AERAqZYKMBy=!F~u#GrjqHe&QSfpj3P(;s6%j%xdY})^-dIkDu5++qvN} zO@6oO__keb1ZJS%<0udi@8dY}oSFkbRT$$ek@i|6{YC)8Q4h5~H#V{X@@zwc_RX>L z4+efWl-3w01N%~OB4UEIVa-ADrc#{>ujt95m4Ig}Wiy6w(8n7T8!o!SW_s}Zm zbi0b02uY4Z@m9j#WRvwY=eb9brm{7fWC>S~ z1*NeYWFBKrgoLi9Rep@^8+yN7Vs}d+wf%)5GAYswEU`_a@zf$X#K<5NW(_o`bco)^ z@5ibHCx^z^4WX;&?CebuMyo*!_br03Q={{lubI}BNreGgn}B)-i@1MiK9 zgvjW?@3;QKBu0;R8mY4mCo2)(d9UaUWsosgs9om&L-Zkd|p(van_8Kn} zPW?JKo!$SGy1EG(9)WemA@Ha)LrA7CGN(ENAWe@0xJ*W^dx2~e@!q3Iu(#&iY{5rkT2NT9$ zCOm!dq}7}0^had|&HclN$XsFGo7S^mjrM^uj-y1)noLj$Lwb0LFI*>`p5#W}{kb0b zB_!?k>TuXQS^UI-u2#!HAY#ZHu8l$IQ0C%)5j{n;@m zks-+`Rg}3K?3-Un*NO3PNh581TOUY;(#8e~7v|vYC$M@MXGJdSkI#}Z(ceDT4%=Wf z(T3xRdNu_~9i|nPYa2gzPWI(6{d-oSEb$foo(jknAjOFQeZdp%J7CE!VXiT}=-AHsGw%25Y0;_I=GOWeAjZ&Ej1mK-heXZTy>@Ty7Ivd!H&^75i{op7 zHB%gKb`gnJtc?Ja2BWDgp)NusL=bmErmmXRL(uW?BO}9u(!RJHs}8O`5jSmr@ia}$ z<SGu;_u!9%dDgDKP33>HSRB5*r&MA(?xjLdgSm?*6H-( z*&Z)%I+e2iHMz1g@hD6G$OdJJyyke4{=nRH!4UjOL6I?yOno4-U zSEzLZXSfkvjlNxM0*d|2r=cb7*V>81{40XdvrPom2U+hXuN}7J7+VB?W)~Wu`{*g* zOTEF98o?nc!G_%P>0^h~D4El(ZfhShD@Q$1N?Un99AlkMf+wmxuwOM3Q{hrie6B4_q=dg--0&G@LGZ__w*2}18aTvs^IA1;amTGV%-H}}2-6b+ zDA#qa&B(g|maKHDR%rpq1t4#`m}FMZZe1*xmlOw{Z!w8g+zVMgCJ6SmKk zW(^L&0cgRh6Xyc16EA`H$=T1f2Y7}2p;qBWAP#MmUbNzhnptiJ1FFeByqhZr! z&BgUsj=fhRY$km;af_mLQht4s-OK~eOVm6F(-wXRE6n=R4co!hAMpb2ELf`bJitPW zT;ENco)5e|cO(6zRfNXv;|IFq4xKWay4J1&juzUI(C}DDjZowtz8~3$X%mex+RGwz zSlw}4$0^?+w|ofj3=QvLNcS(2i#=!3@Cs#_B9h#063oDDsJ*aj)T#`RI+mU06tCx= z(}C6udGpwE{!(`V^yv$`&+Gu}y9n(Wo0YqEm9>mgIiqL9_e9`K3SZcOikIU4#Ct_T z5@b+(4HhQ0nzGOB0!>qz&FfB}GD*IXE}Aceo-3(;GgmmJW*{Q)V|xX065r;FzfL@e z8z(U@;o~Tx*d4jQ3t&P!y5#i9OBs0b%Now5NV*Di@zRnUx2Q+sU4W;judJc=XRC5E6sGF8V0RiV7zA zHxT>tnAv3&)*!sVNxXBZUR!Ipx4is}lfu33FycVJD4;^*N>bk8D;(BVJ>G;`Qs2B{ z2CvIj*RW_~3+AsYGd_J}ZRmfHOuLzKbwr?Zm(tG$tX8(cfrT|S*WM*rvcGFDJece{ z(U=kvY_`z%!!z$dR?VrH11@Fxv@G3A zIqtFKfY!Nh&HcSUshS8oRn(~v&yAAC4j%_JIVSkF6C`RXd=E~J-)|(v%;~m%G%tKQ z!{im@(I-m-J;tRF@i~tp5&c&R7`u+g`d$^|ul!a{2Uk~xU|NaB=hVo=@ptiuAUn#M z&lYgQ0RKvv#2tvVHAHS)_F9$dWCf>{fu-a*Xq(YKmQ!@I;rtYBCaE+^4O=(RW@O!$JS<9I<4W|fM?s%O;pRzTo`&nu7wyP- zsFFMe2A~zMf8jmE2$Txz4=>K`no7LH%2SkpH{E8W1w_ zFZiARhE2&Gfq%aS>wf~M=HI!-KjFguL7L{}o__>|{ZAM%$nVqt1>4HG A$N&HU literal 0 HcmV?d00001 diff --git a/htdocs/takepos/img/marketplace/takeposmobile.jpg b/htdocs/takepos/img/marketplace/takeposmobile.jpg new file mode 100644 index 0000000000000000000000000000000000000000..918f7c49d5e265b53ae235be41d784b35a889d82 GIT binary patch literal 57525 zcmeFZ2Ut_xmNy={G!c+qq7*>^u~4K&MMXqJYzPPuQHltNfV7YZNEad^BBDeE0i{Hw z*GLzTA}DAmA@oi{34yf#=6z@G_}=@UnfuK%&)1$Wa6%4epS{;wd$0D}>xA`_H3Hdj z=9Jkf2pbz4Bmn$CSVYLFlL2nd5Qv2ZWFG_q*#_Zc6M=AmPi)`^Vzp!I9kd5;R>Ba@ zKmNb)e7gHs4=0Ad1RXJgy?{g)R97su9%o0F4+i-((sXY1I;%g?)Q8{ak_9zH=n zK7Il4;^EycBq*?b>+@D8TeolB1%3s#@od{_@jv!reTE2cW6NVN=U`KSunV(s2(z&o zAyB{r7vOq}@qc--v2$>8aRZY0_(6k`9e{ie4t78+7bjqoEd*SLa0+vY>^^vmThz*t zN5OmNq0q!P+Z2x%)`?yCMp8O_<6amqpSXmil(h0571h1_w6t|}kLc-}oH%*P^t9QT zivZ#$vx}?SZ69C1`~CreLE#T0BBP>XVxJ^EO@5a0JoUxfjLdgg**Wh& zd@3p~DJ?6nsH|^jY-(=#(%RP3`~62>|Ic4|;^^4;#N^cU%q)3%Wp$0RPTknt;)@N! z@h4k<j+2V_h-5(qr!kk>Y4|0nfv*K~|7F9SDx^3t2#5aX?yo!e} zki>4>`^G1(q(xLFZ?X0VXa5{yVgDu0{>Iq9@r8#7aIk^N;}C|xAdG!1NLVeZ&J^Ls zf^afekceOwWLsnkF~poHvb3OC!h+lxu+&YVczwFFOn;xzj9BmVdAa{!CsKn2iH>I; zW)Bs&xf()twDXbP8xOB554TQK|QOzBF51!S>(R1w-~ zwc#HdLdnAY&FD=rrZ@{SQp$p`AW3Q~Fs6tX1!qgE8iCP;rry<;AEvibl+a+)OlXgD<|T!w2>~nB6Ej5y!nOvdl$LJ zD_&TtZGg6gv5iu^y|kXn3p`ZKC(}c*Ef#ZFH}%e=@2~i_@V4@Y)|H}Ozh~byh%a+qsXT2`Iv zO$fIR*aV^IA{ounOVQ(>zA^V8B>FY(IEz>2Gte=&p2+bL7srYsWy)*2DA8a0w>!l= zJX_%8+*ZK5HIKnl^b>yM3}yr>0!P)ru^{7Zuu(;9Jako!4wSpjV{19@vHpT87Mi~} z3jc*ZP8Mv5GrUE@3)(dVmG^ie^t=jEwOa;1kcZykQabXY+uC5YR%|h4Z;6( zU4{|&upsVhZ|9A`GRyk^(Rx*&QwgC>C7Zyw05;(H5{~m@ zKN*i04^bm!@SU*RP&}^QfwSLN2x2p%znY?E*e9;*J*bl6uGLfUq>Q`XI9l*3vm?8^?fkVF#bhYS+qyB71v!L?#4VM+ z1AN38D*~&YOT^I@a#w_yB3GDX@b8DIxSESTmN$^EpwuI|qX$`#RO<%R`hXRfOEJVL zU=98_wVu?ZD|IlIdeBs}G#cTZgb=s`)p!yvT*!hbU?W+OrP9}6bv2=c(e$=j;3I1B zxPvI-9j}%v7-LH~z57>i*@G8u0G_vSOUmQ_N%jlvd`Tm<+x1eY5vFwgL#RS17 zC#Ah=t-;<0Vlp)LchBD-+7$LXeK&e31dL*IEK*TuBN?H~f`pWSC1ctM-xT}v41tBx zMXD>CLpyU!Z#As$Gr$0_>5X`cPou$vN18uZrB<&ItzUCC9~O*zHmKi9!Xme_Y7faeFcl>XJay( zzdZ5ccUE2*a1z+}nE!|XImg9;Mxim{^HDbf5qzacL(84I@$-AWzb&c$HgNKLp2GGp zMQ;}+w7UDA$)BA&5_dlM@TnWn(TCZh!|Pvp2a@>h?5=G;T{yiS7V8feTE)esl%*TM zIe_!^adh(`LKW&ae^wU;3f?XAyx^#i<5UDWvfGXmD%l4cNrg%pvb_m-0vDs+-)y<^ zZ8h4@-CptRcdd|fn-hDIzQklkXg1Esm_5$lDJq_512NiJCFF8;Gli+3PK^i7{?C;N ze81Xnr`Y5*FRHTTg50~=%8*p5zjk9~1i5#I4LJK2Ha0)$QMSk6nH}Pk?&8z8@~Q2o zu<>I!s)|bsEV7orui7jxKwnY|CUn*0!?69yyqVtS(xMdM)A@4kyvLR?&&%#*ADKBC zd<1%3XiI?({H{Pd>AxwEDp~Jt-X}Fh)qU1)STbr!T{gq_E!M@)) z_zM41@1Ue4-F4iV{ql_r{XeH3^`}a|M~y1rq6w?}s9sFkZF=LMn!O3s_+JOH?8Q-| zi$--Be1B7=-_CFcfie6|S<8b(w`kf&O$1WS-m)QokhFF7heg4DwWONa(VBrh0Pk^8 zg|Ixi?K4Zoc6yn5Ph5q6hJH`x{P7`!h}sbMUD{j&%6(KUsQ5^ItmDpew<$DfUQ1RQ)Mb4ZM&*@++%Hi6g9FY^D)(*a!CxC&0H5{^V0*$0&b_ z!_aUl{^zDN9R>Y_ZbG11VPq@l+6ZCnYP(Nm99p5mlqqtUF$*Iq!iIB!ac_eGYdnpi zg3k~cI`B@BR#Yqta)JeEf>R-cv5P+DpWlE1q?l_^QX*#QG6-mIL1S5vRZBYf{6LVY zg=$cxTeBcG9_oy4awFGb8yZ8Z@=ia&AUE|#)&~uH zbYB{ldc>N@e6y#$Yx{6PidZdLiM?lY&a&Js&r{l?XV8>qNn`MN-NUz`rPrQ`>`3>f zSpb{w#1v=t8H-hZquUc{xitI34oQs;^3nG813GD1&n`4bU)xa7TTFKGe}zcZxHccJ zE0>R3@kIhDH;6-p=oh5Y0u}0tsvzQX>(LzPS)sIjh^xG1TOKi1Cov3G)G1_%aQpcvLM z&LZq`*ui_DZ(Wk#xrTc`yR0~=Obw^$;uelFRg+HDrV;a!4#FW#{s`$El;&M;>3ZcG zo(FZ#I8rtO8mznGw}`pR5x~)OM*_legP+CJ+qMZl37o_kvLM7{q`DLH1XL{H-oYCUUcKosA(SnYa*0~F>-sQ+ zY^V0*w2nq-f3~6Df@z;3y^xj(z09QJmM^a660PatOLZ&=4??GV#(N{BgDk>=w44fl zn%vzIsLu3waGAqr+mx?O_z3iQ78{S^XAJ2QIuyl=FdJ&r{|$zO6;GAp2;Txi<&vs^;`ip1#ja_&|1zZmDU^9Z>OGp`46} zs!gAkEYo8q%r=6!{VyDmjeMajHTfU2YA5SS zs(;v1kR1cUP=9ATI4D-skEqE%t)d;>wcLTH7ud=Zg6<1j%OS#hYRLjbBQu}o`v-tM zo_xmuVLqSeOAsu^Mkojb>dqUB%~no5G(7gs?aIn+V~-y{-X|yx zW!ZlipQ<{9elNC0pv!&ZnkSIDa84za6)kk7VEXg3X{d3rM`PKjwqn|z{lh=5(w~CP zlX2CmfBsQJ)5J@Fqp7*bg0RV>3*F(X{6AnM;km=F=V3%;uO+@e-^Z9u`KWHqOF&en z8S}RN4E8lkI%g2%zpasb$mND-bHPv)Vh^K2+cFaK30^O!N$h%54JE>41NN*pN(3b{ zi{AYjvUHc5PgFnNEqUgCMU$lYKv|j^?WtgDPAdFt|;WgabltIjT4aEqWLdm7=33yaj}AS zXgcUz=oqh|=-3iJRUF0jYvAX=v^B-rN?5u+MWX1J)HBhY2dh6G6RTY8veb}8>d9!h zf*eJp=Hi4TbQ=A+6NS<0``Gu2{gvjWec8KYOh0P{2U*U;YGRM*54pqWTu_HW`d%v3 zopx>k-6F9}m$G@G5p}sNs&S6v1n;g5n6rz>W5h@92~O?{CPH?MYNS5Gh}uLtOw_E$ zMAj7%fhEXeh~(lMImrRIa^ zPexG3zF0A4`wyM;Z8XIZGI|_B-%Gm<|H52no(#ECMrWd^e6TApPaJh`AC~OWQtA)m zLMl_?bwT?xMsnc-w|n6>Hd%$i3e{Z-O#zS1?tc8xDzh)9-@T}`vHid*Hkv@X+!fJ} zDfYyTEp2xf7d7!7S&%U8&0E4cKHwkHz2Z)>`DJVIxYF@NY(ZVo@(3F|ZnVpGyB#2K z@SGV_AG+udA|hrHSNdxb4Lw)+>~F~>t} z#?bie5wGZCoU};>vlEbwCd~D9x4an?f)X5{0%s*|qDxXF&MoS4Js!CZ5jwJL83z+Z zz{cRwo29u#m>@PBVGw-aNy`c8raty@825W~8v5k@E24W#DbOn7FgWb1_&TUD`U<%7YnW6eF zOb!*Qb$Ea%DQw65;wxIj4bg$-Os-VYL(I$)?!_=oOPhX-|Logd0BwS(Q%2Y zm{(SvgZlzseJ7NlLOtjqDv?=ajd!(gWNIn`6?{LsM|W43wjz#}1wVWwCC{e$GUr_z zSL@EVF_dQpATU4Si`wLz!B7P-U`l@@32R7_SkNP4V;toAv^|vR7rnEmuQbovWe`Iy zs0CB+UNw68#O`(V1@6oF)kAHw$CRIbhXds74lD{*OlXL|*px0v_9)1H9S}5YXK`lH zb)ryQ#3VA=#q68Bp{BvBOJa8@9Twqud5|$}OF#p!^y)D1N=fuBUu9|vrtTcTksh=% z#ipcD3r-`nF0NVRo+mWB9t7-Ns{p@W?zDd7%d+J&-hB8#lA42*`MzDHqP#X4+sw<(0>%gN412%SZW;RO?K?}9q8D%a;~b-pj4pgUSgqu zPvrU83j3d!4DrbQ+-db2GpqUi~ zP03-`{C6pRkNn2`0d-|TZa?_nw?705c+z_yjE^5iHb4cdVOdm!Tilpew1ijojOeUx zqMhx`2n6e=*mlBE?3KhJv3Q&CA`k8d##R5Bi0E&6VI%KR(l|$<0hM~xcBDQvsXkq& zhi>QL60jb0OtLU?+4^*<@-JzfzT=kLbyyI2wY5mWV=fUk#H-dMig31hxafXD0O970N%; zZ~8z<9Uy(0HYX97`~dQF#zf&(m8l?<<(jdF(UrxaD`X+YDh%Z9XVhU+qfpv3Dqi-< zyzIBd|LM2p=_P(eHE7X|0932lfTC)i`8#HT7kzpa)zt`F?*@4RjHn7c5+)k8^oFT* z@8hKDL4ZZ{lGd3IaR5LZsR8CG5{M7LJaCX(lN^$J0c`i1fPmILeA~c8?gj{N6!lwM z%YuZ@^S`_2>0jxY0m>#dV7bflYeHWi z!=&|;f9fTgk2)l~=W8~k1%KIH9%h~?@MOOaEzy1lRT*@=DN#(QQxk15m4FMP<|bgP zrwj1rkLnaX>yFwjPQC7$>6e-s&diWt?o0^>FdQ5#z@;H5DYF`6M8}yJfUL|-p<)ST z{jp3rcer>#eyzM~P+2%qaIj7shh**zwm;+UUluuObG<}|d++^|Y6nlfGW&Uy_PPHu z5j8N@P_~Idd#riDE)<5>4et(bDCKU((`<2lczgX}n(zJleM`nx&evySX(FP#uV>z< zc{!YeapTG`3jPlW>Rdw&_s3hw5IhY1O?4Pr_%7W0=?b7`>I^@9t0k*XM2?@pE-$XHJ8Gj+zGmtQ)wRNyX z0Z(sU2LMw|U>w#L(bNkLLco5Zz*5KgRZO8?egjAM|D{x26I$@5T{uS5rC#VfeP`^u zU%WluK+Q(xri!b))0Ys4LUmjtyp+(0dBBAA&etlq>I-Zdty+C8lfLS=;&g}IDG}q& zrSka5YoUxaLO4>aWY{8cj=Xx`zMa$(Qb;n9_M&+w^`C4t|=_YPUjz*C20c$KCt^bE3f*AMEdl| zf;&6MrY65V?G^Qjs6ekU-)rNW3C*VPr@;W>yMkKT0Nxh`R^7wcE+$F?*aU`c;{KQN zc^mx~7~zIyqqtwCE5w8{@^KB5`umla3zA>|Qi*tb^^JMp1=klW$k+0ug>h2>??dmy zB+z<~iX!FUb?~2*xjLjQH9tF`sx^jFc$N@m}>?#Zmc{m#lePK%$u;kwRT5J;OLGaIZO6#KLVothjD+nYB@ zPv+s%v8b#Wp{xNj=^5*wn^!1(lWvBX{Ra6H9D@bP zc#iCpvlL(?!EPAYQM{<3Uiknk{YF2w9Yf@|^-WrM0E z7Nh`E2RGTkooWB~I?ij?HYB{0_v-ls+_^##h#}fhG!_J;$$y(1j*A_eR+9`hO{Rz% zY=d3~lzA2Po5UXc@6rPT7%46=n_)MHP<5waE@=iR!Py-%NJEnEvV&{${ad9q1bJ!v z@z@FR<2x2x1S+rv|31^?G78w258I3E#T5511drgNaU~Kl2$*=>$Pth0VS=zPH0L*h zPtz9i@0;+QieapyhVN{^X5J!uTVN^D3XCsvYX6?Rj8Boh>MZ;zzKnNkn$ot^!{^DJ zDFOY`2}u+&7yXd$QD3=T-)xj-6z#WkvX_`oCc>>eRJBvPnx{k=y$7WDku3r-Nsf z4;&;#O+GRe72BwstOfe_Z#twHknnXc3v#xM?($l|GNxydZ2b^5zYBP2$@^MFGn$z<^DsF-_nGjB?=s`nYM*^Q?fkw|$3*;q2I1`}u~8#J z4?PM}EX#kC*xQcS%#;=ir0&^uJ$+p0WUC&QlhnUJBq2Y?cb&6r9%tmgmSmmDY`gwFy71hL3|A5ldCQf*z}CZ}$?U!kS-v54ss373y+D9TZcUU&+-_h53;}J;QyH-pVsPugw=t7(eF8nvk!cGoCw^7gvAJ9|;aQ&g<{-gg?zaW>i@xQR&W{ zx~cq)-Mg$7_OWMMyxPG?_wAFCSO?Z~8BKMG*JYwgglHS~l|$o*Up(b{V=M1y_L}bJ zu}&NyK!^xdPM~_ zeb-&@(bDPseE9BIcYj_;K?O9S{{&sBA2#=6`tnps!_PWT7y7YLugIyMKSJ*cPfEf4 z#c=`uU5{b=qp*@)PS?B|XL|6ksC%c|W!?3ke7(!FXd3k0Qqrv)NO8O8JT9YIdMm-1vb- zpIw`9rl_DUGfW(|&e(zj&T0`hw_OD>G>D3&3y`Cf5VR5FjWOpOOq{8O5GU`!_+>S? zk(L_Er28_fvh(C=5L%Ke*!g0MYuZM~$v`v)Pv}#e@tcm(Ziq>CVB-T;|TeY6fv;J%z3| z%7TPrNLFxB0+oN%@{yt2NX?l6z!CZKWN5an%`r#8rs^v_r;x)ct5 z&4s2VTMe57=K>|&AqXN2#?<75nr%}e4Np2czPCVmc-;9mP3iady7R4{m zMa-LfUSp4Te2=~F(&Ig-{@TOOW9UGe51|+Tv^BJ!u%t<~?l6`DyQyZiyXlU-SYtVA z8qI)si%}Ah*H>iob@Tl*<-}KU=iUynw#haY`#nLWEXYbSNKXyBP(M)h@3otS zhKH8s%qX$k4l4j-yZpCHIgGdH;`3ZfhY4$NQpVSHhBbX38m~$_3HhJf@U_`94#Toz z6@d&eycz&lsQaxK*7BHN-~x0NA_#1C@Y@T?dzQ`3{3^b+&0NW`a!%n(m`Le(G_kY% z=m6UtJ_wC^PDb+9_z0rCwb{G37xPZ_-Vh8VO%X_yIZUZbV;5DqY=Jle2WCu68y06Q zL5_TteOniYztY7kzW(HkOsloOuWNm70bJy!+Ai#`pV~sklH>5?o3pAMCtbD=Tz*<6 z%k40xSeC7obw{WB*bQB-!3x+rgy|Rz?V!NOfVmFYecrT;S0Wk3KT6Tj_ex3Dj~~^M z@Qqthc|JStF@7C#=x9M2#gy>|;r)j0UQKl&^O-GTf7mQ!S6uJSjD6R6&0E3HX`iLh zG{>;tSuY7Xs><0&Zf8yjr?qbN57zF6~s8mvh@OmWI`xyy_F7K)BqYv?#jUGZLNlQ)d$3kxO!1;_O-?>SCO6a^? zQl%Rw>)E>F`jUr2?t!nK5<;_4qk?4EGFK(t-iN*g-h={-_oy9~Hjj$G(9l&Ol5eqg zWQhmaT>a>Ilo7hmFD zRZ707=76w>8#O>RzBlJSoe?)*vBGV~%dCQoFxpnVs8=O$t6Y@;E^gU+9D|>Io%x^) zzWx*VM`ZKcpJ=z!WK0;0WRVMffDz6lyF^vnFw(H@5|!h%yDCe*ISJ+s%u3v|w|gUE zfWI6!A8^XyhBMJHBr<2egIoVliz&HS(m-tYbV$8irK%C0XCp- zm!tjz2GF_fxf)kO2LlNUR#T{wYcRSxKVg%72t{z(DjWREI9Ed2DBldw28<7eOO#v? z-~Q$5?^I;Wc9jRaz5+D-koTuuZUCsm=Nb?OX!J8ETQSD(0$p<%G%7wfwngby*F=z} zUUvXEp7Deq=l*g-h13Cem_v0=A_kZI&gDK9n#9;HpEfq4gLTuKBJVeV^ zaQOdR1jc!^sM45!QUVPFCl&$sIiTkP=hvDZ_rrUEf$31nt#H8M}Gr+bHkD$qE@!@D=`(h93G}mG4xwq zH5~CT@VTKyDu~k@>RByaYN~{KEz-aqis-ji7Uc1j)P5*=9z(Z4G?6b-=wz3M4)|!( z0v62J_Ssrts!Heh?@tDBdb7VD8DJorJo+-Ue2^ zD6lQlVt?#llC}PxnA?`cR+L!C|Lf{sWmVTgxssX=oA_n0%9Iw0(7GjXF6G^W8p~h3 zX!`x?T*@cLdqu`ex`qqI{p5GQ1!wDUi?T$DN%AH2W!?45ukIOma+G70e&9R+*u`Op z%Ce;&B`t>Q#N~WAouY5sTHN?qpnl@lRe|`=LZ8p`d{5s^N=V)wkt5dQTjCe`3k(xp z#K7+@+x$^mIMV7lKVi18Kkw{EGwB5z;kR6;@1_@r4pYx54eXg^ZB70{_}g|N0VX8b2&^MEORH@ zSPG70Y02B_?%an|B73I2cS~3OUTt>^CH1i~*gSU>F>$rP<5oD^UE#0D8?pAs)4;#g?3kGW7AZ7&-lf40CJ@rdI1FTZ%|YH z0I2v3uwhVQs0!a$`wk;X0lS_1{90j%5S01~JcUUoVH+92P1Z@&xTY7r@@n6G7d%Hh zdujRrjHT_2-<5u3QA2q<@kYF1MO6mRA!DGv*fN;3vDvb10lfF3% zr3wH|GyQ#-^W5tLC{WvhTeu?h`~Uxbc(xh}fs*r|4h!)LDPw#v9$@~s4y5-RJ<#7N zI4bkMj<$^{CZ9H#&1sSfeP_xDkwl0S9DbGS7G_qg;oNC5<)$krWl!VfRVcmtrM;CS z{jdWtOn;e)zsMPa&;Z3z+itv=S`Z@=VhB*{hUY;pi?%lb)lG1^Du?c9M){aKJKOM8|0 z2Qcw!Ma%{T*TOtnpxLbdcGf|YRI6Bd%KjLx@5Fi32b7h43fj)43C>%#?%~zd&or9J zmo)O%jWv?%-4tYJtmy29HSiB&`++zg!Y&ey(uypRKqIdbxGgDF=Fa~O6 zt_fj2ipFDG?qiAtDQQBn&Xzlmjm3GecM+59@XyzvLSMdR%wiQ!^qY(a?&l=8X*>vT zb6ti_Z>rntYHfhbHa!;8((8DVAQJ;zg9tAPCP!FcSZY-2=_Ll?T48`7tQTr@UZ={uD_M|ivPg1Pm8kch3oDzzVWFU{E-~cK(y26*3M&+vSj?j0|()Q3qz|%Ha-U3 zL_(5Qv0Yt~^qYN1l>mQ>2tykmvP@l&5U67mXd+@IjcPv0xosExYOb8;Jus+IJ&@EH zD#q*lXrg<{oD#sOpj&~$BxWyNO(;&OmQ-4;J*}x_bVg>Im#;hkasa>k$S zF4uO$YBsGXq2Srbg#Ysz{Ery74azR{&0^3s1apRvV0 z_7QC4wQWI34zt%`Td#P%oVCUB>nFXI71y7Y^$Xr@t83p;F{*74jo%(PV`{J{TR0!$ zK4KX=EJnq+YYjtx6ff8s+~-v-dwjUD<+V3D#VBTE^9L&a+bJBM_QHpq+Spxu)Hzcc z>;VAUUT9!LooJ%7qQ_qhCp!=17caMEE$?VgPChTXfAoMUaO4hb1XP?ssKgv2`y3k#*(fNie5U-*vNU|0CPcxc~16iz=ujx5UR8eupcC7UK(gqM@D-sKKoox%TzqG;5_9t(0T z3u#u1LmfE!g>*WTdtV?t&$yc~ZbbogRSMYW>E@V2bS1_!iBL63GMplr-^;V_BNBfl3&CDl(M(W@rdwU}?q|HKnWmWs|IjSf-PjrO2KObe zgCFPS6=d8qyk@>2$OI9)*Rm@665ehYU0hak;cvG>swmIaGZr+KF4g``P7nUEyVw7{ zy$OMe|B*~Mmo_@4R;s(CM!qNHysL(~f8XO>foDY?Lf)ol9@6pdK4O&Hg4|85vSPf` zFw`J*flNC}`x1#6>l9z$C)tHJT-4Rd?@_W!&lDiT{o~N;o-z%-8>f6Q=Yx6}8SY}| za}y4I(4#c->|{&Ha7B?K5$Yx1`c9?#=4+_;ouc(@8@bfFexyUp3103sZ;nlYR(L-+ zLVLxvlg+(Z#j9y)8)nlFCkdl0*(=^=*U|tkw>n_DrmGvQY0+!Agfy2X6mQwB5*)~p zl;>`qJM-ZIVXvebWBvipSo)Y8O#nQif5GN)(P7iF$U)p z)Y0akd*}3hR^_X$Tj8I|9)i8`+i=n>%t`H|?n0UOR8sZZ8hwOrqT|sN&yK z9bA@jzmBthuaofnAnZQ#X4vuA`PQi-<0jp@BZEVC4;{ob(tK8@vbEl>@1lRz``k9B zLXV|-wo@qN{wO8{paf){4AO*eNbvEJK3~^6#jnm@b4%*HlqYH;dbU3{n*53!$o2D( z33q$<~KOoY2ZCKCRVm&~Bp@7uR~?j%MPxk2hCkWktX+_tRVs+3S4ypsG%i zY!JYLSbQ_I^2<&|sEoc|4=O-=`8Z{}SNc|pXY5mYT%2?|{o07y-X|ybE8O+@yzM(f zAnD5KGS8&NM`e~tM?M>;b~&W4sSKFXSFsOJx4Nic|2~eXjJW(`6)rKed3)O9tx4W= zWla{^J0mVp@u{zHhmTg?hx^HH7x34F*4S&Nm@*QkpnfA4PFoD?dV|Enrrtq4pesGK zL15Rl3B;>Yv;9m^yY+9)9vDZ^0HBrrG^7~Sb!KDkw@Ya19eXGfnU7kk1f_io8O$In z3g`mtrDOl?3XE9ji`v*M0Vv=!$27bYy)k3@2LtK2->&>V`fH*8e!?zEM@4%S$MJeD zF1{@(4z-y`x8{|-U1O$1;tCL=>+A=i6YL6ZeF(t?_Acfb6$lf}1~@0xrQzdTKU0Ft z{TArW>Zya*><8)JYf^Kdu&|(=VYa2F?oGu6+49)%WecA$&D_mYIc2%*eLe9rIb^F-y=&-;GNdI@bmCM^*!E97jrf~m^WPa`Pb<;G?HN8ANy3JiR;ODL?Q`3-4E`(1yrL37$y*Qdq8 zUmt7LTlKpy$jG>82J#%2oL4MvnCL*|SVK|!eVYu)`d1I7nz zj)(1JM_N7dPRH~cPNoSEoD*#|zAb!aGi&BXUQGHjJ|fS3?qJeo7*Pt~V^d?N!S3r7~vOv4_TEay||lc!sRUWz8X z+k}s@YaW+-%u7Pp<`R4o z)1zc>-d~@5;c1iNIr;0!{dDWc0me1KQ%2iO#Vr4Wj*^?&;v#PZJqhUwGMvo@1)~6U znJNXV6`A!%MYjZ5g1)75OWz4&r>!b{Ix{*yph$7lIA$+4GW}M3sBQPqzM_T6=HS_3sPmgjas5s zd&Sne)wBm!w0h5EPI=maRqiXW-r-Kap2XC6Rt&4Ty#{RBA3cnj{V6yfjD)Y;jR9h9 ziSpM?x3YvE>)XacK(O%Dl^qo$jnL0P94RZeQaUuauTuVzVd9|AhV?1jHp4?YSjsiy z2fRuEJDuZb$^N(E=%H+aC?v2B613Wqjqp`mel2j5YDx6>!2P-#*?FK#;pLPZfj%A- z3#VQ}O39!`FN@2(A?y)CR?SU##luT=o4nYs(LMXMs=A_DiKuXY%H4wGoB-sqhlxY{ zf=7Xa>SEJ!a}n(2m+&w5u4-Nz@so!#a7(^T)QUiCz>U!rGZHjcE|;ivUc@8CIMFnNj{9%{yMSoB&-k;OjpwB@KS9oVBAQNI zzt*_BZ7fjf)~~0TsWV+9Og$N$W*(Iu^%cx-TsHKfgA@<**g+KG9*XQYfhmEucu626 z$zGu@U?C92P(toOHKl3qv)*u$TQxDejw1)1&D|9q6ns-nUc9z(a1TkBcDt+O)Yys> zCI$LB(<%l80O$tTDqkFvwl%^Z{Gz7CBpB-;5RJ9sVvA<25hNvxog0Vl2gHWg*cprpE)>CS~4o(TlQoev*+86oIp#YE|#Ytpi?k_ z5QB4DiX#+7#rWErH*RL7jA?G06VCi*j~_TGSKRiKQ25P+`x>d>o_Dh=$Lx?l(K<@Q zS8Wn)5pUx$^nK%r@T>H+oZNnSg)*{c=zvwRbFlsKhOP+o71QWL%!dHgu2tMZwZ&Kv zEU1uRl;uk%#R4VV+grP1`F6^cy?O9~8Hs+^wpMSQmr4A3HwQmVj7R(| zc7JlW%2E=+M!FJC<~UFOQ4rw)jlu5rdqU29ak>#L-K1PUpoMXI|ijrV48msowa>ku< zw=b2(XS!#&KvQI*Z@9HTjj=s`MZ3|xoXCdtMb}r}IiTg9{ZswUfwocz9q9g7)8$(5017efc+$6j8{ zBz0mGMHv{!6uo=9&fBF&k;bMiTs_t^ylNoM*$-FCJ12VcbbYsbWH^5wzh|xFQm8Tq z96ihl0Oa>^>ocf&?4OOTfZs#5FcAx=r5=ELLrLhL03dpWWo*JpxdS2714~DDnnvY; z6@@nNs)rC>OJybQ#)DXCKsnhZ_U za?0aXuFmnCtKCZ~vM#UZ2=X<088jiweR=8&l#j$mY^J@B4^qjS{Y`x^Il2dFov8T` z5t2I>H@a|-_IY?WS)nDztN4n9JVCjUOqO{Xm7 zMqfaI27M~VeB<7Ue)$<;PQc=68;=iD5fp80J5MND_U-PrmsvSocfW58}1w(Rgg zU(@hr$k5l!1<66eu|XQLwz}(K?S407U9vOo%}kNGUrvDMX~)`IMVR^SR&}#O&3jZ8 z0u3vK+ms@b?fLHv#r}G7>j`(KQ~;-rRKP~0DH4;9;2;Aa1@#MIPG;Aum2USQAxI<4 z%4>gU+r#Qa-22he)8gF2u6d0YOm$QJDVd^!c7si_1s!FsC&# zghw8i@)Hqt{-kSk{(Qen%K+ou4fw=_M9Z63yR!Il5v0 zH22Q<|Hs~Y$2Hk)`QkwoR74c%Eh-==0)iB&!GeIu8?b;3PPx%2uKY@KtTvn z1d$?ALX*%zk&d9DhJbWPC?SyI-Mr__Iqy3&XXf6y^SQs7-@Si?4|%fl?EUQQz1Ldb zwbpk{#WEtRpvqV5u3Sm0`fa`ixJ)4=lj^W|Ru8rzz? zISKt&pV*GCT|O?uHuJzKr@n8;k3Wt{^x;FH8KkCvEEo?5=_1Br?I1(u(#%bE+!{rqNGC2d&X?~phMI-s{$9(%dBJ?;pOpQ-bUjUZC?!TJfKx!86|G~F-O%+DJ zrZ6475#?A>QfY2s1xvBFv4g(y@|;+D*UJfo!ZP(Pd~OX+1zqL`5RiJIvoY8#qU zag4P|Qt1~W!=Ee%r(LHT zbq9o4XglsEA5Cm+I#ox^RO9P8>5=MiV$G^v4H4CX&#}_O7eSi?#OkVvOC~7-ALpBo zn&VbpYCEdE@vsr|+MoIM+qS$TLX>d;n@Qmy$JLQqUymP7Xj{EoO*$Hh-1{9~OfN=s z*fPE)`byVybe(MHlB>Fx-L-51O8y_``x4;^!m07aLXH`&-tEzM$dxT zkLi=c1{Km(*IV`NCZDfLyD7%-mrrOCjC{?49`BD_?6Nw+-xQIQo%Z#L_GPB=o`uqG zZZ20>7L_)n7V9*m(2Am41e;wOVK9n7LX#=7X9h#3n+C^V%TZQCsNFxM|6n#8nBA5| zhc~l#{}jUi)!RTusJfeUhuuHU$Ns^S1S&E5HISy7yMJ1MEQ%ZeiDuZo+>*zf0kO(`)kp<<{GBWSu^rH!WBfjZKK%``T#p)4U zXZDy&4d#BIE{iy8`U^uAO!NiHC%ot{$Zs`)^XToZVpO*lSE$jazzdcvi0NTj!e{l8 z$Z;;W72E`xE>Uzf#y(E&ei7f9g9%W_#ppdczh&CmfvAB?j(v3OeyyG9)44bSF6A%@<_cn&445x zPHw(C7pK_d`15X*`Golo)pnl#{&UX0Z`BKpuF5a=BNE9Klq3T5JNgpknV)U4X)Y?v z!@!a})cs{h-^E9-LS@=Vi<#) z>r>t3sZ;Xj-Al}Xpob{JkpM#i1Yj6g$dbRbz+f?eE+4+B-K)9bc4HydNn78s!5s2`USC| z0|K9g<32xOc4`2Ce0H)GEto1U4P;{$Wu4&mjKTX^fD&Rp;F0{&j>nrzjn2Co@cP?s z1k{yYhM1$2|Cz+thhnIJ`Bv#N9V<%>NBJ zMxgJ3!`J66vYS>kuyAI-VTf^CTbN$YNRVO+E8en$AC^f7Ia zi>^OxKwv*SY(a^5)9&$6zTMhq;f6`fi|yp>;2c9{b&^nR_@Phx7gTR}FYKXZ&)j&w z#9^pWt@uP1GQSe^%I#wVbbJ4(M>}0@7+(c%ii0n)flIS*~0wlYZ@w zw^X{3nhsRM_gG?}BX$g!<&81zfY(!pc3i-1%MDAk+3oAb&ns)SFX{&+|7An4gFw2q z0b^#1aYzP6DNxvh!i7SexP2Mij5K=ZDvi$^NxFq>!VVy-fwT`{Lov<-O49R<$Zt%r zc&mBr=x(2(f9dm2!~XyIjV|Y#;TFhGM#jtz8-0p6nkxfl}%A%x5l9Oe8rWDV096be~V2R>YExi4`m4WD@~U zo)$tQMD`72Qv6GlI^Q~MY^O6%{Prb4NA!3FoNJ(d%lW&NDd8$CN?sK>ve2@M!k<#?{x6Twz&mKR!% z4zHP-cX#rVPYJ%F>i=mA{ix|&^83ms*t+}G(bk{uWtK_2lK!z|MSM1g-eBp65!qo) zD9R-d_ztrpl){3>n?pm9&Q^O6YhQcbEb^KTI%hl9kk2Z-?|e%={3hOBX7G9Gx>D&# z%$LkEz>*8pWn5>2PjQ*Eja#uoq7@<*xf_0Wulh*+yF=0n$qYwS=iW2t#?7oB&xFZb z8kn*9sq<+3NUzPKqU`yDUC|G^R6aMf3$1V83=b~91e<2dVJJB=xMyJHUdu+%2H;tM z^}p$z9(qga#;_!+fA*9%xfXfD$UbiQeq+w}$k(nXJ_H!Imw1m`b*|Cs9$m=#%9Z#X z%;o;y09dT$0%Rv-;CB)*i7OzcUnw4hXM)??EGziGjRWYwKb!?)%>f;p!yYW{gsKFc zsT@UP-lbJLl75U4h|^&(1){!oqZ?*r&OAqMv}w9;$& z9;g6;3@s!KxC||}2n_HocV??A<=1-YHXMFjjS$Lcm>iBp;cBOb8zU6lI4Kz}(AM#N zL#eP+jHdmB&}g)`%?V@er;U5{q6xtc%!_VEC~DeKm+Boh(xm~yo0L2RTk)67Ur{%3 zp6c17^v+r$-R2!I%N#4++bGk|o)a)eFVQVK;r1jDePpSg%HIU=I@?ahktqXgi9a}PL9M{9~uFwF@L zJD9*a-U3I?3C*`;!1ove? zS2QW>fp(nKz0gr+d%+Zbb*rVG5=5446!eI?hBtxTW=bM#2rEyP?D7{1EwVg;VcjS;FCQtQJuzg(QVXJ@->998v5>l~_#tu(~Kz!fe2m*io$9 zcKh4&3x^8%JdY1r9mGE1V59NdsS3}=rYbtTvL2+l6*=`vqzJYJYI}K|*~fNbTdPru z|M*M7876QLf8=Ph;&BFCB^fG2-ksQxY)X_tFTO9YLchKeX^UF!=wxfC z!alY6>6icgp}!t_J#{jGkMULW0Du^MV{9(=ub!w+WhoC|_9+_MP_?U-uf}|g^tM#H zz;-fV;fD=s%RvdxE4&E-L0u}@uvrBoEf!?AL(g^>mmw3l*?ES$HWwgM{2BcV^14s^ zUu(9{#X{~a{PWCy+Lpj&?sC6YfYEyPtaRkw1B{d}yzG@AC`D|%P<{qT;1WGlf5eE4IWWtEz@bk@)!P0@m z2gKM*Gh|R~LP*k*y4WZkAnoT$5ww3p$!=jb8!AuB#}Uj*tII}&(W}u&U&bBcW$J3X z6Bz}}kIAq%qyhY=93NrA9ZJZRYWrFf1E!%#w z^dQ2%u;Es>$yb}h6_pm6?ANa(w1hwWi5wSo(c|G^3OZz5*Nvoz^M>Qrn@xs6^041U z->gxm&rcM4_Ki3VZ7E@PQbu$uBk^C%#xI%YnC!i_-)oE+l~DTwcK<^68()ucsisld zb<~v9nfVdF4{-(lDPFJLUn7ef+Tmx)=|56d*(VM%CPa>ru4nMx*_b$DRuWmKQ%JG= zHZB=|vU)&(u*|9VQD=`5^=$4zw+DM&Z>j9*S^7kEnnPB!rF-Wiyqd?)mh~mTl-h6A z2ahdP+~(x6i*@$4TYJsN@b$i-()XxME-{w55g7K%`i)R7n%X;ULawGDu_Q_n&Fz?a z-BO6nO9+?RU3PU#`cWedQ!VrCO6Do zcSCQIYmqOR86ON;UjUqzhp3SP3>JRBtE9t0AO?vC5z>-c@is5d+(|?PlQ4Ucs!?uO z_-IsfTa)J7eEJe!NVl9hGIlq%b{NcitG`KGDmIkyqLJu1eyJR+n z4HHO?_nMrDh%^YNV>CkYnj#G!5!yKW&h>a_XD<#jM4eQ}5qSSm@gn zJMr{cHQTQ1#(5i>YYS*@&$P@~Y9IbiU6LBT0hivh(%l!m!^qnn`uoEHzuVvY(!3YV z_4I0chQGFm_a-+A;DOR;8XXuF{*i!o{hwyW(5Q44ZKMNQ*#Hex-yQ(khRBKgpp3}F z-MB*z>XISLzjqHULC^!2_w1lC>~Hh@r=dU|f)9;AKOhe64>Q2vG=pvLgfOUFO#dYY zF^#R9SQ_xBUPL%wtLwv!E(Sp3X=%PGYlON;gWN$3^c+rUnlNgTKxv+YwqkKQR=wpG zHqGREW};=JsP5A8$_bvzH@Cu{-u9HQUN|2p@2$Zo7ZERKWoTwf&Hp^a(J-qpOyW)x zo^Yx-%dvO4V@u=()5&=yh9D)N#t!`%IO5qHc>6ey6u^#47Sv2Umv;4d|IIA_ZceOL zW{0x!XKjcRr6Gvq1$ZMC15|%OhCjK{F^(}_erqDUo^0+RLBmzutlVEI3_$#p7Ye7V zPJs0KPtHIuI;}hGM#H`A>wByCYxQjPbj`#ar`!t5928to&FGPJTw+jx`l8Al9Z=HzhuNNc+ zQeuc!4Jk&ZbJ!#5u-rxHu{tC7{Dm6jaM`EQ_uINJisB6RVT zF1njZ`6Np_Hh$C_+6uTzTxhb{%lc)An&+P^EGI{8ZN54_JHQtg*fsNE?~BE2V%2wc zP-Oj=G9gnH-ODvgq2c^iqh^zj;I7U?m!}^gPSr_}k9?@AByOQn@tzg!k<&@4ejo*P zsAZ#JF|k32EG#t^)H9{`PI9)e4pxW=xI3)>O<}MibxJ=bMae}C=|}&NAw0y35K+O2nr>4Gme zWbYAE+WkSQ*xN)KH~RupD<{*iceXCB@ya9qK|fA89xStFUNUT`Bq*3~8Zz}Q|FPTr zk*SiM0}e>a*%T18VLYJoL3SMX#N-hqJ~8sTA&b%kH?mj%GQhHIu{58U`ZK@^PX-!s z@Mk1t^WjwV|4a+vF?2*RUQVxIj?{hJ#e2p{ZjnLe}RJBA6qy{twgB>6qjs!{lopfJ+H%;FN> zOT6If`gK-AT`kXGwYbM-u!Hrg2z!ES?C?1M(3`=@h|10i%hRI2Al_mJn>EhI`kJ&@ z9*ebNV~lCaqFYVd(%#<1!Tpso6?63ZcN)Ij(Glq2c=d_jGoLZv>J-p{A=jU!V>YGD z8pyl?%FhH;ax?acTRTMC86gOCSALVM*cVKj*fxH@o@0PGvSYXU;*%8~|hNtMp*HjtIWj z1qwrqbXVi2VBLVy_(U2b2!nnNqdj@88o<1LP?8Bti~~)yMtZuT3>6@g&Lex3*4M!= z8GAE7lLZKu%gS_SH`oOvWd{1kroUxH9j_Gx;_1-D274V157zAq@3GG zh!9}&{d?ongNDq=KRhX5nEXT2JR`0DDjm0xR%#V8SckaFskz3buS?}mw0{PE0S(lQ z*;5pWm!Zd~2G$i7MQ57ZGm9$9uC1cD3H4o8aCs7xpxYd*9={+}s=2>6D<+M~t3#6( zo!uzD+z$V^h~EWFa(1({Y8`X8mHl!*YIOjkOgNADI~Eo0uveCLO#zwqR@z3TT|%U) zasD@v1HBO!`aH_YfqM5w0-EdBPC_yc?gOe8uBWwg1R0JyTr`Oe!JN}6vFe)oT(qfY z?ToNbcJ{q!OVaH42@{2jOv$A#s>@RS5Uws}Q-=hG(C-|F0@z50RN1rV$rw-}rLy0V zyfyCOncQ1f@J7O=k^7sm{7fm2BtL*?Me-vyd;U+k$hQJ)0e$=2S8KLcS38Y$zsW*`N3e zVnnIS*caY%Xk0Yavn*7z(VeWfVhq(Ny0O|xRU6%3b|TbPexI?p*4~h$aCtRg$X)gj zf>ILaC4?S7cn$sS^;2O-lg3mwN!WKB9JVnp?2T+g;gksYo;LV?#HDUHB&~##*O9kH zQ-;x6bENQj^utV^GQnys`}?_5Y|r?`!!*o#tcN{)XN!33EU8DpX5a?uWUrtezzP9s z31YAg_96jR2qe%+WT*i-QnOEYKZxM_!$l}D)By(ITqN-*tm*AvXd3=+YjL2r11!x% z)Q$&=CTX>APIk+~LOR@>9&w4Va20lDjbj8xewRXaCT3*RxYQ{NkgLp16&kjAO5gUb z)nAybi57V>{z|m1VggqJDDChBX;nhoO$UY~vA&2eL+z91xEKb}(aD#iz3-LJk?*r_ zM1j+b&|=BfH`TkEgVO82EL|STXDac<(_b=cz2%5AgEe7i=(2dxazrX`x0h%OKYVI` zR^a&nvC4^v@xMi+zJKpw1eZw606_ZlaRCbxqybaSxqrGz|J<(0*pSChy*@1g?=}IZXBzp z6@k?nIU6AEU;;udftGO0MawTQCJsF)t`-(9M-^0YW2K}dcrGT`jBN2teG0q0o=QT0 zZyPJ52~KG{=Ddt~0#7F;Qqw@p$h>8{=ws|q99vDyw~i4+N=qvJ+c4Q8Hr2(YIJfd@ zl^46HD7S{%!mH4qDf#1$%fMUI8C)y^vJM{gDU`m}%{g#j z@6GEOyCVP^+XSGCh+(nf7ec;q@DoC1SaQs2iHK%1TE@>OUMJZgQl>nUrZ|ov5)4k- ze#;})Uc%YTZy_CGN84lrd<}a-VNyq!;LFEIZ0)?{l+=f+WoAF- zhZ4KkVipCWYCDFMY&b{NAJJl|jTo_l&#o&3!}*zj zLa7R+Z^~wh)CUG!3RDdh)DiNR95ctJ5oEX5fYP~I4UP}xHmmiS-3NHG3;sP7%>U15 zkUo@45Z2^LHGo}pAY7WcJw5tGHBQR6*{6ie2(>{J+_D&HKgXIs3JxDrNE>AV;FXlx z5#5@0%!)`=$&b|geo*IiIr_NjW^pqi+Z(%&W--DL=e2+>h76+_U8;btf*3IZ5YQ1r ztHkohPNr%kNN`^y)r%n3K@XG?f!yV?Ug%Tu7i=dMvhF+hPA z$~**nj;d|71WL_^5MUCd6s<;Kushk3?XVr7rub#pqCK6#9Qq?4Vmm|mq>~j?S8e|o!BYZbH@wwP7kLNj(?1fBo)t^YS0|HszG-3(=tf+{*>)9lXK z&37^~4}V4~GCFDmUnMp0%MlWEOgEq^*gBBM1_E*ft~~kl13T#g;%T~Q7cZpXt2e4I z112u*rxOlep036N?%E$iL(uRiYA%4K2)X>ch=X!{;~O(w^=SJg-S(f7%q<=h-;V(R zq8%M6a)wl9>4dY7+I%mqV=y4CuJg|9`)47ZO41bhi;8Gv`m+xSdm|*zXkBPy=|fTv)R( zYusTCt7sXNk(sRMllYwl;Du3>>4HSem@#kih@)Za$m82x6fY1{L;prQN`=FoOC;(K z(xkvi5Hk^zRb5Rot{UdqI^U)nrg7TNY@gk$5xO|;s>6%ZD0hBVP#QXImrvOZU~^zn z4^*ZB6mAI2@R*FJNtsSEW7w)}_Br6sHYx4h`0fXF!_%+L>Zh3u$wWsK-pLJ}tG(zN zETQ)!;$GVHGp(=Pd#iC81IsFl!&sGKFUBz!!0Qa;;ws2+QUVmkI};$6_@$`e`K(FqODA?xXtc_V7BD@Ye ztbBSk@)4;rqcl_?;p4lG38mE@3}GnnRB5j?O_DU9` zg0B?^1IrIAoi#`zeSntF988a$9>JqHk>8)d>BrnG8y;+%EjV|;Y>L(8revvyF^tHt zPY%#A2DCp=K7iMPp4hZCa4tbR+^9Zj=)#Y&rcs!nk$K`Am#bUReMUE0WP&h9a%rcD z*0hIB5xYz2X@^V;AEL7>@S?W-d@whM&Q9q@CXn0aYZ?SAy}y z;0g2)E6ps14c8__4Oj*-9PN6@sjrClj7DCoofC`k^ih)w2-nFVqPQLOw`)o9g&?v1#ZG)apd@?paRuVbcpg$9LS0vci_G0WJ+^$aZ_tciSmmQ>Y9~5 zrlYsfOp8e$y%RLwD)ojiiec2BiA%u9?zsS}3lpWK$kbk%32*oe5!6ySj`*nI zd}Tmg$IruA&~c=h>=VmgHkxfNrFQhEoW7CTnYOQ2&p8dHQ#~p6w<#EouoHcLCS<{) zCvI$wQ>Q9IJzhOUWS-ZvNtDfqElAk2%GvtqV7PRvP@ziS3MU)lrE7%BYAm`Kd3J!& zwSQ3vndG-j)n*Lg!kcALn!?14q<086-K+i@6|5u{)H}uE%#>mIk#;WAqK71iort0$~ z^i7u^mFgKVn2K(I9da~QWz%shLImaB{uIZn&qp{=T^Wb0S7DBpo8_L?JWm-0a`(}< z4J0Qf3WirFYJPk^?=>Tvs3Mh&;`{3MI%xQ~JwP_emoaD~58LJy|n)W;^P{|MMMj2pw$j;x{ES+jb0gZe2&~)X3RP@kv zfV#35y@H-GqlUUq9Q}^Gr^lFQ++u2Ew08lEx#u}{Np)i9l)z?^ODAeo+FNiI9AW0EIo=STTGJwS>+Co%#}x9Hm_0K^)B44qT(9VX|At)DQ43IG9Au{6>Ej3^IhC|-8(`FQB1 z#|PNr8hEG04<_u-{Q*?=k2f<8Cm$|BZwk0E_I3V(wB<7zzX6Y7?5kgppaj4O1?d6d zvxyRPNX0639r`=8%5xpPv1b^&`V~ogQV#p@6uC_R1fjNQnp4P|1#pkE9usg1H3ir{ zhAe=T`QLnYe-DGZsGaol8to%ugkO*oz>fdld3YW0EMTvK>Zpej|55+Y^?!Zvsp@L) zc}J}WSg9D<+I6{J7R_7|r*o%DHtOrc3%oK{`)L0AU`+z%IM!$7Bm5~3$(4QD z$5}7f8FC!YAPf$rPoH;uauuULv)xr{VY@CW(ffLjW)73V?GC(WY;%903Ni*vCy!gJ z6?y;fzWHjaAK8p6RQQ%u0cEtA!8II-T{;T%&rFRc=(5Wklq=G((M%4Lti(szk1`M9 z{(+P-eu(><@Y0ld=#K^pge3FHNY@?ZUgrF_tJ(e#)&JBtU|k=H{h=v{)_(!p-fLn) zj?Ui#=_??3pz~P;3O~}(DNwkWd>;a>=FYE|EM;cEiq2`xb_w;ercm6-0z_$4J1{yx z_y9{39?s*;IQ4D$seux~h`3pYNo7rRIdtMgmH+Bi);hC9N_pwzraCGX24V*+k5h^Y zD8u@s*7V{EFM=H@DOxoz{O~)QdlNql=eziyk6pDinvSqZd$RrT>XFIBjXj7w_-`pg z=&g+#$`Ko67>Vu(a;vmW)2>`NwSq_qgWX4S`YC-Yf8Vp8W`NSJO>6ei38U$|KgJ{6 z#J`#RCU|3^?|LV9&Pw!L+ntr0j@OT$x%-a7!8p*2Uk%5WkAi79YfB8mR1LfO>3)_C zK5I7|GdjPnO)r?PF^zDS2Z>%Cf==7DT++TBq^lXMw1B$-@?eQK-ONL8@1`+g(R3g4 zuYURKy96@VP~?yy=^=wB!cgr&!QVv0Di~kP(z@dvtYy}{_Wu|uCJeE zxY}+h`tntMmy3Pv3GGCEDMjKX2f)5v>tryHpa>cM^zJ+I0D}=JxR0w+DPYiFl4`V3 z=tjBb@e8s|2Wk;E3zXUX``(>SeR0Z@J@X|cXg9CGF1Ww(N{L>re|C`%%AYIWv z@@`P*cz+q{r8{qj>NM@_KE_9iZ`{~BS{nqf`=DPY$*t&aP7sOOM;|rP684Jv zC)A0(xg5bu&dAkF)`Y|NiN!TO;@oQ}dy-zD+V z!_9s{t~6VgLYav`=XGyb3$j)m9#5Y7sWnUOh&H-%wD!x*Kt=` zaz~AqGA!PkEL$VGu3LQj&P!WgkX-M{FMvK2Dfj>2^Nk7FqnTB(Xu2T+?JHhgSvgTr zQ5w1;o~(n5FF1Yw&h)*|tVQkF z)-1lY?8lG~Gj$eJIhvjR<4lBmljl372m+iJ5!P=0sdm7=e`RXWBmFn2bN3P+Bn@|0 z$B5mvhN?;7<1`$|jQ%J`eaLM7hquP$%`MAZ(GE>v8)3+m4 z#7!g%X9gw3c+SeDb`FD*)jeURk9+YL5;n9VZGsc-B9dbFc7g20YZ`3eSsCmQ*P-0< zvGmYl+#cA|3zVz@@;OTSR3AxTVX;9|44g;La%n=7h^Us-2XB1yKZR~5&{6T8*1_kV zeY|{B_nH0Cw&-gn)rhD`x0v!0Tu9q6xtt;mYODXqkQ%C;`j+D14z{m>hm zSo3$udMC}ol7f=;xLmCYv9?&|ahf>&l{ynX{YF1K>;^Do!V49swGP)GTo8}kYhpB$ z{w!=SkL3Z@gmX^jwb7VAh^P1fXc7W9KQp>uYmy+0uG+%>AANF*^}Ufc7n9X3V7}V@-FyW`@anGp zn$*33CM{t%f!4rR(TBh?EC5(-)gLJ5kQE7${13cZNTX63!_6LXEHTBmPL>7bj^jJjA1+!b5c7C@uZU0@2tR;FFzF(W({{Fe=8ARw~HU}lYeIj7v(SBX(um{yqZ6GP4zES?)+Aw6i;w= zVQ${}Ezh6+@_59Cvs7DU)Dn4E*~I;oc%tnivr*l<#8yMs*lNMS6oqolCRLs^G=)?K zM5Yvj3;o^Hi$(#E|3ngS*=`RsLNUsbnzH&??UNJXN?xApsNToDC&ujASPTOUFRrj_C2IM z?x@geF!i;gi1X`5xd&%F_lh@uX->8s&+HjIm8nlObJOU0q)p++$D$G=h&y#ws#Dtu+c0y}M>Fb1o-c zdc}0cc`nFf|F#y}cN;!#adt-20Cu*ihe0c$7|}!XkUgPj`nDA@&p&To2N&=HGO;AB z#_&4}fXFYvGJyVRHoQOs&`#_Bwwtu|m4ADNA^T^$2WD|~8rCSK_PzHH`^=5S9(*S< zrb>NU@)|h_R&RN18PT^Hr-{lO6IPA^q3Y4gx{rEXbAlZa#b^fjbCz|<9gaZF;JQTe zB^b#7u;Kmn>RpZc;K0-E?x#ZBMGMq$Um4bC&VPg>ohsF}?b5T>CQx@Fj0XvNHlh4! zZeLU+2EKb0xDI&<(UW~c)x*pVXj(6(Cp|My4zvVfD0qMounaf?fDH#7A!FA!U4Y(h zLUTeTI{zMBTwrE<;Dz4-|Dwz6U*B535hqOvT5Z!RXtq|QTvhs87-4OMn1pOA`>KT9 zUC1srQO#CB7Y9XO+it^#LZ$?7g0BK5rA=g8{Y#bD%xc@O@-JV$q64mi0I$37*v1cQkNn+@Gqo|HqVQ^gP^-**m(>#p&z2ttz3CIl7dLQ^5L?`Gi;Jtb z*~XU+yAgZ|le3ZG^h+QEhPBv)44xqV>M;Gwf+heCKSM#tVbIF%Cst%fBqc{0Ia;K( z=_HvIDD|((tm?6w42={NOKthSoweb#RoeQD^7XjFLMOM&KgrdJ&4)HE> zf&%cQf=49J)NBT93AqYNVBI!3f2HcJw>j*?MEFM3Cl(iI8}w+M+NqQ`j^l!Z;sc6z zfFGjLSWM8P_GN>e2`fS#_o*&g%FY;NoQOqRSDr*ScZ(EgE{!dsm3dJF>=$1 z;~#V)H@-pFj_gWY5?HSwecJ3T2$Z_i!vL{=Ac5dk^!TpRs}M@j_xNLXFue3`g+_pv zApw{)mCx+E>%aPd{AZWJ&cqmiT?r%`*tQ@!IFo&K*OAruFFpWqgk!s9DF55%tf;0Qv7fv@W1$mHbGC<1RP(_&RPG0#aM4x@0}Mu1~%Gweh5OqO8@*)~u%5 z6!b^pRNgW#L0W0J&CsEqm)M397-@IR8@)oF=M%i6Eg*NMYcRP-BXFv|(2CdbeXZ*o z+uAA+(g=V=kYayIz?+ZJSJ5UH^5_}U#zYXsaPJlm&ki&==R*ZtW~jTfBUCQtdFehQ z3PiGS*}f(Dyus{hFIM2WD7+I0I)$yh#h1EQq9Y zv-^}HM+<x_qtM`uVvpE!2spI2k&}$&q2c%59b)#T_2|wMCYOrTE71B$+iS)**K1@mDO@3&5xZ--Z z94>r=FBV4$0BO8^DdR{<6Q7yHWHcN{9B9dtDnoa*apuxz>GAKB*IO z<#rc~by_DX!drR{2ekOGMu}106v)P^Kfo0xqaMGV+X+ar<4H}~;zX$|n_nq9bX;lr zRgPSi#E-hqGByD{Uxf`g`jiIwea;qjvx+9psVp`UMqb}c*tmYdQ=?r&r&x6-)}P%k zk9yYcJ_!TPkJz1eLx3pUCewkzPaLlhNwT(in7ox}i8BzJThlw%Il~j9d)w~#^mMS) z{7khPuZHetiR#%6A;=kVL2iC?>@3jaCemebx{On_Mc8hNc~17_Wdr(8+B~3rPVDrF zANJWtKVQ+mjH$EJc`}nb<_Yfdt+01N3qs&eCoV*o9BBE zoE|KqSgq;nZ$S^*8Qv0%;L}Wrq>u3PlUtGW@-(2aw2J_^ICmY-X0;`iw@a}r=G%%U zv;74~b^}1NHk;MX?5&2)5_yz-n)dM%gA+=NV6y>kk-jJk-so6Ou(5&l*R=p!IQF~9 zd{g9+aUM83-GH+*^N_}%E3o~PjcOt#A!An;Br};oJX%&D`+xK@vqZa5;V_K7U;D18 z^NW3VY@wr(E4)_*k{+FXNFmU#0rTO}_#bV;Z^cTeb}lAmvJx8bNh%??W{^#&B^MaO z@8Ms~4L^4hmfTCpodn2KY$`e4i?{+~qj7(#Kv7Rpwd&H0hO>Old?QZkm)Bp3wO=;{ zDn;LG*VA#{+=FvyqM=lmcz}$P>Q>kcw%?C=>W)VmSAPcXTmQH6TC*RgYOCvNB8Scu zDTMgy9XWoopzO84^ut{PFrCph0MOL7zZyj`dB9r}^Sf14vLAflW&mxe+}T?%LUcpb z-4rQ(GoNvy-v4A18yfKLDsrFdTR8&%d9A17du~?um-w zM18w^aTnehdGw`pccM(mp{sWvY8~^>_Q}6z>u|+vFf;DMuB$VC8TuWEq)~qS)%1jw z0>yFruVyLtde5>2^%kOR65VRG&w(LQN@Qf#%xuP#IczyB7a(FJYS&~8Le73U>C8v& zkxMvjSUAUaxxCh&b=K%hlf1zXj(_-!Z@rsP7jC_PQ3ZD~VL=#m4U5)*M7Av2(8{KJ5`kTyW`TPFZn9biH`o$)BUn+pPnPyhI9|M_|CUrVlsLjH>kL&||H z=*1?ek&R7wN$WnHr#J8g*&g%U_1q!7o`In{Su&pf4%i3w6YP#kKJp{%&Mlm>&V-(Qi9@Or&>$`i~ zFK;n=TF66Kl6eVv)WOHk=Wynt&4UE-+PHx3w4f36wKLC2`!JE3B1lJ5r9}&UIPVek zo$(``J4dxmq?m8EA=j3F-}d2Vf7|PYs&NNr1AwWw8(m`HaT|cb=5qibb^wXow#MzD zw5zZMrC*SpGXk5BzsSNGKuoX^RqT|y%9O0X3!wD5rMM8kF7OLd151J^Umi@+%Wyu; zkzD(=RL$eb*E`X40~d|9f$p2@ZqrgcQ$uQ1e$_^{zg20Vii`yWO2(?{ta4@}8^1jA z8a*7oEJD}>ILbb7PA@XJL9Xn5^frAEwz|ozEy}QZ%0Z>WNAy1kpQw81kKX|&hJu9) zteFyw%ypmDwE?ygu;{jS(&&-M*)2n$E)M!SdNQFo85{^@f@K<*Q+LKoM+9x~T?H!mq{br>2)gydg^QRBd zSH6nHKp&g0XsdMa)hpcRpam>Iw{~94E$Pq#Ccrja&?v8EdNSOI6HhL2&ezU%AWi)E z4wCX4A0X5J`Fbb*kzz(-wcawW>~p_Q+E^QBGcf(LSW6OBb$QU6Nfiocym%;1dK$@ zM@}rjN}p&t*Z$n;cJc>P@vd+&#)kQ7nkD}E{*Xizvb*3rE=IFW3fSLgZ^>#P`0@)q zzI#lyDY|rhd%0pm`4(*)cVk@39VuW2Wu=*{=8hrfILxt2K(?I>Eup&?rx7l#0Kx~9 zzYGv$T0TF2K^`QvKif45A%8Ur|20uo>}K=}Vu;?wH`$$YNN8Fui1N*aSoZd z`iSM+NVcNv*lmhj58p9l<+i4B($1j>@CeNlP9ogBG`*>kBMY9mJaSmcTT`cFjyFcy zg&s$#915^Kb4YizR4qcK>pr5L%tS;*`MKvK5@e4c%5+E~Z>B0ph(T$I(kfN|xzezP zZKKf<{R7e3TnNXbZ)2kP#@HTw(q@Rw%ZJn~zdVP#7<^+tpyjJjWAJz;!)8e9uV*_F zHQa|qD$HBfvY!!AOF`Kb=9V4JBD^d&qPf|G$Hx`@b|K>4SuqjO;Lm%sFsBuBLIthu zWSv|-b3Xa)o2Xg?ng~aSAvx+{<9<2=8wQFMYMnny7@bN{xm`lMAJ^7fJ;*Ldp=WDH zUF&kG1^I7o`=5e8-%6#GC^_jOMj z@`wFp%IuW0+Oo|J5_g^P+Fd=QwWHY45vQy#gk|Fl4-{A8rQR>L_lEi#dg|V%+}5gp zi4n`+4kF|W3H*e�Uq6)r@jYGrOE?a9E0E)r< znZbo@>g-3(0&{;-9gWu#R{s5Fn!U(RJ0|Brr?R`9W&;YMH6)(F|1%T@6V33LL?IxDBW({Pzx+2K+(D+ir<8R!}0%9rlNtfVKUn4j}(chUvYv zoJ5s}EeqqLR1~QB%YGNLN)x`T*oMsuy3V}}mP>!%G40uA;4K*N6~+^w0GQYjZY_Nd zjH5)E$i8hQrDN@4k~dGJp5xE8e^`3z`XmNoG7vsxnb4e8*`D`f_XmT4A5(&18PU+t zRfm=&gH@HvtX-aF#YW*TuiYni$FUM-hq?6RhQjkR(Nsw;<5Q(14ucfkniyA2$K#Je zIv#QGZER$r&k4^)cmGva4zEHcnppx_m|{hNGCJ=l9@hg`?$lo>SH_*s+PtUje9Mbx z!tuISCI>%7cq&E;|3A9>@^~oMxA8$yipdforcf%|DO-fmf+S58k}?$`LPVB^M=48U zLUd3@BxISAE!$*olYNgd#=d06`Y=nsTYbOhbk6sEfA8l#=Y4;l_xJu`9?#74-1l|g z_jOrO87DsgxIsd*Hwyi5Y5 zyxbWMyqm(f(0^D4XVKqbL;W^4#S+**Hm~}RN$pW)uTA^o z$UXw$hX4&9fcp-AV$EVL}hHhp~OK&0M`=_u||85QL z(=#WU19-+uR8x*lUo&=k2V ziY{p)6~_y6{51%w5n?{i&7Ov>*__M3u*z`f2O_)&XPr#PR)!bx)SE6m)hoJBeLTt1 z8qGP%;yr3b1xd3L_EE#~!Z+qV)V}?&?Td1EQ6_)NiTZAm6DX($6gE-VeLfP4BXr9; zgXR<(x;jh8Z^*~ZfQ}4xNux_!og2@}eCjhjZFZFNi;19oX;@Mh$8ezWUh~=}^uUV> zaXNbX05Z@em6mm;-zR}ub@E-(?y!R4^4rRLNBuQEe&`nARwFdn+wZ}>%;r-v(Dn3p z{(bbbmeZ{a3t%VorGJfacOWX^C9_NPT2(~~gWcd0JzrTlZUY=CS3aKAU-T93)xMzi zdE8iL8|w6qv8c_lv9ZC2H(tP-Ht?&jYtXPezd9Dfo`(x)hoIx%h&nwPdg&!v2}0cQ3Hcsnebuf4_w*Ge=ME(^{x& zUA{0nvFAv!{r*bH+0)?YBql&^pqSxVSecR|Z%kuVpCS9)`eKqHy&P>-mFRKW?m~3e z!WN<=-R*vbG`qpW$D#hLVPpYD0!G{Hz3YEy(7@;(t~kV*@J ztowgH1cdE@jzk8{E-?veiMxj|32F*BeN`%GHZ3Jk=)ycIR)Qy)ndz9krb~xs*r0L@ zz31#M4t3joZ>yR+lkKx$JW(a@~8z+e8Vk^en>m;IVjIbVDVs8aR4lz;K;NniT4@9h^q z+w_2AY((d7`VM9WTe3**>g4PT5nD!76TkC$wHxvv60+nGWi^p%9ew#EH>!FjD8aBA zl7z`Me*PU#)kg7ZyS#Lc7)u)q@2ho_EXm%!`B-jO6PxyGO*FqdUYl+?wSj^a^yxLH z?;wQXY$+r`r+yho;ED0^lDsRb%UDeKiG+0)&b~5?1JzqER%aO%yIQQ_)Co2@_lbY< zylD{MGYN_N0+sbEB&So^d(rfn7Y>?@U9KvfI=GVDOTL(G;P?=3a!G5pZ(?4g%T$ll zA8IYr$t--7d3Y;(N8YRY?vAe(w?+gJExQxClOKeID(Gz?)1aw>XRzF0ZT-D`k}%xU ziYaZk@3>6sD}3>4tVsM$^OoTxy_ex(#;y*(ygyJm^4e%PWXPMCksVf$y&!@;d{Gmq zhdpPeJ&uC3acyCy`9c>pxA`Ianm<)X%k8CG4k!`m;b&Wh+811IGEgRQV#=zrak4E7 zzT09NZ{?n@m%WwpfQQugVGi2vc>`5I1VF;p-N10PG1;+CNz{8<_^l4j^m*hxp(!;zY! zm*#rKw!9}w0|ckiofo6&O5xApRO1$=1VvFwHTZzFbw*OhwqkOj>ZRJmtt$8L)9ianCHw1H>OTk=^IC7fN5BJv z*kMO5-g|EGhVgp*DTyPdBPW4}^YTOAhlq*Y6_=$h15fAwnjg8LNHoA&%2R-HfMaTw zE*Fs7LOeiku5GM_R+cd=LHXAjSwgP%J;{%w-S1y-yy}jJHzTh2QhV^)H!Vj)rZ+Gy z!C93Ap$g5jU}YranwfwZIaY<_f;qM|+w02tDol@vRGf|@-qaw-=iAtMWSDeMJWE=_ zuu5@O1H?_Zv*%4cbDXI9^!Deso?g*d32kMD5)59KIodMRvX{J1iAk9}IP9kSsb%1n z_-n-%E?LndaUnf6K8vZ1Qtfj*w@I$3%}i_d+we+=??Q(XMA_P0W;7^&fGhy?D1GB$ z8Oc%G3#~55d&#QXMs`G{z=|`Bsitp-n%eieHb7Qb?-I(8Fzw67_&l%R1+mMgs!T#=E z`>Hp3WL`S65xLuU%nv#nU!e$ldozQt@{aDQI*}@s7?6)3@KtQO0&Ohwra}VaOImjx z^=pwrPPKIm9&x;wAmKCJeyJz*Qmmf4yx<9+aT|9kvI|wMHG@}k+kAz+lU@{pGs*A? zV`5mD=?%`KSLW0crJn3Dcx_$c%g6cL^wzbSeI)~y&rsn>k_zbz`+E7N<#IH=2TgH> zy-uN{oRp4RX|jWj2R%`TMCeFW|~lQ&?e>WBOU3q8m(x< zRO1Yc__I#rR`=|duVT<1qx;+G+d?0!dDagCZ`Q849ILrX)(q$qh}9dMtBbi9m+BE0 z0_Kt@S>&@i&w`>hSM0*AX$jctGxIh{x-D02*Mf3L$>WmTxWZ`VSnU>TBd31XA(wY+ zTDIPP!c%bFhL;t=lo>#VuOBQmp0+X1kR$`pf;8Abm#Kr|MXn(Q^)0 zXU|Ac-O;&@bG?j)!l>xtFYUz*t1ZvIbkjltUq;9U- z`G=rCv;-84KX-%p{|?{*$OY3KO_iF_{q zUfYtfpJ~H-rfr^jrD8{`Dw*5I(lBEC?awVfN$U{9J^QI1!+04bgqSve?0h3rk<1@x zxY!=IWeBg4S%)qiKL{65T1ufpg&Qlr1XhG9_oot1DJj~iD~qLZEp;EKnld$Ou52Xg`*jk0++Fr0n7 z7v*T3!3&V!8M2Mlq@`JR?c!BeE6yxP;W5KsewYMILRBwMcwz;lj(+BN$9$p3cySN5 zWTX0MM0Q}3G{`rgkD{?>?n3ixK#aufF0QXHRBQ%XEuk9h z(z|42Ne1yQn!-l$F4;0f!B;>&;|0&VRaKXYqrxQI`lWw4L{IXe(tkW^$P^_}tWH9& zaQeYws9huYpPS}bGT%%iGSQ_JEQ>>1A7lr*ho-Q|yg;3^9t3_5o#g2|ZCOS789uQ0 zmvBG`OO^{I%|z*;yo7G)4f*pU3vh-&EmwIxKx|U$MwS@Kadu78i3jXcJ7#GAIYA9O@&+$O4d>VtEO$vRlV`U{hca)*-rWE^ zFhk*?4I|HsFF5I3WljGL4CyHYk|lKXbO$I zl{DrW!)7+|d@a}v0|^`%3=ad*-jlEd5Co@Due>4wR+FTvsK@F^A@L{yeJTJ-OhI;b zg#P813isd*QLuR;$lmBy#|S+VPL+{$`A||@jOs|V;97FJ$J`BIsA6898C+_FzO1h3 z@9jVM&jM7$mVhd)bX9!_HKGeAyhvAO6LEv+2CO0=m%^fLzND?s^dW{nY#B#RNYg|&=m#rz-yHF zf|{}$^>XpS%Dr{`Jme;j%`tHB$vD4XA{j3GJ&B7Yn3be~`^6v#WWBF=Ph z+w>I`HiLbMqIvCDT7;&$X$9X9<%7PD=;}Gx5NgeILBNcjUlWf%i^RTexCp#U8m^&f zF&Yf?6V#6j!kgR+JYiHJz|1`E1k%`g73lRcn1k=vCZ3zi;xEAd`(!<1T}k~_kDEG4t-`QQ+F*p6}}!+ScWGC_zhgxlnywxf#IE{vQx9;@lMQoAy_3_39+aR`}J#gcg%iyYD1B*W>84EE- ziczppB8%`DWLI9j1Rj`~2Cgg#XyA+R*%_QTcj8IiOkf=Rapn4=E9QKWDL~({h~=;G z18O--4637eiOz5A@9#va!V9SQa192j??nY)bVafZJS$nwA-X#+xX&)=u*UvIzfGX7 zpZUp(OS#mTm?l#OnyCZdV%Xt4Ueg=`v%kt#t9BM`>Wxon%{djH>mc(WG-y9cMexPb z_=i#)xDy}S`f=e{oM8$O&M+*Q!bHk_s6PQvOx9u7 ztQj<{#ZR+hH=;LmEzuRoE63WGOFI9k00;KNF6A}sd2P6YXj~1*Q4I8@GV_$?-zmVO$d-VFAA!Nlm*^pOnPyXzgPZim0H zLzM8)7JZifWu>3!?kk%YuQcKu_AJ^+X-Bk~M}uti>jR^OgYJjDxr*Hcm8gxQfSUeu z9{THFjRK4M>V)j(7(>&d6+wP=Mc*Z+>@?sATEKMnGQJ_w5PnFeZ1{P?+X#PqdTw$> zg+wQ5zS-9Xm`2whfS~!@xkXR9kO`>7eID#adHBx!e6yPg;+Xc47pX~K81rBu^ohDs zyRJgnj8bSGaQSj>Ga#<@KkD&#OwGOYYdRc_W9Uru-Bp5E1jK@4Xv$7|G}L*m-fb=c zvDDb5vZxupIL>-b%+|g*_ zi#c>)?3BbV=9j#Lcc-a88i?4*-TJij#sxJxucmd3n7zPj<+x|}eG|Q7&4vx5G(x8q z*yU#1~7oHr|Clph0Uc?5p26R^uSK*Sv*c+~Uo*v&QPHUi61KiLlY* zF(0p$=AAh9Vl;Bko51-U^gUZCMM{G_O@chDY{#7_=f=jcUNl61I}-B`EHnFojQJ2i z$Wiidqx}yj3p(GEHPwPcgQy0u1)DBq93dYF*sPufd}atps1w+R_nLb%8rVzo!iX6y zyjE&TpzK`6+zYK;oS6TP+l;YfWCIaCU^6#`%_CREjhEI&chvsA^PceQh{e}8oGroST+VEFx7mABdZM0rzX6KT;HB%F{l{D~DN(GK*h%;qi4N82O`GBMZWh5eFtYq>^ zfZVUvJ{=NI#cy4|`YL5g-^%jijaVxO_rUdyZOu?+gOqSHTN#cScqeITeGiw?cW|JqV~nZMCOAsSmLn0MQv& zv=2JlB|IxRLra6pg4_F2jf2BK^uJPhc26?U%r+q4l+9_c4huw>=(P`D50!>AylZre zeKT|aex&m}e=D2cF65A#2*^Rdo@tWW1*aGv7=8nVLcLng7y0}0XAQ1>6)_Y`Jvwc7Pwn#khbl%= z)6MgO+g;@;Xr>UJx>QS&^l?5?1Y_tzhCww;9gEi{O49Fo?N|MHQQ^Hnal*w7d#a^a zpU3#y&90r`@+Q9~GDTfKQqZ?`c}d{`LJic$P}FPI^R$Z;lt59qUF&qmh72Inm%O%i z5K@qTWw7JWhd?_)6F=`N6s)Cu9=mrt1&uQJ^4Ai|yZ=8~$6RVPxI#n5%5M3?0c`%-6mhqQ%R) z*ZI9dw_@&*?Uxm`PlPwcZP})7Q8qdFD6q_mW?XA{m`(_0>QfXQK3L;lPWsuccr{17 z5%j&DqT8bRc`x?n1Vr<)f0Hx0qLisoEng}Tp==g6`1RunI)74}c>B{fsfjI0+N_<< zFX?q3rC`@f2G{KNB5<#ka~OvMn)v9Gi-Gjc$b^Rc4ti0j7oXR(jl25}QctcO;iJk` zlc^+ojl0LAo@6~n0CA7@0F-_KY1GlvmIQFdW5B=j9AhAJ`oHn@(kOG2!&$(cY{pY$ zZ&u9r5ZDPs`S~C=|9ClrXDXfc9J7)ri(1~ZuzV5JvV= znT?cgI}y*2!tIFZtn=8_=yBElZ8EZIKU2R@O{yD|AT+eWX&>uNbZu?a1)@##dyw@A zASTF_E2uRG!pV&6=D}HPESLOaFGP|~U1TMZ?69{$!5wT+#eVozYS(x|Q4Ja4+&O;T z#h+-BJ5kd9rYN$jJG6U#EKq0@K=Jzq>qCMud$Z^t*@9L&Ydvjt!yp`MM$!jcy`oe) zh}ksRqkMNw)R>y9iUhvi+nsf&0FIp4cdo7jgb%JADWcRY47{cbv{d>vEs1jZ4MFawQcDm z`D7Zfh4yexV#@N0VG7-E zltf#_P%UeNJ3T=~wtSWWW{VTXJ-u>Y`jd?wzG)qr8~1XX%j}fZzUau6!paB`ze0MQ zKFu@e#_h;fr8U-=$Q&#_GlesvOvaY9syS|1pXwQVzWt~r2i5WdachRy?I9YL7S$2YR@4IEz6(~&u-=xye*ln|Nex%9}}Y71-VzVQJL=8+_$p;0xUyIHT0bURRo z3#=L!ubov36ZwUSovHBw7EE8m%*%8wO zcv*mCpdYVQ61Iw8V7G&w0sku+N|zprJj(TDXsbW}IBFCtPmpJ5D)(V(3Tuw)q-w6ViWM$+v9sV}PZNcTk0H zwNUqrNku+Gp|5`&68HH9SX$CRGdB0dVEnpTv4PaNyyZx-M{CRKWJiiR*}Rqv zJ^exX=}YJcvZ$yn^*ik3?+j+;YAl=o%9@ttSQ8(X}$H zkbER8mmXS%qP(UH&eiqrqHBa)Wg71fsvdWKZhiL4a=27)l)rq#HXlNiu+sp;1pRrFZeL2<`# z949YKin0UuESSUf1P67dOMa0`Q?7kt zJy>*yshZrn1<41O8R!_yTHFm_Vao zyOr6Y=|P69;(GSx#kIm5;34LI%SB^=(((gj=4#w?SSov~JYxrNZrDt7V;wOStNm?AbFQFihf&=Q)l2&@={Ol$9l?D^Sx1gqL7u)`tg6Yz%;Jp{s`sG-SpxkP zg(-o$2O)S{{Z!m%7?vMsw{+>XsMF?Jwqt7or^kO88iNyPSAneX=Sc%p?q3GyJjJ_< ziwY*>&l6|(FRMU&xhok7mgCP8hx*eZRJ;Z7qW^W$RH45Q=@1gWRx}k0Rv1%BfH?^i z0H*aKP|~Ex4Ky-2Ff<}@EO}jaj!4yqEi#Rdcom$Jin%z`{z9&xzmi|*f5JQ8y8jQ| CVQ~}U&Kt)eIT^vI+ zChono-m4{0gyqBiz=Ju)w^;&N<{#X1a0!1>bC%GsW3bBL=<%|p84;9-@5SwA|2OIEL% zb=QtBT0T9C&(LA{syqXqqW_DHn`b;(x5}@uA-g2{Ncy)Mhpp~Sy0eY()*3IP6|4C4 z(mDEHWvtPCEP7WZe7{4e?P9&>AE%^j|Mz!&9rL?{G_w^d>;^y&GkCiCxvX62_e8qfDn49f`EkHA#?z2-Q&c(YMU9NZFT zcpy$!wAr#PR!K{1@p8BWP6-`qdHC z>InUsaJ`BM!-{Zv6-TdzL#_(fs|trJ!wsrAR8cssCY(~s(G_v1)nPgU4y`oYLd4M* zaVS+B5L{= zEDWVqhL9^mDEv^`{t*3&5K2V|wLC;$7(y0==oW=p?hhvOgQ@&r%D!M-K`>bmOc4a@ z?hDo{3#OF^k@!J6`-60O!8UsXsRhBzeSxI1K=Pg-{e6LyeF3Dh0LtC~N@<{OX@Fi) z09@v;Q|7N->Q5>2rxg3^mH3fM{m3PLlp`f~6*5r9p^S!hSJW2UpI)$DZ1)f?vy>xk=WS)oCPIt{6Y!Z*H zv15}~mODAiO>4WGdYUUa+f^fDqk5XN8h3+Qilb_xqk6o9M!fC%XbWtJrHYRUL8(*% z|6hsr4Mbpp8NlNIR{!5m05~O3ho|~WB@-1m4YMtC(w?a*$T0A*|8Vb29oa7X@!W9V zY!mENOAR=8>_*LC`t6kd)%N*>;grF{{ecH86NbG9ql}5|VR68XYOM-&%>qWy-`MfkiLDuxokICx!tPQc*!TaM73t7tkIvWc8sB3? zh1wP{TRaxkS{(Cq%3YaHIX}Mp^W{`MH-q`M!P}wF=Zkj|S_fzMu68^O%TzWglR)Ma z-`4e$x9*O(er^uID&Nm|zc;fdea4wiODkOJnGsR5du9zMDskZ^-Ek?;YMAl8kHU>c zAK;@{n+Ad(yC=}v_5r#(NNeoh)cgh{ zg7Sbn3N~JC*TKmS)3%-pmEg84g+?K0Gl_eIR~*OcKZZ{nHXQZWNjvz*V8)TM)59W~ z2yF4M7K%FOdTM?QFm?UNZ(gg2J>x~u-S#Pi{om8#r;l6jdOLW6EPNyzc;vxH64o8d z_8f#XrDh-qDWSKg@k{Y+1SOO8_Ke9Ff_Ih5vQ142EBjtR$ho<5^Hvw^|Fkea%BEZD zq}n6rGW(4x=Pk~NUlS}9M;N)OO)o~VO~dcYUtfMlzdU=TZJhBjCzX>`0ePmLJPR>@ zd_`RYuvF=p^}Dz$6PQ;DIj!6KE-9%tPJP(;uVKMF$Ev888C5krei+KVbe3_5IpCJ96-zBG2YGS$j@KFu>S8M1!71t`X-d)`3b1zy~-5W|} zUwCMGX5dw=)%fe)d5cGrJ|@gXdcX)%yIUT}&;*@+ap0}zR7=32*m6RQ1SDG^Zq+Kv zulze(3fuD$fa171Mj^aF5o78hETqZBWdj~wYy>gL-`KB7>SMj#rgk9f8S~`B+pzMq z44c4thE87tP21UsneCCfEF?L-#s6 zH=`bs+R2H#Yxd0<#fU@TY{|G}q{bxWh{DvwY1z4uKh4ZV)VZh$;zw_wUTs=-a{fbs zP?a4~7n}f%O9F{(Rvh5}`Z&YkO{BL!LyZMZkQA%vJ~H~+sAwLWy3!Sy>91WmKZ!~E%6vt`_KJ%e=|T>@il#{cZzBSo8@V_1f6e`#OCoUwoxlun6z6{xUkauP7n zk(o6SXtpL$nPcPG5;jqkHO+*}(X^!qm8*4LUsmQS8cV-)>AY*v)<)n%z)7MiS%w~s znY5aLF(H|g>Xf?`kejEb#`$TAkYjjn%+HJ;F`#1m0vmG6Q-uV1GLStjWH(R3NclF= zx(Uke9vl?@;2uuI5^hHDOC1I#w9c$xmn#uaI{+5NL12)#2GLgLX_WbJ?D7x3%CYKc zbq`WaxIY>L0DQ!Dww!a751{Uk3D?72Pi7f#g>(;$(q;EUq_^10ff_m0NaCd6Z7}D z6UsQBFurX?GBA~F$MhuD-=5evz)mq+d2M?XX96Qx$U*AK4A<`-Ixy{#XgeF_&ewo@ zox?xQmE#8UBTtgqNOgF5?$YjQlP@bMmo9D;2^d5X{9c$@!vHj<7h5Ik_yaLZw5$e@ zAUvjBLW9EjG69OnpLQfG17L7@e}2E6Gr>c(bh7|YhOj=~yb2#?=W{89>w2W7arQwE zUBH*B{9y0k4{R}fjbb`Ysv&LHCiTBeS6Q#kqpa`6@>n)?3FFVo81cPSjOL;yt~{Q@ zE~olA+)5^}Q7&`hI~EG$-%pnD7!(5%xxJI;Ijgv{JVoy+D{X(wV#CP7k;A_sEx_}L zeECbgG>#cr^Qr#Tm38A>)Vk@DUEL`MifXsq{%}RX<;W|P zD_JDkaD(7DMFF4)JOCO|0$$gm2YewjvnLGvcJ4UE|A*0|%pdO>A$p5Eq$(VfqbNw_ zM>~5tGB_C5uV9)lc)xEiuZ2fsBggvCc98Q|I(UWw!kYVJ&8DT0D{|ZRM@D{T0|FTK zixkre;Y7QyC_TR0)e5)I8<6W*1+EV&T*rKq_;wp3(=8>T+K~C94k5I%_d*LIv=hq9!!Bbwn#HR5?V2ZS4@vh z7g+Nc{MIUGTWki>IH;HR$fiJCW$lMzrO8UGo!nswDwmt}Q z4##3gMsLeHxxqb8BKVnt%p>io<6!G}F;yOxGmEuhT*G%$s9(Vnd2HS2oZqevq}nu< zR#bQ?0@x))k`={1F{wS8tb_UC-;;6aEHup%zdQxG0UKwv(K__RLnKod1*WGDtM+As z?y70?c^VhF+kg+e?rbz(icsSxU?d6pnoUf;b+X*WkBt%X_Fr5^r)$8aY<%`MT)Gx! z?XLL^Az~xjm;r&TF^4z_{?Ht>nO|+lGe`3g7b8mg1ju$rw5`OB){cT$8Rn^=FSp8C zBHlE>i_!*`KDQvnW@xV7`4r&DIhR=_PM{Ba>{6Ka+ZLQoaZ8v*`B$KurZ>0Auuo}@ z-B2^J8O@R+&H1}KFA5wvn4U#&-`!0*y|^|xp5IdS+^JpfnaTH0R{tQGdl$gzUvcTS z;HELNhWm(iW0S2C(MHHDyBeL(<+dN+Dgrvy7?ulk%gFP%V7{}ehC`wR7k=I$5pa`e zn1SbL`}^#;tHz;DuwT00%{a_wCTQ0YoPN+W;k?7rf>V+NyA=TM7NU{>Fxw98EcNvs zquqUGvgo)YI1`j{_fc<=1jBE^r?SwEAajWCtfx#v z#Yu2Mti%1+31SX5kgKP;r$wY8=c}4W3H%8fLUN0i{O)?HNcJp zAl!x?&{3k!<+_0Ya;_46#S>m9;{iO+K6UiVNFrap-%7axQO7IR&40SHjOM*SwgX@;snxk;bYskD(Pf!M`6`VcIA&R;2?oxE>6?E7t zIwo1tAi);NM{|E0UPrUJ1mV(T;6emu4T<#S;)gkyM8SY>zj_yIN2CVs(9~!u>PXUR zSgAr!#6#c!|HR33Kn{=~+_;R`u0VK7@K-s+^;~4o0dwWBkr~tiNrARKo+d(MIh(L4 zkJu(H8J#QP3I_hb5P!DnTOoCGxwyk}sFsh^(7?XjhMRIMnDZeBVKjM~b}2uB#7o0} z?Ii*xqcm*Nh(jra=HCrEqD1=F%%npA{-w9Eiw<#=hb6)JRSV6Ld=GUPfs$Rmpbd~& z?)h@PDN@g-2NbiC`!zrMBaHjkN$2u1liBio=F; zQlb<{U2k1ye4Zx{!CdLdeu(Smb%nD~OMQr``%b%xPXvCYEO~%A5ZXIVN94bTG&{ zgR=-Ui!J8Qf?j1P$!8E0G_0OGp}USr&el5RfvJ@fM*24T(X8r+30^sbq%VdX#7y1_ zB}z#x_J$HmyoI^^)5TwS6sRSPZQ0cU!dSDOb4CkZM>PBrw~e4;V_Ed+N-|GZQjn+n z_$Jdex~mJ%XN%_^z)9XN4_fByO1Pj4})YDZnzoS zAg;RmV}m$?K^CL-#hS-aJtjQxIbXWN*xRQ>El1C}ZDNAiJil@d)8+z}y>=(P!f`zU z-+o_|BS2Jk{I6#0f7P#>o|%-TpqzYW4Lzq(r6hQ|9Z~Y8>DsUIYuKEl>KX1({RFd% zv4Vd7N`H()Fn_LB#~NE?%(dLd>8_fHR%FivKB+8+E0l_2Z^tJC*swsoZOTHIRm z^=7h_6WUs$*LHZrcUPoy4YEEM%*#Tu6~#)MBP&Ed%^j$RrXYn4pPd1BXPX{~aQ-k% z`MgRg>p_3^w5#Jf8ot-)RuHn~P@dR)Bd4lc-Api53@nN=BD$&h8-J!4UhK*Bl<)oD z7v%Z70Gib?@P1LDg^FLXiu(RYKg30(mfR0p-k|6@)>|zl>t5Ew6|??l$n#U#z(sAczvu0_6RgLN0bl%UG#YMy(GP!yO=tuTcii1Xv%Py@ z5jrZF>LQ1HsR z^(&@NGJeUwdAag)*ya}F3Z6wA4?{n0?Zj`?QBI>WR;;oO>&W)@8&b3iVJ&?&nx2T! z;$9*_NE$cr$j>)N_8A`J5y!dYFh0i&$b2uvDc`DhLq^hTIy+G_rP9Qs67|Oy92n|2 zeCCBIMn>^-)Fv)|R7NZZ5IeMqT@vG0*=JYZ;192$lz(6ku}};d2Um!|MSEEN#}@!& zEXD7WgV}84i}!$&_`}ggqqLyWJrcrI36ax--gcpCgD3uilz2@-9D!{GTqFH=6XVpT zoWzwMKhQ2xqhvJhD1?iI03U_^p=TRIBw+{GDLY|DtyHqH)R;2jQ6R;iWZ{Tn(-Tk( zGYNGhl-kNRunIHSzb!CV`P*pMGG?#LZt^Ku$03X>h*$W;lU^=eHlIU3$vV_E`qYR= zU`yJwC)Q{atr0FLPc1s8CyqsDvwZ60U{DJ(CL-5fhQ~3zD0DGniEcW)=v3rQjXeck zjc_vMnCpE(pvzX%(nSgO9xwTlL=e8adi zc@8V!9;MWv0mf#CK{I}k-}STqZp1by^wjCLdo|{3pgp@}T1&~4Q!w#Ovqev{@}=6V zGygFunFuTlY8VIh2hPwBh!viqb%@>B$NYM=%!@x*Om>EEyKbFigdcg}{f9=2amc3T z@YPUyP`l#}TdlHf-kYag)qI-qsyHGBV{3)#^_c31BR z)fSc8gNJJWdDi9fr^)%eXWj_?EhRkXndD!J3NJrbd8rB#H)(W3w19iYH2rNwcZxm~ z7zLF5Seq$XeUT)ze(v{gY4D%-Tv`Uk!sGw^%lQ2tZ%z(aBwjB0>ubMzqKfSR=}G?7 z8|~;#$-E)fcBh=y^LOI=JpHXKth}5h{K?+>$1?x*`o2cZSe9%pd5mdfXf*UDKG^)a zM>;k2gwKlCbW^}TiUp}nqmy8kfbH>S7+QO%2gH`H4&Df@j#npbIYwZRxk6{LxzA{- z0Do;Q+dSB2%KpY_n;H8*RgK$VlsXk(4nkAzJ|IE5 zeNk$g?oc;OiysQ_D}6J=+|rp(xM^H`Deb^!>8*%UdKPPw7aM)o_YP4*Z%@c?7)3g` zx+D#qZ*@(-y{(>}J9DA>6X&u*fZ6I#k4vunYdOlk(XHsV!$a=h$4p%Lj$l^7?Z4{X zH{N@zR#^ABH?jE1y>h%|=anFfJu`PBiJr5Oqe=U3 z>wc_I-8$B%RzCLP{%^*K2iLbRaGTFIUwqniO88oRcZ2FCt7TNHPl(Oigy>w_LG7M% z?}Z6boP)v_0s7z2i9`2us@3mY4@ROVsJFJK7)40o%$~aHg$C}&A^ID$C{7RZgt?O; zvqH(b6l>A2anQ)t?G95=*PAndXgy{WWZ0m;EVK(B(b%y&EowYEn-s}dXc{<`df)8w zYu>%@>)1O|T^1HurMKrErrV-jX7+NoC{#bNZM82QjG_5Dss1^v>ibS{xWN4&x_iBE z{H1=F*m zRq4$1`ZC~SIlEVaD~>})gxb_xyQ&iUVP1=r>hFBBrm0{@fvy?PKLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z0007@NklnaO;2%+X^-}sD zj0eFV2M-E8Yca)J4<1T{U{b}yl9k;}YP!j0n>5LIP)l}q%pnoUPUgWJ=JEEiAKsgJ z%kq^drSMt65mJ-fWu_>qw{5P!z>;VacOA(=@TW zyBqq0n#p9)vTZ-Cw~dR%V(40TTub}g*fV;rmrfEV|RX7`~W8<9u z5U;=dz<#ZbH?`i>w2@gZMM93?;k6|^U(ey?&1Jq}NA3RAi+F$c(tN-IzzsEl?X`vZ zfCYdDtBd~^R+1#l&BncbLwp+xSOF_w1+0J-umV=V3RnRvUMG8 zPoZfVqR}X1MVaZg9S#QQ^?Jx=vq+{=tPlynIV=;H6O&k@N8%Y22>xA^IH@wTa6bnC X26lSic}{%m00000NkvXXu0mjfTCsQt literal 0 HcmV?d00001 diff --git a/htdocs/takepos/invoice.php b/htdocs/takepos/invoice.php new file mode 100644 index 00000000000..2df1cc965f0 --- /dev/null +++ b/htdocs/takepos/invoice.php @@ -0,0 +1,287 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); +//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); +if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); +if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); +if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); +if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); +if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); + +require '../main.inc.php'; // Load $user and permissions +require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php'; +require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php'; + +$langs->load("bills"); +$langs->load("cashdesk"); + +$id = GETPOST('id'); +$action = GETPOST('action'); +$idproduct = GETPOST('idproduct'); +$place = GETPOST('place'); +$number = GETPOST('number'); +$idline = GETPOST('idline'); +$desc = GETPOST('desc'); +$pay = GETPOST('pay'); + +$sql="SELECT rowid FROM ".MAIN_DB_PREFIX."facture where facnumber='(PROV-POS-".$place.")'"; +$resql = $db->query($sql); +$row = $db->fetch_array ($resql); +$placeid=$row[0]; +if (! $placeid) $placeid=0; // not necesary +else{ + $invoice = new Facture($db); + $invoice->fetch($placeid); +} + +/* + * Actions + */ + +if ($action == 'valid' && $user->rights->facture->creer){ + if ($pay=="cash") $bankaccount=$conf->global->CASHDESK_ID_BANKACCOUNT_CASH; + else if ($pay=="card") $bankaccount=$conf->global->CASHDESK_ID_BANKACCOUNT_CB; + $now=dol_now(); + $invoice = new Facture($db); + $invoice->fetch($placeid); + if (! empty($conf->stock->enabled) and $conf->global->CASHDESK_NO_DECREASE_STOCK!="1") $invoice->validate($user, '', $conf->global->CASHDESK_ID_WAREHOUSE); + else $invoice->validate($user); + // Add the payment + $payment=new Paiement($db); + $payment->datepaye=$now; + $payment->bank_account=$bankaccount; + $payment->amounts[$invoice->id]=$invoice->total_ttc; + if ($pay=="cash") $payment->paiementid=4; + else if ($pay=="card") $payment->paiementid=6; + $payment->num_paiement=$invoice->facnumber; + $payment->create($user); + $payment->addPaymentToBank($user, 'payment', '(CustomerInvoicePayment)', $bankaccount, '', ''); + $invoice->set_paid($user); +} + +if (($action=="addline" or $action=="freezone") and $placeid==0) +{ + if ($placeid==0) { + $invoice = new Facture($db); + $invoice->socid=$conf->global->CASHDESK_ID_THIRDPARTY; + $invoice->date=mktime(); + $invoice->ref="asdf"; + $placeid=$invoice->create($user); + $sql="UPDATE ".MAIN_DB_PREFIX."facture set facnumber='(PROV-POS-".$place.")' where rowid=".$placeid; + $db->query($sql); + } +} + +if ($action=="addline"){ + $prod = new Product($db); + $prod->fetch($idproduct); + $invoice->addline($prod->description, $prod->price, 1, $prod->tva_tx, $prod->localtax1_tx, $prod->localtax2_tx, $idproduct, $prod->remise_percent, '', 0, 0, 0, '', $prod->price_base_type, $prod->price_ttc, $prod->type, - 1, 0, '', 0, 0, null, 0, '', 0, 100, '', null, 0); + $invoice->fetch($placeid); +} + +if ($action=="freezone"){ + $invoice->addline($desc, $number, 1, $conf->global->MAIN_VAT_DEFAULT_IF_AUTODETECT_FAILS, 0, 0, 0, 0, '', 0, 0, 0, '', 'TTC', $number, 0, - 1, 0, '', 0, 0, null, 0, '', 0, 100, '', null, 0); + $invoice->fetch($placeid); +} + +if ($action=="deleteline"){ + if ($idline>0 and $placeid>0){ //If exist invoice and line, to avoid errors if deleted from other device or no line selected + $invoice->deleteline($idline); + $invoice->fetch($placeid); + } + else if ($placeid>0){ //If exist invoice, but no line selected, proced to delete last line + $sql="SELECT rowid FROM ".MAIN_DB_PREFIX."facturedet where fk_facture='$placeid' order by rowid DESC"; + $resql = $db->query($sql); + $row = $db->fetch_array ($resql); + $deletelineid=$row[0]; + $invoice->deleteline($deletelineid); + $invoice->fetch($deletelineid); + } +} + +if ($action=="updateqty"){ + foreach ($invoice->lines as $line){ + if ($line->id==$idline) $result = $invoice->updateline($line->id, $line->desc, $line->subprice, $number, $line->remise_percent, + $line->date_start, $line->date_end, $line->tva_tx, $line->localtax1_tx, $line->localtax2_tx, 'HT', $line->info_bits, $line->product_type, + $line->fk_parent_line, 0, $line->fk_fournprice, $line->pa_ht, $line->label, $line->special_code, $line->array_options, $line->situation_percent, + $line->fk_unit); + } + $invoice->fetch($placeid); +} + +if ($action=="updateprice"){ + foreach ($invoice->lines as $line){ + if ($line->id==$idline) $result = $invoice->updateline($line->id, $line->desc, $number, $line->qty, $line->remise_percent, + $line->date_start, $line->date_end, $line->tva_tx, $line->localtax1_tx, $line->localtax2_tx, 'HT', $line->info_bits, $line->product_type, + $line->fk_parent_line, 0, $line->fk_fournprice, $line->pa_ht, $line->label, $line->special_code, $line->array_options, $line->situation_percent, + $line->fk_unit); + } + $invoice->fetch($placeid); +} + +if ($action=="updatereduction"){ + foreach ($invoice->lines as $line){ + if ($line->id==$idline) $result = $invoice->updateline($line->id, $line->desc, $line->subprice, $line->qty, $number, + $line->date_start, $line->date_end, $line->tva_tx, $line->localtax1_tx, $line->localtax2_tx, 'HT', $line->info_bits, $line->product_type, + $line->fk_parent_line, 0, $line->fk_fournprice, $line->pa_ht, $line->label, $line->special_code, $line->array_options, $line->situation_percent, + $line->fk_unit); + } + $invoice->fetch($placeid); +} + +if ($action=="order"){ + require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php'; + $headerorder='
'.$langs->trans('Place').' '.$place.'
'; + $footerorder='
'.$langs->trans("Label").''.$langs->trans("Qty").'
'.dol_print_date(dol_now(), 'dayhour').'
'; + $order_receipt_printer1=""; + $order_receipt_printer2=""; + $catsprinter1 = explode(';',$conf->global->TAKEPOS_PRINTED_CATEGORIES_1); + $catsprinter2 = explode(';',$conf->global->TAKEPOS_PRINTED_CATEGORIES_2); + foreach ($invoice->lines as $line){ + if ($line->special_code=="3") continue; + $c = new Categorie($db); + $existing = $c->containing($line->fk_product, Categorie::TYPE_PRODUCT, 'id'); + $result = array_intersect($catsprinter1, $existing); + $count=count($result); + if ($count>0){ + $sql="UPDATE ".MAIN_DB_PREFIX."facturedet set special_code='3' where rowid=$line->rowid"; + $db->query($sql); + $order_receipt_printer1.=''.$line->product_label.''.$line->qty.''; + } + } + foreach ($invoice->lines as $line){ + if ($line->special_code=="3") continue; + $c = new Categorie($db); + $existing = $c->containing($line->fk_product, Categorie::TYPE_PRODUCT, 'id'); + $result = array_intersect($catsprinter2, $existing); + $count=count($result); + if ($count>0){ + $sql="UPDATE ".MAIN_DB_PREFIX."facturedet set special_code='3' where rowid=$line->rowid"; + $db->query($sql); + $order_receipt_printer2.=''.$line->product_label.''.$line->qty.''; + } + } + $invoice->fetch($placeid); +} + +?> + + +'; +print ''; +print ''; +print ''; +print ''; +print ''; +print "\n"; +if ($placeid>0) foreach ($invoice->lines as $line) +{ + print ''; + print ''; + print ''; + print ''; + print ''; +} +print '
'.$langs->trans('Description').''.$langs->trans('Qty').''.$langs->trans('TotalHTShort').'
'.$line->product_label.$line->desc.''.$line->qty.''.price($line->total_ttc).'
'; +print '

'.$langs->trans('TotalTTC'); +if($conf->global->TAKEPOS_BAR_RESTAURANT) print " ".$langs->trans('Place')." ".$place; +print ': '.price($invoice->total_ttc, 1, '', 1, - 1, - 1, $conf->currency).' 

'; + +//if ($invoice->socid != $conf->global->CASHDESK_ID_THIRDPARTY){ + $soc = new Societe($db); + if ($invoice->socid > 0) $soc->fetch($invoice->socid); + else $soc->fetch($conf->global->CASHDESK_ID_THIRDPARTY); + print '

'; + print $langs->trans("Customer").': '.$soc->name; + print '

'; +//} +if ($action=="valid"){ + print '

'.$invoice->facnumber." ".$langs->trans('BillShortStatusValidated').'

'; + if ($conf->global->TAKEBOX) print '
'; + else print '
'; +} +if ($action=="search"){ + print '
+ '; +} +print ''; diff --git a/htdocs/takepos/js/jquery.colorbox-min.js b/htdocs/takepos/js/jquery.colorbox-min.js new file mode 100644 index 00000000000..b5109a262ef --- /dev/null +++ b/htdocs/takepos/js/jquery.colorbox-min.js @@ -0,0 +1,6 @@ +/*! + Colorbox 1.6.4 + license: MIT + http://www.jacklmoore.com/colorbox +*/ +(function(t,e,i){function n(i,n,o){var r=e.createElement(i);return n&&(r.id=Z+n),o&&(r.style.cssText=o),t(r)}function o(){return i.innerHeight?i.innerHeight:t(i).height()}function r(e,i){i!==Object(i)&&(i={}),this.cache={},this.el=e,this.value=function(e){var n;return void 0===this.cache[e]&&(n=t(this.el).attr("data-cbox-"+e),void 0!==n?this.cache[e]=n:void 0!==i[e]?this.cache[e]=i[e]:void 0!==X[e]&&(this.cache[e]=X[e])),this.cache[e]},this.get=function(e){var i=this.value(e);return t.isFunction(i)?i.call(this.el,this):i}}function h(t){var e=W.length,i=(A+t)%e;return 0>i?e+i:i}function a(t,e){return Math.round((/%/.test(t)?("x"===e?E.width():o())/100:1)*parseInt(t,10))}function s(t,e){return t.get("photo")||t.get("photoRegex").test(e)}function l(t,e){return t.get("retinaUrl")&&i.devicePixelRatio>1?e.replace(t.get("photoRegex"),t.get("retinaSuffix")):e}function d(t){"contains"in x[0]&&!x[0].contains(t.target)&&t.target!==v[0]&&(t.stopPropagation(),x.focus())}function c(t){c.str!==t&&(x.add(v).removeClass(c.str).addClass(t),c.str=t)}function g(e){A=0,e&&e!==!1&&"nofollow"!==e?(W=t("."+te).filter(function(){var i=t.data(this,Y),n=new r(this,i);return n.get("rel")===e}),A=W.index(_.el),-1===A&&(W=W.add(_.el),A=W.length-1)):W=t(_.el)}function u(i){t(e).trigger(i),ae.triggerHandler(i)}function f(i){var o;if(!G){if(o=t(i).data(Y),_=new r(i,o),g(_.get("rel")),!U){U=$=!0,c(_.get("className")),x.css({visibility:"hidden",display:"block",opacity:""}),I=n(se,"LoadedContent","width:0; height:0; overflow:hidden; visibility:hidden"),b.css({width:"",height:""}).append(I),j=T.height()+k.height()+b.outerHeight(!0)-b.height(),D=C.width()+H.width()+b.outerWidth(!0)-b.width(),N=I.outerHeight(!0),z=I.outerWidth(!0);var h=a(_.get("initialWidth"),"x"),s=a(_.get("initialHeight"),"y"),l=_.get("maxWidth"),f=_.get("maxHeight");_.w=Math.max((l!==!1?Math.min(h,a(l,"x")):h)-z-D,0),_.h=Math.max((f!==!1?Math.min(s,a(f,"y")):s)-N-j,0),I.css({width:"",height:_.h}),J.position(),u(ee),_.get("onOpen"),O.add(F).hide(),x.focus(),_.get("trapFocus")&&e.addEventListener&&(e.addEventListener("focus",d,!0),ae.one(re,function(){e.removeEventListener("focus",d,!0)})),_.get("returnFocus")&&ae.one(re,function(){t(_.el).focus()})}var p=parseFloat(_.get("opacity"));v.css({opacity:p===p?p:"",cursor:_.get("overlayClose")?"pointer":"",visibility:"visible"}).show(),_.get("closeButton")?B.html(_.get("close")).appendTo(b):B.appendTo("
"),w()}}function p(){x||(V=!1,E=t(i),x=n(se).attr({id:Y,"class":t.support.opacity===!1?Z+"IE":"",role:"dialog",tabindex:"-1"}).hide(),v=n(se,"Overlay").hide(),L=t([n(se,"LoadingOverlay")[0],n(se,"LoadingGraphic")[0]]),y=n(se,"Wrapper"),b=n(se,"Content").append(F=n(se,"Title"),R=n(se,"Current"),P=t(' + + + + + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/htdocs/takepos/receipt.php b/htdocs/takepos/receipt.php new file mode 100644 index 00000000000..6b2cb1a5505 --- /dev/null +++ b/htdocs/takepos/receipt.php @@ -0,0 +1,108 @@ + + * Copyright (C) 2011 Laurent Destailleur + * Copyright (C) 2012 Marcos García + * Copyright (C) 2018 Andreu Bisquerra + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +require '../main.inc.php'; // Load $user and permissions +include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php'; + +$langs->load("main"); +$langs->load('cashdesk'); + + +/* + * View + */ + +top_httphead('text/html'); + +$facid=GETPOST('facid','int'); +$place=GETPOST('place','int'); +if ($place>0){ + $sql="SELECT rowid FROM ".MAIN_DB_PREFIX."facture where facnumber='(PROV-POS-".$place.")'"; + $resql = $db->query($sql); + $row = $db->fetch_array ($resql); + $facid=$row[0]; +} +$object=new Facture($db); +$object->fetch($facid); + +// IMPORTANT: This file is sended to 'Takepos Printing' application. Keep basic file. No external files as css, js... If you need images use absolut path. +?> + + +
+ +name; ?> + +
+
+

+ +

+

+trans('Date')." ".dol_print_date($object->date, 'day').'
'; +if ($mysoc->country_code == 'ES') print "Factura simplificada "; +print $object->ref; +?> +

+
+ + + + + + + + + + + lines as $line) + { + ?> + + + + + + + +
trans("Label"); ?>trans("Qty"); ?>trans("TotalTTC"); ?>
product_label;?>qty;?>total_ttc);?>
+
+ + + + + + + + + + + +
trans("TotalHT");?>total_ht, 1, '', 1, - 1, - 1, $conf->currency)."\n";?>
trans("TotalVAT").''.price($object->total_tva, 1, '', 1, - 1, - 1, $conf->currency)."\n";?>
trans("TotalTTC").''.price($object->total_ttc, 1, '', 1, - 1, - 1, $conf->currency)."\n";?>
+ + + + diff --git a/htdocs/takepos/sql/llx_takepos_floor_tables.sql b/htdocs/takepos/sql/llx_takepos_floor_tables.sql new file mode 100644 index 00000000000..943f8e60b63 --- /dev/null +++ b/htdocs/takepos/sql/llx_takepos_floor_tables.sql @@ -0,0 +1,26 @@ +-- Copyright (C) 2018 SuperAdmin +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see http://www.gnu.org/licenses/. + + +CREATE TABLE llx_takepos_floor_tables( + -- BEGIN MODULEBUILDER FIELDS + rowid INTEGER AUTO_INCREMENT PRIMARY KEY, + entity INTEGER DEFAULT 1 NOT NULL, + label VARCHAR(255), + leftpos float, + toppos float, + floor int(3) + -- END MODULEBUILDER FIELDS +) ENGINE=innodb; \ No newline at end of file diff --git a/htdocs/takepos/takepos.php b/htdocs/takepos/takepos.php new file mode 100644 index 00000000000..098ba39b603 --- /dev/null +++ b/htdocs/takepos/takepos.php @@ -0,0 +1,406 @@ + + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language +//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); +//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); +if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); +if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); +if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); +if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); +if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); + +$_GET['theme']="md"; // Force theme. MD theme provides better look and feel to TakePOS + +require '../main.inc.php'; // Load $user and permissions +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php'; +require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; +require_once DOL_DOCUMENT_ROOT . '/compta/facture/class/facture.class.php'; + +$place = GETPOST('place'); +if ($place=="") $place="0"; +$action = GETPOST('action'); + +$langs->load("main"); +$langs->load("bills"); +$langs->load("orders"); +$langs->load("commercial"); + + +/* + * View + */ + +// Title +$title='TakePOS - Dolibarr '.DOL_VERSION; +if (! empty($conf->global->MAIN_APPLICATION_TITLE)) $title='TakePOS - '.$conf->global->MAIN_APPLICATION_TITLE; +top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss); + +?> + + + + + + + + +
+
+ +
+ + + + + + + + + + + + + + + + +
+ +$langs->trans("SearchProduct"), + 'action'=>'Search();'); +$menus[$r++]=array('title'=>$langs->trans("FreeZone"), + 'action'=>'FreeZone();'); +$menus[$r++]=array('title'=>$langs->trans("Customer"), + 'action'=>'Customer();'); +$menus[$r++]=array('title'=>$langs->trans("BackOffice"), + 'action'=>'window.open(\''.DOL_URL_ROOT.'\', \'backoffice\');'); +$menus[$r++]=array('title'=>$langs->trans("ValidateBill"), + 'action'=>'CloseBill();'); +$menus[$r++]=array('title'=>$langs->trans("Logout"), + 'action'=>'window.location.href=\''.DOL_URL_ROOT.'/user/logout.php\';'); +if($conf->global->TAKEPOS_BAR_RESTAURANT){ + $menus[$r++]=array('title'=>$langs->trans("Floors"), + 'action'=>'Floors();'); + if ($conf->global->TAKEPOS_ORDER_PRINTERS){ + $menus[$r++]=array('title'=>$langs->trans("Order"), + 'action'=>'TakeposPrintingOrder();'); + } +} +?> +
+'.$menu['title'].''; +} +?> +
+ +
+ +
id='catdiv'> + width="98%" id='catimg'/> +
+
+
+
+ +
+ +
+ +
onclick="MoreProducts('less');" onclick="MoreProducts('more');" > + width="95%" id='proimg'/> +
+
+
+
+ +
+ + +close(); + + + diff --git a/htdocs/takepos/test/phpunit/TakePosFunctionalTest.php b/htdocs/takepos/test/phpunit/TakePosFunctionalTest.php new file mode 100644 index 00000000000..e4917c3cba0 --- /dev/null +++ b/htdocs/takepos/test/phpunit/TakePosFunctionalTest.php @@ -0,0 +1,289 @@ + + * Copyright (C) 2018 SuperAdmin + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file test/functional/TakePosFunctionalTest.php + * \ingroup takepos + * \brief Example Selenium test. + * + * Put detailed description here. + */ + +namespace test\functional; + +use PHPUnit_Extensions_Selenium2TestCase_WebDriverException; + +/** + * Class TakePosFunctionalTest + * + * Requires chromedriver for Google Chrome + * Requires geckodriver for Mozilla Firefox + * + * @fixme Firefox (Geckodriver/Marionette) support + * @todo Opera linux support + * @todo Windows support (IE, Google Chrome, Mozilla Firefox, Safari) + * @todo OSX support (Safari, Google Chrome, Mozilla Firefox) + * + * @package Testtakepos + */ +class TakePosFunctionalTest extends \PHPUnit_Extensions_Selenium2TestCase +{ + // TODO: move to a global configuration file? + /** @var string Base URL of the webserver under test */ + protected static $base_url = 'http://dev.zenfusion.fr'; + /** + * @var string Dolibarr admin username + * @see authenticate + */ + protected static $dol_admin_user = 'admin'; + /** + * @var string Dolibarr admin password + * @see authenticate + */ + protected static $dol_admin_pass = 'admin'; + /** @var int Dolibarr module ID */ + private static $module_id = 500000; // TODO: autodetect? + + /** @var array Browsers to test with */ + public static $browsers = array( + array( + 'browser' => 'Google Chrome on Linux', + 'browserName' => 'chrome', + 'sessionStrategy' => 'shared', + 'desiredCapabilities' => array() + ), + // Geckodriver does not keep the session at the moment?! + // XPath selectors also don't seem to work +// array( +// 'browser' => 'Mozilla Firefox on Linux', +// 'browserName' => 'firefox', +// 'sessionStrategy' => 'shared', +// 'desiredCapabilities' => array( +// 'marionette' => true +// ) +// ) + ); + + /** + * Helper function to select links by href + * + * @param string $value Href + * @return mixed Helper string + */ + protected function byHref($value) + { + $anchor = null; + $anchors = $this->elements($this->using('tag name')->value('a')); + foreach ($anchors as $anchor) { + if (strstr($anchor->attribute('href'), $value)) { + break; + } + } + return $anchor; + } + + /** + * Global test setup + */ + public static function setUpBeforeClass() + { + } + + /** + * Unit test setup + */ + public function setUp() + { + $this->setSeleniumServerRequestsTimeout(3600); + $this->setBrowserUrl(self::$base_url); + } + + /** + * Verify pre conditions + */ + protected function assertPreConditions() + { + } + + /** + * Handle Dolibarr authentication + */ + private function authenticate() + { + try { + if ($this->byId('login')) { + $login = $this->byId('username'); + $login->clear(); + $login->value('admin'); + $password = $this->byId('password'); + $password->clear(); + $password->value('admin'); + $this->byId('login')->submit(); + } + } catch (PHPUnit_Extensions_Selenium2TestCase_WebDriverException $e) { + // Login does not exist. Assume we are already authenticated + } + } + + /** + * Test enabling developer mode + */ + public function testEnableDeveloperMode() + { + $this->url('/admin/const.php'); + $this->authenticate(); + $main_features_level_path='//input[@value="MAIN_FEATURES_LEVEL"]/following::input[@type="text"]'; + $main_features_level = $this->byXPath($main_features_level_path); + $main_features_level->clear(); + $main_features_level->value('2'); + $this->byName('update')->click(); + // Page reloaded, we need a new XPath + $main_features_level = $this->byXPath($main_features_level_path); + return $this->assertEquals('2', $main_features_level->value(), "MAIN_FEATURES_LEVEL value is 2"); + } + + /** + * Test enabling the module + * + * @depends testEnableDeveloperMode + */ + public function testModuleEnabled() + { + $this->url('/admin/modules.php'); + $this->authenticate(); + $module_status_image_path='//a[contains(@href, "' . self::$module_id . '")]/img'; + $module_status_image = $this->byXPath($module_status_image_path); + if (strstr($module_status_image->attribute('src'), 'switch_off.png')) { + // Enable the module + $this->byHref('modTakePos')->click(); + } else { + // Disable the module + $this->byHref('modTakePos')->click(); + // Reenable the module + $this->byHref('modTakePos')->click(); + } + // Page reloaded, we need a new Xpath + $module_status_image = $this->byXPath($module_status_image_path); + return $this->assertContains('switch_on.png', $module_status_image->attribute('src'), "Module enabled"); + } + + /** + * Test access to the configuration page + * + * @depends testModuleEnabled + */ + public function testConfigurationPage() + { + $this->url('/custom/takepos/admin/setup.php'); + $this->authenticate(); + return $this->assertContains('takepos/admin/setup.php', $this->url(), 'Configuration page'); + } + + /** + * Test access to the about page + * + * @depends testConfigurationPage + */ + public function testAboutPage() + { + $this->url('/custom/takepos/admin/about.php'); + $this->authenticate(); + return $this->assertContains('takepos/admin/about.php', $this->url(), 'About page'); + } + + /** + * Test about page is rendering Markdown + * + * @depends testAboutPage + */ + public function testAboutPageRendersMarkdownReadme() + { + $this->url('/custom/takepos/admin/about.php'); + $this->authenticate(); + return $this->assertEquals( + 'Dolibarr Module Template (aka My Module)', + $this->byTag('h1')->text(), + "Readme title" + ); + } + + /** + * Test box is properly declared + * + * @depends testModuleEnabled + */ + public function testBoxDeclared() + { + $this->url('/admin/boxes.php'); + $this->authenticate(); + return $this->assertContains('takeposwidget1', $this->source(), "Box enabled"); + } + + /** + * Test trigger is properly enabled + * + * @depends testModuleEnabled + */ + public function testTriggerDeclared() + { + $this->url('/admin/triggers.php'); + $this->authenticate(); + return $this->assertContains( + 'interface_99_modTakePos_TakePosTriggers.class.php', + $this->byTag('body')->text(), + "Trigger declared" + ); + } + + /** + * Test trigger is properly declared + * + * @depends testTriggerDeclared + */ + public function testTriggerEnabled() + { + $this->url('/admin/triggers.php'); + $this->authenticate(); + return $this->assertContains( + 'tick.png', + $this->byXPath('//td[text()="interface_99_modTakePos_MyTrigger.class.php"]/following::img')->attribute('src'), + "Trigger enabled" + ); + } + + /** + * Verify post conditions + */ + protected function assertPostConditions() + { + } + + /** + * Unit test teardown + */ + public function tearDown() + { + } + + /** + * Global test teardown + */ + public static function tearDownAfterClass() + { + } +} diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index 03abd661d7d..9ef1e158382 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -1707,6 +1707,10 @@ div.mainmenu.cashdesk { background-image: url(); } +div.mainmenu.takepos { + background-image: url(); +} + div.mainmenu.companies { background-image: url(); } @@ -1776,7 +1780,7 @@ $mainmenuusedarray=array_unique(explode(',',$mainmenuused)); $generic=1; // Put here list of menu entries when the div.mainmenu.menuentry was previously defined -$divalreadydefined=array('home','companies','products','commercial','externalsite','accountancy','project','tools','members','agenda','ftp','holiday','hrm','bookmark','cashdesk','ecm','geoipmaxmind','gravatar','clicktodial','paypal','stripe','webservices','website'); +$divalreadydefined=array('home','companies','products','commercial','externalsite','accountancy','project','tools','members','agenda','ftp','holiday','hrm','bookmark','cashdesk','takepos','ecm','geoipmaxmind','gravatar','clicktodial','paypal','stripe','webservices','website'); // Put here list of menu entries we are sure we don't want $divnotrequired=array('multicurrency','salaries','ticket','margin','opensurvey','paybox','expensereport','incoterm','prelevement','propal','workflow','notification','supplier_proposal','cron','product','productbatch','expedition'); foreach($mainmenuusedarray as $val) diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index d88a84c5090..a0714d502fd 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -1696,6 +1696,10 @@ div.mainmenu.cashdesk { background-image: url(); } +div.mainmenu.takepos { + background-image: url(); +} + div.mainmenu.companies { background-image: url(); } @@ -1769,7 +1773,7 @@ $mainmenuusedarray=array_unique(explode(',',$mainmenuused)); $generic=1; // Put here list of menu entries when the div.mainmenu.menuentry was previously defined -$divalreadydefined=array('home','companies','products','commercial','externalsite','accountancy','project','tools','members','agenda','ftp','holiday','hrm','bookmark','cashdesk','ecm','geoipmaxmind','gravatar','clicktodial','paypal','stripe','webservices','website'); +$divalreadydefined=array('home','companies','products','commercial','externalsite','accountancy','project','tools','members','agenda','ftp','holiday','hrm','bookmark','cashdesk','takepos','ecm','geoipmaxmind','gravatar','clicktodial','paypal','stripe','webservices','website'); // Put here list of menu entries we are sure we don't want $divnotrequired=array('multicurrency','salaries','ticket','margin','opensurvey','paybox','expensereport','incoterm','prelevement','propal','workflow','notification','supplier_proposal','cron','product','productbatch','expedition'); foreach($mainmenuusedarray as $val) From 603db250f0e74f7d66b8976a1e3df9072a1b7212 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 13:36:46 +0200 Subject: [PATCH 50/81] Clean takepos --- .../takepos/class/actions_takepos.class.php | 3 - htdocs/takepos/css/colorbox.css | 64 +++++++++---------- htdocs/takepos/genimg/index.php | 3 +- .../phpunit/TakePosFunctionalTest.php | 0 4 files changed, 34 insertions(+), 36 deletions(-) rename {htdocs/takepos/test => test}/phpunit/TakePosFunctionalTest.php (100%) diff --git a/htdocs/takepos/class/actions_takepos.class.php b/htdocs/takepos/class/actions_takepos.class.php index a3ac2e78646..d592a5afdc2 100644 --- a/htdocs/takepos/class/actions_takepos.class.php +++ b/htdocs/takepos/class/actions_takepos.class.php @@ -217,7 +217,4 @@ class ActionsTakePos return $ret; } - - /* Add here any other hooked methods... */ - } diff --git a/htdocs/takepos/css/colorbox.css b/htdocs/takepos/css/colorbox.css index 5e9d4b7a79e..e51a84c8282 100644 --- a/htdocs/takepos/css/colorbox.css +++ b/htdocs/takepos/css/colorbox.css @@ -15,44 +15,44 @@ .cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;} #colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;} -/* +/* User Style: Change the following styles to modify the appearance of Colorbox. They are ordered & tabbed in a way that represents the nesting of the generated HTML. */ #cboxOverlay{background:#000; opacity: 0.9; filter: alpha(opacity = 90);} #colorbox{outline:0;} - #cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) no-repeat 0 0;} - #cboxTopCenter{height:14px; background:url(images/border.png) repeat-x top left;} - #cboxTopRight{width:14px; height:14px; background:url(images/controls.png) no-repeat -36px 0;} - #cboxBottomLeft{width:14px; height:43px; background:url(images/controls.png) no-repeat 0 -32px;} - #cboxBottomCenter{height:43px; background:url(images/border.png) repeat-x bottom left;} - #cboxBottomRight{width:14px; height:43px; background:url(images/controls.png) no-repeat -36px -32px;} - #cboxMiddleLeft{width:14px; background:url(images/controls.png) repeat-y -175px 0;} - #cboxMiddleRight{width:14px; background:url(images/controls.png) repeat-y -211px 0;} - #cboxContent{background:#fff; overflow:visible;} - .cboxIframe{background:#fff;} - #cboxError{padding:50px; border:1px solid #ccc;} - #cboxLoadedContent{margin-bottom:5px;} - #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;} - #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;} - #cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#7C7C7C;} - #cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;} +#cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) no-repeat 0 0;} +#cboxTopCenter{height:14px; background:url(images/border.png) repeat-x top left;} +#cboxTopRight{width:14px; height:14px; background:url(images/controls.png) no-repeat -36px 0;} +#cboxBottomLeft{width:14px; height:43px; background:url(images/controls.png) no-repeat 0 -32px;} +#cboxBottomCenter{height:43px; background:url(images/border.png) repeat-x bottom left;} +#cboxBottomRight{width:14px; height:43px; background:url(images/controls.png) no-repeat -36px -32px;} +#cboxMiddleLeft{width:14px; background:url(images/controls.png) repeat-y -175px 0;} +#cboxMiddleRight{width:14px; background:url(images/controls.png) repeat-y -211px 0;} +#cboxContent{background:#fff; overflow:visible;} +.cboxIframe{background:#fff;} +#cboxError{padding:50px; border:1px solid #ccc;} +#cboxLoadedContent{margin-bottom:5px;} +#cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;} +#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;} +#cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#7C7C7C;} +#cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;} - /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */ - #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; position:absolute; bottom:-29px; background:url(images/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;} - - /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */ - #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;} +/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */ +#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; position:absolute; bottom:-29px; background:url(images/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;} - #cboxPrevious{left:0px; background-position: -51px -25px;} - #cboxPrevious:hover{background-position:-51px 0px;} - #cboxNext{left:27px; background-position:-75px -25px;} - #cboxNext:hover{background-position:-75px 0px;} - #cboxClose{right:0; background-position:-100px -25px;} - #cboxClose:hover{background-position:-100px 0px;} +/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */ +#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;} - .cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;} - .cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;} - .cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;} - .cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;} \ No newline at end of file +#cboxPrevious{left:0px; background-position: -51px -25px;} +#cboxPrevious:hover{background-position:-51px 0px;} +#cboxNext{left:27px; background-position:-75px -25px;} +#cboxNext:hover{background-position:-75px 0px;} +#cboxClose{right:0; background-position:-100px -25px;} +#cboxClose:hover{background-position:-100px 0px;} + +.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;} +.cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;} +.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;} +.cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;} diff --git a/htdocs/takepos/genimg/index.php b/htdocs/takepos/genimg/index.php index 5670e0791dd..ff1b368b743 100644 --- a/htdocs/takepos/genimg/index.php +++ b/htdocs/takepos/genimg/index.php @@ -85,7 +85,8 @@ if ($query=="cat") } else if ($query=="pro") { - require_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php"); + require_once DOL_DOCUMENT_ROOT."/product/class/product.class.php"; + $objProd = new Product($db); $objProd->fetch($id); diff --git a/htdocs/takepos/test/phpunit/TakePosFunctionalTest.php b/test/phpunit/TakePosFunctionalTest.php similarity index 100% rename from htdocs/takepos/test/phpunit/TakePosFunctionalTest.php rename to test/phpunit/TakePosFunctionalTest.php From 78fbb6cd8989a6a66294b9a6470c36667d739bf7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 13:48:11 +0200 Subject: [PATCH 51/81] Rename label --- htdocs/takepos/admin/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/takepos/admin/setup.php b/htdocs/takepos/admin/setup.php index b271fc34e46..dc28008351e 100644 --- a/htdocs/takepos/admin/setup.php +++ b/htdocs/takepos/admin/setup.php @@ -248,7 +248,7 @@ print ''; print "\n"; $url='http://www.takepos.com'; print '
'; -print 'TakePOS official developers'; +print 'TakePOS original developers'; print '
'.$url.''; print ''; From 47da95fbbfd17546bddbf13273910b6b5f10d9eb Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 13:50:37 +0200 Subject: [PATCH 52/81] Fix dependency of module --- htdocs/core/modules/modTakePos.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/modules/modTakePos.class.php b/htdocs/core/modules/modTakePos.class.php index c69586e7454..bc818b9a903 100644 --- a/htdocs/core/modules/modTakePos.class.php +++ b/htdocs/core/modules/modTakePos.class.php @@ -98,7 +98,7 @@ class modTakePos extends DolibarrModules // Dependencies $this->hidden = false; // A condition to hide module - $this->depends = array('modFacture','modProduct','modCategorie'); // List of module class names as string that must be enabled if this module is enabled + $this->depends = array('always'=>"modBanque", 'always'=>"modFacture", 'always'=>"modProduct", 'always'=>'modCategorie', 'FR'=>'modBlockedLog'); // List of module class names as string that must be enabled if this module is enabled $this->requiredby = array(); // List of module ids to disable if this one is disabled $this->conflictwith = array(); // List of module class names as string this module is in conflict with $this->langfiles = array("takepos@takepos"); From f630e2100abb79ec9a3c78362eb9f44530d33452 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 28 Sep 2018 14:32:57 +0200 Subject: [PATCH 53/81] Standardize and update code --- htdocs/adherents/class/adherent_type.class.php | 6 ++++-- htdocs/asset/class/asset.class.php | 10 +++++----- htdocs/asset/class/asset_type.class.php | 6 ++++-- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/htdocs/adherents/class/adherent_type.class.php b/htdocs/adherents/class/adherent_type.class.php index a9d7fd7ead3..dffd1446af0 100644 --- a/htdocs/adherents/class/adherent_type.class.php +++ b/htdocs/adherents/class/adherent_type.class.php @@ -56,8 +56,10 @@ class AdherentType extends CommonObject */ public $libelle; - /** @var string Label */ - public $label; + /** + * @var string Adherent type label + */ + public $label; /** * @var int Subsription required (0 or 1) diff --git a/htdocs/asset/class/asset.class.php b/htdocs/asset/class/asset.class.php index dbd472af1d3..8aee71b4926 100644 --- a/htdocs/asset/class/asset.class.php +++ b/htdocs/asset/class/asset.class.php @@ -108,17 +108,17 @@ class Asset extends CommonObject public $entity; - /** - * @var string Asset label - */ - public $label; + /** + * @var string Asset label + */ + public $label; public $amount; /** * @var int Thirdparty ID */ - public $fk_soc; + public $fk_soc; /** * @var string description diff --git a/htdocs/asset/class/asset_type.class.php b/htdocs/asset/class/asset_type.class.php index df2f4c1415e..f1c6f9d771b 100644 --- a/htdocs/asset/class/asset_type.class.php +++ b/htdocs/asset/class/asset_type.class.php @@ -46,8 +46,10 @@ class AssetType extends CommonObject public $ismultientitymanaged = 1; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe - /** @var string Label */ - public $label; + /** + * @var string Asset type label + */ + public $label; /** @var string Accountancy code asset */ public $accountancy_code_asset; From 15ff9f89179c7eab67822a090bb414919949ae8d Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 28 Sep 2018 14:44:47 +0200 Subject: [PATCH 54/81] Standardize and update code --- htdocs/compta/bank/class/account.class.php | 2 +- htdocs/core/class/emailsenderprofile.class.php | 6 +++++- htdocs/cron/class/cronjob.class.php | 16 +++++++++++++--- htdocs/ecm/class/ecmfiles.class.php | 12 ++++++++++-- 4 files changed, 29 insertions(+), 7 deletions(-) diff --git a/htdocs/compta/bank/class/account.class.php b/htdocs/compta/bank/class/account.class.php index c45067740af..b9d19ba5b64 100644 --- a/htdocs/compta/bank/class/account.class.php +++ b/htdocs/compta/bank/class/account.class.php @@ -59,7 +59,7 @@ class Account extends CommonObject public $rowid; /** - * Label + * Account Label * @var string */ public $label; diff --git a/htdocs/core/class/emailsenderprofile.class.php b/htdocs/core/class/emailsenderprofile.class.php index d2bf33b5461..c5304fec31c 100644 --- a/htdocs/core/class/emailsenderprofile.class.php +++ b/htdocs/core/class/emailsenderprofile.class.php @@ -99,7 +99,11 @@ class EmailSenderProfile extends CommonObject */ public $entity; - public $label; + /** + * @var string Email Sender Profile label + */ + public $label; + public $email; public $date_creation; public $tms; diff --git a/htdocs/cron/class/cronjob.class.php b/htdocs/cron/class/cronjob.class.php index dc853e0da7d..a0db4a1f572 100644 --- a/htdocs/cron/class/cronjob.class.php +++ b/htdocs/cron/class/cronjob.class.php @@ -26,7 +26,7 @@ require_once DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php"; /** - * Crob Job class + * Cron Job class */ class Cronjob extends CommonObject { @@ -53,7 +53,12 @@ class Cronjob extends CommonObject public $jobtype; public $tms=''; public $datec=''; - public $label; + + /** + * @var string Cron Job label + */ + public $label; + public $command; public $classesname; public $objectname; @@ -1351,7 +1356,12 @@ class Cronjobline public $tms=''; public $datec=''; - public $label; + + /** + * @var string Cron Job Line label + */ + public $label; + public $jobtype; public $command; public $classesname; diff --git a/htdocs/ecm/class/ecmfiles.class.php b/htdocs/ecm/class/ecmfiles.class.php index 54077a68de6..50dbcb60dc6 100644 --- a/htdocs/ecm/class/ecmfiles.class.php +++ b/htdocs/ecm/class/ecmfiles.class.php @@ -56,7 +56,12 @@ class EcmFiles extends CommonObject */ public $ref; - public $label; // hash of file content (md5_file(dol_osencode($destfull)) + /** + * hash of file content (md5_file(dol_osencode($destfull)) + * @var string Ecm Files label + */ + public $label; + public $share; // hash for file sharing, empty by default (example: getRandomPassword(true)) /** @@ -848,7 +853,10 @@ class EcmFiles extends CommonObject class EcmfilesLine { - public $label; + /** + * @var string ECM files line label + */ + public $label; /** * @var int Entity From 574cfad48fac6c7ea8f09c8a4394894f7bd028e5 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 28 Sep 2018 14:49:34 +0200 Subject: [PATCH 55/81] Standardize and update code --- htdocs/fourn/class/fournisseur.commande.class.php | 5 +++++ htdocs/loan/class/loan.class.php | 13 +++++++++---- .../modulebuilder/template/class/myobject.class.php | 6 +++++- htdocs/product/stock/class/mouvementstock.class.php | 7 ++++++- 4 files changed, 25 insertions(+), 6 deletions(-) diff --git a/htdocs/fourn/class/fournisseur.commande.class.php b/htdocs/fourn/class/fournisseur.commande.class.php index dae79f4426e..5608fbe4b57 100644 --- a/htdocs/fourn/class/fournisseur.commande.class.php +++ b/htdocs/fourn/class/fournisseur.commande.class.php @@ -3159,7 +3159,12 @@ class CommandeFournisseurLigne extends CommonOrderLine // From llx_commande_fournisseurdet public $fk_parent_line; public $fk_facture; + + /** + * @var string supplier order line label + */ public $label; + public $rang = 0; public $special_code = 0; diff --git a/htdocs/loan/class/loan.class.php b/htdocs/loan/class/loan.class.php index e0e4b590c1a..dd066f0064c 100644 --- a/htdocs/loan/class/loan.class.php +++ b/htdocs/loan/class/loan.class.php @@ -50,7 +50,12 @@ class Loan extends CommonObject public $datestart; public $dateend; - public $label; + + /** + * @var string Loan label + */ + public $label; + public $capital; public $nbterm; public $rate; @@ -454,7 +459,7 @@ class Loan extends CommonObject return $result; } - + /** * Initialise an instance with random values. * Used to build previews or test instances. @@ -465,9 +470,9 @@ class Loan extends CommonObject function initAsSpecimen() { global $user, $langs, $conf; - + $now=dol_now(); - + // Initialise parameters $this->id = 0; $this->fk_bank = 1; diff --git a/htdocs/modulebuilder/template/class/myobject.class.php b/htdocs/modulebuilder/template/class/myobject.class.php index c5355958833..0439f78f3a5 100644 --- a/htdocs/modulebuilder/template/class/myobject.class.php +++ b/htdocs/modulebuilder/template/class/myobject.class.php @@ -116,7 +116,11 @@ class MyObject extends CommonObject */ public $entity; - public $label; + /** + * @var string label + */ + public $label; + public $amount; public $status; public $date_creation; diff --git a/htdocs/product/stock/class/mouvementstock.class.php b/htdocs/product/stock/class/mouvementstock.class.php index 76225ff8902..0d8338c4d9f 100644 --- a/htdocs/product/stock/class/mouvementstock.class.php +++ b/htdocs/product/stock/class/mouvementstock.class.php @@ -50,7 +50,12 @@ class MouvementStock extends CommonObject public $datem = ''; public $price; public $fk_user_author; - public $label; + + /** + * @var string stock movements label + */ + public $label; + public $fk_origin; public $origintype; public $inventorycode; From 61ad84d6e1baba0179d4ff4ba0456b5cf979b8cb Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 28 Sep 2018 15:19:45 +0200 Subject: [PATCH 56/81] Fix Travis Error:The closing brace for the class must go on the next line after the body --- htdocs/core/modules/modTakePos.class.php | 1 - 1 file changed, 1 deletion(-) diff --git a/htdocs/core/modules/modTakePos.class.php b/htdocs/core/modules/modTakePos.class.php index bc818b9a903..0c22b7c2dc4 100644 --- a/htdocs/core/modules/modTakePos.class.php +++ b/htdocs/core/modules/modTakePos.class.php @@ -333,5 +333,4 @@ class modTakePos extends DolibarrModules return $this->_remove($sql, $options); } - } From b183054073e9fa37615c683c240a9527e5a986c9 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Fri, 28 Sep 2018 15:57:13 +0200 Subject: [PATCH 57/81] Standardize and update code --- htdocs/societe/class/address.class.php | 14 ++++++++++++-- htdocs/societe/class/companypaymentmode.class.php | 6 +++++- htdocs/ticket/class/actions_ticket.class.php | 3 +++ 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/htdocs/societe/class/address.class.php b/htdocs/societe/class/address.class.php index 5f8d8036b22..37a350b81ff 100644 --- a/htdocs/societe/class/address.class.php +++ b/htdocs/societe/class/address.class.php @@ -39,7 +39,12 @@ class Address public $id; public $type; - public $label; + + /** + * @var string Address label + */ + public $label; + public $socid; public $name; public $address; @@ -510,7 +515,12 @@ class AddressLine public $date_creation; public $date_modification; - public $label; + + /** + * @var string stock movements label + */ + public $label; + public $name; public $address; public $zip; diff --git a/htdocs/societe/class/companypaymentmode.class.php b/htdocs/societe/class/companypaymentmode.class.php index d948ba1d237..f5ef70c2407 100644 --- a/htdocs/societe/class/companypaymentmode.class.php +++ b/htdocs/societe/class/companypaymentmode.class.php @@ -129,7 +129,11 @@ class CompanyPaymentMode extends CommonObject */ public $fk_soc; - public $label; + /** + * @var string company payment mode label + */ + public $label; + public $bank; public $code_banque; public $code_guichet; diff --git a/htdocs/ticket/class/actions_ticket.class.php b/htdocs/ticket/class/actions_ticket.class.php index 845ca8ca773..2fd26b5797b 100644 --- a/htdocs/ticket/class/actions_ticket.class.php +++ b/htdocs/ticket/class/actions_ticket.class.php @@ -60,6 +60,9 @@ class ActionsTicket public $template_dir; public $template; + /** + * @var string ticket action label + */ public $label; /** From e2f450aa8c220c4e6681fe3365915a162dae587d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 28 Sep 2018 16:15:17 +0200 Subject: [PATCH 58/81] Fix regession losing description. Rename updateligne into updateline. --- htdocs/comm/propal/card.php | 6 +- htdocs/comm/propal/class/propal.class.php | 93 +---------------------- htdocs/compta/facture/card.php | 6 +- htdocs/compta/facture/fiche-rec.php | 4 +- htdocs/contrat/class/contrat.class.php | 4 +- htdocs/core/tpl/objectline_edit.tpl.php | 4 +- htdocs/expensereport/card.php | 4 +- htdocs/supplier_proposal/card.php | 6 +- 8 files changed, 19 insertions(+), 108 deletions(-) diff --git a/htdocs/comm/propal/card.php b/htdocs/comm/propal/card.php index 781b6d0a34d..b87c1b0c066 100644 --- a/htdocs/comm/propal/card.php +++ b/htdocs/comm/propal/card.php @@ -1057,7 +1057,7 @@ if (empty($reshook)) } // Update a line within proposal - else if ($action == 'updateligne' && $usercancreate && GETPOST('save')) + else if ($action == 'updateline' && $usercancreate && GETPOST('save')) { // Define info_bits $info_bits = 0; @@ -1193,7 +1193,7 @@ if (empty($reshook)) } } - else if ($action == 'updateligne' && $usercancreate && GETPOST('cancel','alpha')) + else if ($action == 'updateline' && $usercancreate && GETPOST('cancel','alpha')) { header('Location: ' . $_SERVER['PHP_SELF'] . '?id=' . $object->id); // Pour reaffichage de la fiche en cours d'edition exit(); @@ -2283,7 +2283,7 @@ if ($action == 'create') print '
- + '; diff --git a/htdocs/comm/propal/class/propal.class.php b/htdocs/comm/propal/class/propal.class.php index 2160e77cc2d..263a425ff01 100644 --- a/htdocs/comm/propal/class/propal.class.php +++ b/htdocs/comm/propal/class/propal.class.php @@ -1620,6 +1620,7 @@ class Propal extends CommonObject $line->product_type = $objp->product_type; $line->label = $objp->custom_label; $line->desc = $objp->description; // Description ligne + $line->description = $objp->description; // Description ligne $line->qty = $objp->qty; $line->vat_src_code = $objp->vat_src_code; $line->tva_tx = $objp->tva_tx; @@ -3550,103 +3551,13 @@ class Propal extends CommonObject } /** - * Retrieve an array of propal lines + * Retrieve an array of proposal lines * * @return int >0 if OK, <0 if KO */ function getLinesArray() { return $this->fetch_lines(); - /* - $this->lines = array(); - - $sql = 'SELECT pt.rowid, pt.label as custom_label, pt.description, pt.fk_product, pt.fk_remise_except,'; - $sql.= ' pt.qty, pt.vat_src_code, pt.tva_tx, pt.localtax1_tx, pt.localtax2_tx, pt.localtax1_type, pt.localtax2_type, pt.remise_percent, pt.subprice, pt.info_bits,'; - $sql.= ' pt.total_ht, pt.total_tva, pt.total_ttc, pt.total_localtax1, pt.total_localtax2, pt.fk_product_fournisseur_price as fk_fournprice, pt.buy_price_ht as pa_ht, pt.special_code,'; - $sql.= ' pt.date_start, pt.date_end, pt.product_type, pt.rang, pt.fk_parent_line,'; - $sql.= ' pt.fk_unit,'; - $sql.= ' p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid, p.description as product_desc, p.tobatch as product_tobatch,'; - $sql.= ' p.entity,'; - $sql.= ' pt.fk_multicurrency, pt.multicurrency_code, pt.multicurrency_subprice, pt.multicurrency_total_ht, pt.multicurrency_total_tva, pt.multicurrency_total_ttc'; - $sql.= ' FROM '.MAIN_DB_PREFIX.'propaldet as pt'; - $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p ON pt.fk_product=p.rowid'; - $sql.= ' WHERE pt.fk_propal = '.$this->id; - $sql.= ' ORDER BY pt.rang ASC, pt.rowid'; - - dol_syslog(get_class($this).'::getLinesArray', LOG_DEBUG); - $resql = $this->db->query($sql); - if ($resql) - { - $num = $this->db->num_rows($resql); - $i = 0; - - while ($i < $num) - { - $obj = $this->db->fetch_object($resql); - - $this->lines[$i] = new PropaleLigne($this->db); - $this->lines[$i]->id = $obj->rowid; // for backward compatibility - $this->lines[$i]->rowid = $obj->rowid; - $this->lines[$i]->label = $obj->custom_label; - $this->lines[$i]->desc = $obj->description; - $this->lines[$i]->description = $obj->description; - $this->lines[$i]->fk_product = $obj->fk_product; - $this->lines[$i]->ref = $obj->ref; - $this->lines[$i]->product_ref = $obj->ref; - $this->lines[$i]->entity = $obj->entity; // Product entity - $this->lines[$i]->product_label = $obj->product_label; - $this->lines[$i]->product_desc = $obj->product_desc; - $this->lines[$i]->product_tobatch = $obj->product_tobatch; - $this->lines[$i]->fk_product_type = $obj->fk_product_type; // deprecated - $this->lines[$i]->product_type = $obj->product_type; - $this->lines[$i]->qty = $obj->qty; - $this->lines[$i]->subprice = $obj->subprice; - $this->lines[$i]->fk_remise_except = $obj->fk_remise_except; - $this->lines[$i]->remise_percent = $obj->remise_percent; - - $this->lines[$i]->vat_src_code = $obj->vat_src_code; - $this->lines[$i]->tva_tx = $obj->tva_tx; - $this->lines[$i]->localtax1_tx = $obj->localtax1_tx; - $this->lines[$i]->localtax2_tx = $obj->localtax2_tx; - $this->lines[$i]->localtax1_type = $obj->localtax1_type; - $this->lines[$i]->localtax2_type = $obj->localtax2_type; - $this->lines[$i]->info_bits = $obj->info_bits; - $this->lines[$i]->total_ht = $obj->total_ht; - $this->lines[$i]->total_tva = $obj->total_tva; - $this->lines[$i]->total_ttc = $obj->total_ttc; - $this->lines[$i]->total_localtax1 = $obj->total_localtax1; - $this->lines[$i]->total_localtax2 = $obj->total_localtax2; - $this->lines[$i]->fk_fournprice = $obj->fk_fournprice; - $marginInfos = getMarginInfos($obj->subprice, $obj->remise_percent, $obj->tva_tx, $obj->localtax1_tx, $obj->localtax2_tx, $this->lines[$i]->fk_fournprice, $obj->pa_ht); - $this->lines[$i]->pa_ht = $marginInfos[0]; - $this->lines[$i]->marge_tx = $marginInfos[1]; - $this->lines[$i]->marque_tx = $marginInfos[2]; - $this->lines[$i]->fk_parent_line = $obj->fk_parent_line; - $this->lines[$i]->special_code = $obj->special_code; - $this->lines[$i]->rang = $obj->rang; - $this->lines[$i]->date_start = $this->db->jdate($obj->date_start); - $this->lines[$i]->date_end = $this->db->jdate($obj->date_end); - $this->lines[$i]->fk_unit = $obj->fk_unit; - - // Multicurrency - $this->lines[$i]->fk_multicurrency = $obj->fk_multicurrency; - $this->lines[$i]->multicurrency_code = $obj->multicurrency_code; - $this->lines[$i]->multicurrency_subprice = $obj->multicurrency_subprice; - $this->lines[$i]->multicurrency_total_ht = $obj->multicurrency_total_ht; - $this->lines[$i]->multicurrency_total_tva = $obj->multicurrency_total_tva; - $this->lines[$i]->multicurrency_total_ttc = $obj->multicurrency_total_ttc; - - $i++; - } - $this->db->free($resql); - - return 1; - } - else - { - $this->error=$this->db->error(); - return -1; - }*/ } /** diff --git a/htdocs/compta/facture/card.php b/htdocs/compta/facture/card.php index 3c206b517ef..4d538bfc68b 100644 --- a/htdocs/compta/facture/card.php +++ b/htdocs/compta/facture/card.php @@ -2035,7 +2035,7 @@ if (empty($reshook)) } } - elseif ($action == 'updateligne' && $user->rights->facture->creer && ! GETPOST('cancel','alpha')) + elseif ($action == 'updateline' && $user->rights->facture->creer && ! GETPOST('cancel','alpha')) { if (! $object->fetch($id) > 0) dol_print_error($db); $object->fetch_thirdparty(); @@ -2258,7 +2258,7 @@ if (empty($reshook)) } } - else if ($action == 'updateligne' && $user->rights->facture->creer && $_POST['cancel'] == $langs->trans('Cancel')) { + else if ($action == 'updateline' && $user->rights->facture->creer && $_POST['cancel'] == $langs->trans('Cancel')) { header('Location: ' . $_SERVER["PHP_SELF"] . '?facid=' . $id); // Pour reaffichage de la fiche en cours d'edition exit(); } @@ -4514,7 +4514,7 @@ else if ($id > 0 || ! empty($ref)) print ' - + '; diff --git a/htdocs/compta/facture/fiche-rec.php b/htdocs/compta/facture/fiche-rec.php index 3b84fa693d1..a8eadd76a93 100644 --- a/htdocs/compta/facture/fiche-rec.php +++ b/htdocs/compta/facture/fiche-rec.php @@ -744,7 +744,7 @@ if (empty($reshook)) } } - elseif ($action == 'updateligne' && $user->rights->facture->creer && ! GETPOST('cancel','alpha')) + elseif ($action == 'updateline' && $user->rights->facture->creer && ! GETPOST('cancel','alpha')) { if (! $object->fetch($id) > 0) dol_print_error($db); $object->fetch_thirdparty(); @@ -1626,7 +1626,7 @@ else // Lines print ' - + '; diff --git a/htdocs/contrat/class/contrat.class.php b/htdocs/contrat/class/contrat.class.php index e76c7c34376..26641f1b602 100644 --- a/htdocs/contrat/class/contrat.class.php +++ b/htdocs/contrat/class/contrat.class.php @@ -1710,7 +1710,7 @@ class Contrat extends CommonObject else { $this->db->rollback(); - dol_syslog(get_class($this)."::updateligne Erreur -2"); + dol_syslog(get_class($this)."::updateline Erreur -2"); return -2; } } @@ -1718,7 +1718,7 @@ class Contrat extends CommonObject { $this->db->rollback(); $this->error=$this->db->error(); - dol_syslog(get_class($this)."::updateligne Erreur -1"); + dol_syslog(get_class($this)."::updateline Erreur -1"); return -1; } } diff --git a/htdocs/core/tpl/objectline_edit.tpl.php b/htdocs/core/tpl/objectline_edit.tpl.php index 88ac2ee98bb..0a5f3bc43bd 100644 --- a/htdocs/core/tpl/objectline_edit.tpl.php +++ b/htdocs/core/tpl/objectline_edit.tpl.php @@ -259,9 +259,9 @@ if (!empty($extrafieldsline)) trans('ServiceLimitedDuration').' '.$langs->trans('From').' '; ?> global->MAIN_USE_HOURMIN_IN_DATE_RANGE)?$conf->global->MAIN_USE_HOURMIN_IN_DATE_RANGE:''); - print $form->selectDate($line->date_start, 'date_start', $hourmin, $hourmin, $line->date_start?0:1, "updateligne", 1, 0); + print $form->selectDate($line->date_start, 'date_start', $hourmin, $hourmin, $line->date_start?0:1, "updateline", 1, 0); print ' '.$langs->trans('to').' '; - print $form->selectDate($line->date_end, 'date_end', $hourmin, $hourmin, $line->date_end?0:1, "updateligne", 1, 0); + print $form->selectDate($line->date_end, 'date_end', $hourmin, $hourmin, $line->date_end?0:1, "updateline", 1, 0); print '