症状
电子支付功能可为您要导出在西班牙语版本的 Microsoft Dynamics 导航 2009年电子付款从日志和 Cartera (付款订单) 提供可能性。只有在出口从 Cartera 通过付款订单通过 SEPA (XML) 是可能的。应具有的可能性,SEPA 从导出日志的贷方传输 (CT) 也。按照在代码更改部分,若要解决此问题的步骤。下列产品中发生此问题︰
-
西班牙语版本的 Microsoft Dynamics 导航 2009 R2
-
西班牙语版本的 Microsoft Dynamics 导航 2009 SP1
解决方案
修补程序信息
受支持的修补程序现已从 Microsoft 推出。然而,它仅用于纠正本文中描述的问题。它仅应用于正经历此特定问题的系统。此修补程序可能会接受进一步的测试。因此,如果这个问题没有对您造成严重的影响,我们建议您等待下一个 Microsoft Dynamics 导航 2009 服务包 或包含此修复程序的下一步的 Microsoft Dynamics 导航版本。
注意: 在特殊情况下,可免收的支持电话,可免收如果技术支持专业人员对 Microsoft Dynamics 和相关的产品的费用确定某个特定的更新能够解决您的问题。照常收取支持费用将应用于其他支持问题和对于特定更新无法解决的问题。安装信息
Microsoft 提供的编程示例仅用于说明,没有任何明示或暗示的担保。这包括但不限于适销性或特定用途适用性的暗示担保。本文假定您熟悉所演示的编程语言和用于创建和调试过程的工具。Microsoft 的支持工程师可以帮助解释某个特定过程的功能。但是,他们不会修改这些示例以提供额外的功能或构建过程以满足您的特定要求。
注意:安装此修复程序之前,请验证所有 Microsoft Dynamics 导航客户端用户都注销系统。这包括 Microsoft Dynamics 导航应用程序服务器 (NAS) 服务。要实现此修补程序时,在登录的唯一客户端用户。 若要实现此修补程序,必须使用开发人员许可证。 我们建议在 Windows 登录窗口或数据库登录窗口中的用户帐户将分配该"超级"角色 id。如果不能将用户帐户分配成"超级"角色 ID,则必须验证用户帐户具有下列权限:-
您将更改该对象的修改权限。
-
为系统对象 ID™ 5210对象和系统对象 ID 9015执行权限
对象。
注意:您不需要具有对数据存储区的权限,除非您需要执行数据修复。
代码更改
注意:始终测试代码修复在受控环境中应用之前与您的生产计算机的修补程序。
若要解决此问题,请执行以下步骤:-
更改控件中 (256) 付款日志窗体中的代码,如下所示︰
现有代码 1... OnValidate=BEGIN
GenJnlManagement.GetAccounts(Rec,AccName,BalAccName); ShowShortcutDimCode(ShortcutDimCode); END; } { 11 ;Label ;0 ;0 ;0 ;0 ;ParentControl=10; ...替换代码 1
... OnValidate=BEGIN
GenJnlManagement.GetAccounts(Rec,AccName,BalAccName); ShowShortcutDimCode(ShortcutDimCode); // Add the following line. CheckRecipientBankAccount; // End of the added line. END; } { 11 ;Label ;0 ;0 ;0 ;0 ;ParentControl=10; ...现有代码 2
... SourceExpr="Reason Code" }
{ 70 ;Label ;0 ;0 ;0 ;0 ;ParentControl=69; InColumnHeading=Yes } { 24 ;Frame ;220 ;6160 ;16060;1430 ;HorzGlue=Both; VertGlue=Bottom; ShowCaption=No } ...替换代码 2
... SourceExpr="Reason Code" }
{ 70 ;Label ;0 ;0 ;0 ;0 ;ParentControl=69; InColumnHeading=Yes } // Add the following lines. { 1100012;TextBox ;71517;1100 ;1700 ;440 ;ParentControl=1; InColumn=Yes; SourceExpr="Recipient Bank Account" } { 1100013;Label ;0 ;0 ;0 ;0 ;ParentControl=1100012; InColumnHeading=Yes } // End of the added lines. { 24 ;Frame ;220 ;6160 ;16060;1430 ;HorzGlue=Both; VertGlue=Bottom; ShowCaption=No } ...现有代码 3
...CaptionML=ENU=Export;
OnPush=VAR Text1100000@1100000 : TextConst 'ENU=Nothing to export.'; BEGIN // es0006.begin GenJnlLine.RESET; ...替换代码 3
...CaptionML=ENU=Export;
OnPush=VAR Text1100000@1100000 : TextConst 'ENU=Nothing to export.'; // Add the following line. Selection@1100004 : Integer; // End of the added line. BEGIN // es0006.begin GenJnlLine.RESET; ...现有代码 4
... GenJnlLine.SETRANGE("Journal Batch Name","Journal Batch Name");
IF NOT GenJnlLine.FIND('-') THEN ERROR(Text1100000); GenJnlLine.TESTFIELD("Elect. Pmts Exported",FALSE); REPORT.RUNMODAL(REPORT::"Export Electronic Payments",TRUE,FALSE,GenJnlLine); // es0006.end END; } ...替换代码 4
... GenJnlLine.SETRANGE("Journal Batch Name","Journal Batch Name");
IF NOT GenJnlLine.FIND('-') THEN ERROR(Text1100000); // Add the following lines. Selection := STRMENU(ExportFormatTypeTxt,2); CASE Selection OF 1: BEGIN IF ExportedPmtExist(GenJnlLine) THEN IF NOT CONFIRM(ExportAgainQst) THEN EXIT; CODEUNIT.RUN(CODEUNIT::"SEPA CT-Export File",GenJnlLine); END; 2: BEGIN // End of the added lines. GenJnlLine.TESTFIELD("Elect. Pmts Exported",FALSE); REPORT.RUNMODAL(REPORT::"Export Electronic Payments",TRUE,FALSE,GenJnlLine); // Add the following lines. END; END; // End of the added lines. // es0006.end END; } ...现有代码 5
... // es0006.end
END; } { ID=65; CaptionML=ENU=Void Check; OnPush=BEGIN ...替换代码 5
... // es0006.end
END; } // Add the following lines. { ID=1100014; PushAction=RunObject; MenuLevel=1; CaptionML=ENU=Show Export File Errors; RunObject=Form 1228; RunFormLink=Journal Template Name=FIELD(Journal Template Name), Journal Batch Name=FIELD(Journal Batch Name) } // End of the added lines. { ID=65; CaptionML=ENU=Void Check; OnPush=BEGIN ... -
更改全局变量中 (256) 付款日志窗体中的代码,如下所示︰
现有代码...ShowTotalBalance@1017 : Boolean;
ShortcutDimCode@1018 : ARRAY [8] OF Code[20]; OpenedFromBatch@1019 : Boolean; LOCAL PROCEDURE UpdateBalance@1(); BEGIN ...替换代码
... ShowTotalBalance@1017 : Boolean;
ShortcutDimCode@1018 : ARRAY [8] OF Code[20]; OpenedFromBatch@1019 : Boolean; // Add the following lines. ExportFormatTypeTxt@1100001 : TextConst 'ENU=SEPA,N34.1'; ExportAgainQst@1100000 : TextConst 'ENU=One or more of the selected lines have already been exported. Do you want to export again?'; // End of the added lines. LOCAL PROCEDURE UpdateBalance@1(); BEGIN ... -
更改付款日志窗体 (256) 中的ExportedPmtExist函数中的代码,如下所示︰
现有代码... CurrForm.TotalBalance.VISIBLE := ShowTotalBalance;
END; BEGIN { <changelog> ...替换代码
... CurrForm.TotalBalance.VISIBLE := ShowTotalBalance;
END; // Add the following lines. LOCAL PROCEDURE ExportedPmtExist@1100002(GenJournalLine@1100000 : Record 81) : Boolean; VAR GenJnlLine3@1100001 : Record 81; BEGIN GenJnlLine3.COPYFILTERS(GenJnlLine); GenJnlLine3.SETRANGE("Exported to Payment File",TRUE); EXIT(NOT GenJnlLine3.ISEMPTY); END; LOCAL PROCEDURE CheckRecipientBankAccount@1100000(); VAR VendorBankAccount@1100000 : Record 288; CustomerBankAccount@1100001 : Record 287; BEGIN IF ("Account No." <> xRec."Account No.") THEN VALIDATE("Recipient Bank Account",''); END; // End of the added lines. BEGIN { <changelog> ... -
更改属性中 (256) 中的付款日志页中的代码,如下所示︰
现有代码...END;
END; } { 1900000004;0 ;ActionContainer; ActionContainerType=ActionItems } { 40 ;1 ;ActionGroup; ...替换代码
... END;
END; } // Add the following lines. { 1100050 ;2 ;ActionGroup; CaptionML=ENU=Electronic Payments } { 1100051 ;3 ;Action ; CaptionML=ENU=Export; OnAction=VAR Text1100000@1100000 : TextConst 'ENU=Nothing to export.'; Selection@1100004 : Integer; BEGIN // es0006.begin GenJnlLine.RESET; GenJnlLine := Rec; GenJnlLine.SETRANGE("Journal Template Name","Journal Template Name"); GenJnlLine.SETRANGE("Journal Batch Name","Journal Batch Name"); IF NOT GenJnlLine.FIND('-') THEN ERROR(Text1100000); Selection := STRMENU(ExportFormatTypeTxt,2); CASE Selection OF 1: BEGIN IF ExportedPmtExist(GenJnlLine) THEN IF NOT CONFIRM(ExportAgainQst) THEN EXIT; CODEUNIT.RUN(CODEUNIT::"SEPA CT-Export File",GenJnlLine); END; 2: BEGIN GenJnlLine.TESTFIELD("Elect. Pmts Exported",FALSE); REPORT.RUNMODAL(REPORT::"Export Electronic Payments",TRUE,FALSE,GenJnlLine); END; END; // es0006.end END; } { 1100052 ;3 ;Action ; CaptionML=ENU=Void; OnAction=VAR VoidElecPayments@1101100000 : Report 10722; BEGIN // es0006.begin GenJnlLine.RESET; GenJnlLine := Rec; GenJnlLine.SETRANGE("Journal Template Name","Journal Template Name"); GenJnlLine.SETRANGE("Journal Batch Name","Journal Batch Name"); CLEAR(VoidElecPayments); VoidElecPayments.SETTABLEVIEW(GenJnlLine); VoidElecPayments.RUNMODAL; // es0006.end END; } { 1100014 ;3 ;Action ; CaptionML=ENU=Show Export File Errors; RunObject=Page 1228; RunFormLink=Journal Template Name=FIELD(Journal Template Name),Journal Batch Name=FIELD(Journal Batch Name) } // End of the added lines. { 1900000004;0 ;ActionContainer; ActionContainerType=ActionItems } { 40 ;1 ;ActionGroup; ... -
更改控件中 (256) 中的付款日志页中的代码,如下所示︰
现有代码 1...OnValidate=BEGIN
GenJnlManagement.GetAccounts(Rec,AccName,BalAccName); ShowShortcutDimCode(ShortcutDimCode); END; } ...替换代码 1
...OnValidate=BEGIN
GenJnlManagement.GetAccounts(Rec,AccName,BalAccName); ShowShortcutDimCode(ShortcutDimCode); // Add the following line. CheckRecipientBankAccount; // End of the added line. END; } ...现有代码 2
...SourceExpr="Reason Code";
Visible=FALSE } { 24 ;1 ;Group } { 1903561801;2;Group ; ...替换代码 2
...SourceExpr="Reason Code";
Visible=FALSE } // Add the following lines. { 1100012;2;Field ; SourceExpr="Recipient Bank Account" } // End of the added lines. { 24 ;1 ;Group } { 1903561801;2;Group ; ... -
更改全局变量中 (256) 中的付款日志页中的代码,如下所示︰
现有代码...ShowTotalBalance@1017 : Boolean;
ShortcutDimCode@1018 : ARRAY [8] OF Code[20]; OpenedFromBatch@1019 : Boolean; BalanceVisible@19073040 : Boolean INDATASET; TotalBalanceVisible@19063333 : Boolean INDATASET; ...替换代码
...ShowTotalBalance@1017 : Boolean;
ShortcutDimCode@1018 : ARRAY [8] OF Code[20]; OpenedFromBatch@1019 : Boolean; // Add the following lines. ExportFormatTypeTxt@1100001 : TextConst 'ENU=SEPA,N34.1'; ExportAgainQst@1100000 : TextConst 'ENU=One or more of the selected lines have already been exported. Do you want to export again?'; // End of the added lines. BalanceVisible@19073040 : Boolean INDATASET; TotalBalanceVisible@19063333 : Boolean INDATASET; ... -
更改付款日志页 (256) 中的ExportedPmtExist函数中的代码,如下所示︰
现有代码...TotalBalanceVisible := ShowTotalBalance;
END; LOCAL PROCEDURE CurrentJnlBatchNameOnAfterVali@19002411(); BEGIN CurrPage.SAVERECORD; ...替换代码
...TotalBalanceVisible := ShowTotalBalance;
END; // Add the following lines. LOCAL PROCEDURE ExportedPmtExist@1100002(GenJournalLine@1100000 : Record 81) : Boolean; VAR GenJnlLine3@1100001 : Record 81; BEGIN GenJnlLine3.COPYFILTERS(GenJnlLine); GenJnlLine3.SETRANGE("Exported to Payment File",TRUE); EXIT(NOT GenJnlLine3.ISEMPTY); END; LOCAL PROCEDURE CheckRecipientBankAccount@1100000(); VAR VendorBankAccount@1100000 : Record 288; CustomerBankAccount@1100001 : Record 287; BEGIN IF ("Account No." <> xRec."Account No.") THEN VALIDATE("Recipient Bank Account",''); END; // End of the added lines. LOCAL PROCEDURE CurrentJnlBatchNameOnAfterVali@19002411(); BEGIN CurrPage.SAVERECORD; ... -
更改属性中 SEPA CT pain.001.001.03 xmlport (1000) 中的代码,如下所示︰
现有代码...ELEMENTS
{ { [{0EA1BA75-FB56-4C05-946C-A299E4809E84}]; ;Document ;Element ;Table ; SourceTable=Table81 } { [{596E5521-E230-4D9C-B0F7-DF29388F515B}];1 ;xmlns ;Attribute;Text ; VariableName=XMLNamespace } ...替换代码
... ELEMENTS
{ { [{0EA1BA75-FB56-4C05-946C-A299E4809E84}]; ;Document ;Element ;Table ; SourceTable=Table81; // Add the following line. MaxOccurs=Once } // End of the added line. { [{596E5521-E230-4D9C-B0F7-DF29388F515B}];1 ;xmlns ;Attribute;Text ; VariableName=XMLNamespace } ... -
更改 SEPA CT pain.001.001.03 xmlport (1000) 中的InitData函数中的代码,如下所示︰
现有代码... PaymentGroupNo@1000 : Integer;
BEGIN SEPACTFillExportBuffer.FillExportBuffer("Gen. Journal Line",PaymentExportData); PaymentExportData.GetRemittanceTexts(TempPaymentExportRemittanceTxt); NoOfTransfers := FORMAT(PaymentExportData.COUNT); ...替换代码
...PaymentGroupNo@1000 : Integer;
BEGIN SEPACTFillExportBuffer.FillExportBuffer("Gen. Journal Line",PaymentExportData); // Add the following lines. "Gen. Journal Line".SETRANGE("Journal Template Name",''); "Gen. Journal Line".SETRANGE("Journal Batch Name",''); // End of the added lines. PaymentExportData.GetRemittanceTexts(TempPaymentExportRemittanceTxt); NoOfTransfers := FORMAT(PaymentExportData.COUNT); ...
系统必备组件
您必须具有要应用此修补程序的安装以下产品之一︰
-
西班牙语版本的 Microsoft Dynamics 导航 2009 R2
-
西班牙语版本的 Microsoft Dynamics 导航 2009 SP1
删除信息
您不能删除此修补程序。
状态
Microsoft 已经确认这是“适用于”一节中列出的 Microsoft 产品中的问题。
注意:这是直接从创建 Microsoft 支持部门内的"快速发布"的文章。此处包含的信息是作为为了响应新出现的问题而提供的。由于以使其可用的速度,而材料可能包含印刷错误,恕不另行通知,随时可能进行修订。其他考虑因素,请参阅使用条款。