Hi Anita,
Oh, sorry, now I understand.
Yes, the "FA Posting Type Setup" only gts created when you create the "Deprecaiton Book".
Without the Depreciation Book you don't need any other information for fixed assets.
In TAB 5611 - Depreciation Book
======================
OnInsert()
WITH FAPostingTypeSetup DO BEGIN
"Depreciation Book Code" := Code;
"FA Posting Type" := "FA Posting Type"::Appreciation;
"Part of Book Value" := TRUE;
"Part of Depreciable Basis" := TRUE;
"Include in Depr. Calculation" := TRUE;
"Include in Gain/Loss Calc." := FALSE;
"Depreciation Type" := FALSE;
"Acquisition Type" := TRUE;
Sign := Sign::Debit;
INSERT;
"FA Posting Type" := "FA Posting Type"::"Write-Down";
"Part of Depreciable Basis" := FALSE;
"Include in Gain/Loss Calc." := TRUE;
"Depreciation Type" := TRUE;
"Acquisition Type" := FALSE;
Sign := Sign::Credit;
INSERT;
"FA Posting Type" := "FA Posting Type"::"Custom 1";
INSERT;
"FA Posting Type" := "FA Posting Type"::"Custom 2";
INSERT;
END;