증상
송장 관련된 지불 트랜잭션을 적용 한 경우 Microsoft Dynamics 탐색 2009의 이탈리아어 버전에 게시할 수 있는 경우 공급 업체 계정 자재 명세서 목록 보고서의 최신 버전을 설치 하면 공급 업체 계정 자재 명세서 목록 보고서는 지불을 표시 되지 않습니다. 가깝게 청구서만 표시 됩니다. 이 문제를 해결 하려면 코드 변경 섹션의 단계를 따릅니다. 다음 제품에이 문제가 발생합니다.
-
이탈리아어 버전의 Microsoft Dynamics 탐색 2009 R2
-
이탈리아어 버전의 Microsoft Dynamics 탐색 2009 SP1
해결 방법
핫픽스 정보
지원 되는 핫픽스를 Microsoft에서 출시 되었습니다. 이 문서에 설명 되어 있는 문제를 해결 하기 위한 것일 뿐입니다. 이러한 특정 문제가 발생 한 시스템에만 적용 됩니다. 이 핫픽스는 추가 테스트가 필요할 수 있습니다. 따라서이 문제의 영향이 심각 하지 다음 Microsoft Dynamics 탐색 2009 서비스 팩 또는이 핫픽스가 포함 된 다음 Microsoft Dynamics 탐색 버전까지 기다리는 것이 좋습니다.참고: 특별 한 경우 일반적으로 호출 취소 될 수도 있습니다 경우 기술 지원 담당자는 Microsoft Dynamics 및 관련 된 제품에 대 한 지원에 따른 비용이 특정 업데이트로 문제를 해결할 수 있다고 결정 합니다. 추가 지원 질문과 특정 업데이트가 필요 하지 않은 문제에는 일반 지원 비용이 적용 됩니다.
설치 정보
Microsoft는 모든 보증, 그림에 대 한 묵시적인 보증. 이 포함 되지만 상품성 또는 특정 목적에의 적합성의 묵시적된 보증에 국한 되지는 않습니다. 이 문서는 작성 하 고 프로시저를 디버깅할 데 사용 되는 도구 및 여기서 설명 하는 프로그래밍 언어에 익숙한 가정 합니다. Microsoft 지원 엔지니어는 특정 프로시저의 기능을 설명할 수 있습니다. 그러나이 예제에서는 추가 기능을 제공 하거나 특정 요구 사항에 맞도록 프로시저를 구성 하려면 수정 하지 않습니다.참고: 이 핫픽스를 설치 하기 전에 모든 Microsoft Dynamics 탐색 클라이언트 사용자가 시스템 로그를 확인 하십시오. Microsoft Dynamics 탐색 응용 프로그램 서버 (NAS) 서비스가 포함 됩니다. 이 핫픽스를 구현할 때 로그온 되어 있는 사용자만 클라이언트 수 있습니다.이 핫픽스를 구현 하려면 개발자 라이센스가 있어야 합니다.것을 권장 합니다 Windows 로그인 창이 나 데이터베이스 로그인 창에서 사용자 계정 "SUPER" 역할 ID를 할당할 수 사용자 계정 "SUPER" 역할 ID를 할당할 수 없습니다, 사용자 계정에 다음 권한이 있는지 확인 해야 합니다.
-
변경할 수 있는 개체에 대 한 수정 권한이 있습니다.
-
시스템 개체 ID 9015 및 시스템 개체 ID 5210 개체에 대 한 실행 권한개체입니다.
참고: 데이터 복구를 수행 해야 할 경우가 아니면 데이터 저장소에 대 한 권한을 가질 필요가 없습니다.
코드 변경 사항
참고: 항상 테스트 코드 수정 제어 된 환경에 적용 하기 전에 프로덕션 컴퓨터에 수정 프로그램입니다.이 문제를 해결하려면 다음과 같이 하십시오.
-
공급 업체 계정 자재 명세서 목록 보고서 (12116)의 코드를 다음과 같이 변경.기존 코드 1
...DataItemTableView=SORTING(Vendor Ledger Entry No.,Entry Type,Posting Date) WHERE(Entry Type=CONST(Application)); OnPreDataItem=BEGIN// Delete the following line.VendLedgEntry1.COPYFILTER("Posting Date", "Detailed Vendor Ledg. Entry"."Posting Date");// End of the deleted line. END; OnAfterGetRecord=BEGIN...
대체 코드 1
...DataItemTableView=SORTING(Vendor Ledger Entry No.,Entry Type,Posting Date) WHERE(Entry Type=CONST(Application)); OnPreDataItem=BEGIN// Add the following line.FindAppliedDtldVendLedgEntry(VendLedgEntry1."Entry No.");// End of the added line. END; OnAfterGetRecord=BEGIN...
기존 코드 2
... END; OnAfterGetRecord=BEGIN// Delete the following lines.VendLedgEntry3.GET("Applied Vend. Ledger Entry No.");VendLedgEntry3.CALCFIELDS("Original Amt. (LCY)");ClosedByAmountLCY := "Amount (LCY)";TotalForVendor += "Amount (LCY)"; TotalClosedByAmntLCY += "Amount (LCY)";END;DataItemLink=Vendor Ledger Entry No.=FIELD(Entry No.);// End of the deleted lines. } SECTIONS {...
대체 코드 2
... END; OnAfterGetRecord=BEGIN// Add the following lines.IF NOT TempDetailedVendorLedgEntryApplied.GET("Entry No.") THENCurrReport.SKIP;VendLedgEntry3.GET("Vendor Ledger Entry No.");VendLedgEntry3.CALCFIELDS("Original Amt. (LCY)");AppliedDocumentTypeText := FORMAT(VendLedgEntry3."Document Type");ClosedByAmountLCY := "Amount (LCY)";TotalForVendor -= "Amount (LCY)";TotalClosedByAmntLCY -= "Amount (LCY)";END;// End of the added lines. } SECTIONS {...
기존 코드 3
...SectionWidth=27750; SectionHeight=846; OnPreSection=BEGINIF (VendLedgEntry1."Document Type" = VendLedgEntry1."Document Type"::Payment)OR (VendLedgEntry1."Document Type" = VendLedgEntry1."Document Type"::" ") THENCurrReport.SHOWOUTPUT(FALSE)ELSECurrReport.SHOWOUTPUT(TRUE); IF ("Unapplied by Entry No." <> 0) THEN CurrReport.SHOWOUTPUT(FALSE); END;...
대체 코드 3
...SectionWidth=27750; SectionHeight=846; OnPreSection=BEGIN// Delete the following lines.IF (VendLedgEntry1."Document Type" = VendLedgEntry1."Document Type"::Payment)OR (VendLedgEntry1."Document Type" = VendLedgEntry1."Document Type"::" ") THENCurrReport.SHOWOUTPUT(FALSE)ELSECurrReport.SHOWOUTPUT(TRUE);// End of the deleted lines. IF ("Unapplied by Entry No." <> 0) THEN CurrReport.SHOWOUTPUT(FALSE); END;...
기존 코드 4
... { 1130070;TextBox ;19200;0 ;1800 ;423 ;SourceExpr=ClosedByAmountLCY; DataSetFieldName=ClosedByAmountLCY_Control1130070 } { 1130071;TextBox ;5550 ;0 ;1500 ;423 ;HorzAlign=Right;// Delete the following lines.SourceExpr="Document No.";DataSetFieldName=Detailed_Vendor_Ledg__Entry__Document_No__ }{ 1130072;TextBox ;1950 ;0 ;1350 ;423 ;SourceExpr="Document Type";// End of the deleted lines. DataSetFieldName=Detailed_Vendor_Ledg__Entry__Document_Type_ } { 1130073;TextBox ;0 ;0 ;1800 ;423 ;CaptionML=[ENU=PostingDate; ITA=Data di registrazione];...대체 코드 4
...{ 1130070;TextBox ;19200;0 ;1800 ;423 ;SourceExpr=ClosedByAmountLCY; DataSetFieldName=ClosedByAmountLCY_Control1130070 } { 1130071;TextBox ;5550 ;0 ;1500 ;423 ;HorzAlign=Right;// Add the following lines.SourceExpr=VendLedgEntry3."Document No.";DataSetFieldName=Detailed_Vendor_Ledg__Entry__Document_No__ }{ 1130072;TextBox ;1950 ;0 ;1350 ;423 ;SourceExpr=AppliedDocumentTypeText;// End of the added lines. DataSetFieldName=Detailed_Vendor_Ledg__Entry__Document_Type_ } { 1130073;TextBox ;0 ;0 ;1800 ;423 ;CaptionML=[ENU=PostingDate; ITA=Data di registrazione];...기존 코드 5
... DataSetFieldName=Detailed_Vendor_Ledg__Entry__Document_Type_ } { 1130073;TextBox ;0 ;0 ;1800 ;423 ;CaptionML=[ENU=PostingDate; ITA=Data di registrazione];// Delete the following line.SourceExpr=FORMAT("Posting Date");// End of the deleted line. DataSetFieldName=Detailed_Vendor_Ledg__Entry__Posting_Date_ } { 1130074;TextBox ;7200 ;0 ;1650 ;423 ;SourceExpr=VendLedgEntry3."Document Occurrence"; DataSetFieldName=VendLedgEntry3__Document_Occurrence_ }...
대체 코드 5
...DataSetFieldName=Detailed_Vendor_Ledg__Entry__Document_Type_ } { 1130073;TextBox ;0 ;0 ;1800 ;423 ;CaptionML=[ENU=PostingDate; ITA=Data di registrazione];// Add the following line.SourceExpr=FORMAT(VendLedgEntry3."Posting Date");// End of the added line. DataSetFieldName=Detailed_Vendor_Ledg__Entry__Posting_Date_ } { 1130074;TextBox ;7200 ;0 ;1650 ;423 ;SourceExpr=VendLedgEntry3."Document Occurrence"; DataSetFieldName=VendLedgEntry3__Document_Occurrence_ }...
기존 코드 6
...ForeColor=65535; SourceExpr="Unapplied by Entry No."; DataSetFieldName=Detailed_Vendor_Ledg__Entry__Unapplied_by_Entry_No__ } } } { PROPERTIES...
대체 코드 6
... ForeColor=65535; SourceExpr="Unapplied by Entry No."; DataSetFieldName=Detailed_Vendor_Ledg__Entry__Unapplied_by_Entry_No__ }// Add the following lines.{ 1130178;TextBox ;21150;0 ;1800 ;423 ;Visible=No;SourceExpr="Vendor Ledger Entry No.";DataSetFieldName=Detailed_Vendor_Ledg__Entry_Vendor_Ledger_Entry_No_ }// End of the added lines. } } { PROPERTIES...
-
공급 업체 계정 자재 명세서 목록 보고서 (12116)에 전역 변수의 코드를 다음과 같이 변경.기존 코드 1
...VAR Text000@1130000 : TextConst 'ENU=Please specify the Ending Date;ITA=Specificare Data fine'; VendorBillLine@1130001 : Record 12182; EndingDate@1130002 : Date; OnlyOpened@1130003 : Boolean; RemainingAmountLCY@1130004 : Decimal;...
대체 코드 1
...VAR Text000@1130000 : TextConst 'ENU=Please specify the Ending Date;ITA=Specificare Data fine'; VendorBillLine@1130001 : Record 12182;// Add the following line.TempDetailedVendorLedgEntryApplied@1130013 : TEMPORARY Record 380;// End of the added line. EndingDate@1130002 : Date; OnlyOpened@1130003 : Boolean; RemainingAmountLCY@1130004 : Decimal;...
기존 코드 2
...TotalVendorBillAmnt@1130010 : Decimal; VendLedgEntry3@1130011 : Record 25; VendorLedgerEmtryTypeINT@1102601000 : Integer; BEGIN END....
대체 코드 2
...TotalVendorBillAmnt@1130010 : Decimal; VendLedgEntry3@1130011 : Record 25; VendorLedgerEmtryTypeINT@1102601000 : Integer;// Add the following lines.AppliedDocumentTypeText@1170000000 : Text[30];LOCAL PROCEDURE FindAppliedDtldVendLedgEntry@1130007(VendorLedgerEntryNo@1130000 : Integer);VARDetailedVendorLedgEntry@1130001 : Record 380;DetailedVendorLedgEntryApplied@1130003 : Record 380;BEGINTempDetailedVendorLedgEntryApplied.RESET;TempDetailedVendorLedgEntryApplied.DELETEALL;DetailedVendorLedgEntry.SETRANGE("Vendor Ledger Entry No.",VendorLedgerEntryNo);DetailedVendorLedgEntry.SETRANGE("Entry Type",DetailedVendorLedgEntry."Entry Type"::Application);DetailedVendorLedgEntry.SETRANGE(Unapplied,FALSE);DetailedVendorLedgEntryApplied.SETRANGE("Entry Type",DetailedVendorLedgEntryApplied."Entry Type"::Application);IF DetailedVendorLedgEntry.FINDSET THENREPEATDetailedVendorLedgEntryApplied.SETRANGE("Applied Vend. Ledger Entry No.",DetailedVendorLedgEntry."Applied Vend. Ledger Entry No.");DetailedVendorLedgEntryApplied.SETFILTER("Vendor Ledger Entry No.",'<>%1',VendorLedgerEntryNo);DetailedVendorLedgEntryApplied.SETRANGE("Vendor No.",DetailedVendorLedgEntry."Vendor No.");DetailedVendorLedgEntryApplied.SETRANGE("Transaction No.",DetailedVendorLedgEntry."Transaction No.");IF DetailedVendorLedgEntryApplied.FINDSET THENREPEATTempDetailedVendorLedgEntryApplied := DetailedVendorLedgEntryApplied;IF TempDetailedVendorLedgEntryApplied.INSERT THEN;UNTIL DetailedVendorLedgEntryApplied.NEXT = 0;UNTIL DetailedVendorLedgEntry.NEXT = 0;END;// End of the added lines. BEGIN END....
-
공급 업체 계정 자재 명세서 목록 보고서 (12116)의 코드를 다음과 같이 변경.기존 코드
...</TableCell> </TableCells> <Visibility>// Delete the following line.<Hidden>=IIF((Count(Fields!Detailed_Vendor_Ledg__Entry_Vendor_Ledger_Entry_No_.Value)=Rownumber("table1_Group3")),// End of the deleted line. FALSE,TRUE)</Hidden> </Visibility> </TableRow>...
대체 코드
... </TableCell> </TableCells> <Visibility>// Add the following line.<Hidden>=IIF((Count(Fields!Detailed_Vendor_Ledg__Entry_Entry_No_.Value)=Rownumber("table1_Group3")),// End of the added line. FALSE,TRUE)</Hidden> </Visibility> </TableRow>...
전제 조건
이 핫픽스를 적용 하려면 설치한 다음 제품 중 하나가 있어야 합니다.
-
이탈리아어 버전의 Microsoft Dynamics 탐색 2009 R2
-
이탈리아어 버전의 Microsoft Dynamics 탐색 2009 SP1
제거 정보
이 핫픽스를 제거할 수 없습니다.
상태
Microsoft는 이 문제가 '적용 대상' 섹션에 나열된 Microsoft 제품의 문제임을 확인했습니다.
참고: 이 문서는 Microsoft 지원 부서 내에서 직접 작성한 "빠른 게시" 문서입니다. 여기에 포함된 정보는 신흥 문제에 대한 응답으로 제공되었습니다. 신속히 사용할 수 있도록 작성되었으므로, 자료 입력 오류가 포함될 수 있으며 언제든지 예고없이 개정될 수 있습니다. 다른 고려 사항은 사용 약관을참조 하십시오.