I've written an extension to add the Customer Payment Receipt report directly on the Customer card.
pageextension 50104 AddCustomerReport extends "Customer Card" { actions { addlast(reporting) { action(CustomerPaymentReceipt) { Caption = 'Customer Payment Receipt'; ApplicationArea = All; Image = Receipt; trigger OnAction(); var rep: Report "Customer - Payment Receipt"; begin rep.RunModal(); end; } } } }