이 문서의 Microsoft Dynamics 탐색 모든 국가 모든 언어 로케일에 적용 됩니다.
증상
배송 주소 코드 값을 입력 하면 Microsoft Dynamics 탐색 2013, Post 코드, 도시 및 군 값에 판매 주문 전송 되지 않습니다 배송 주소 카드에서 Post 코드 배송 필드, 배송 도시 필드와 배송 지역 필드에 판매 주문에서. 판매 주문에서 이미 지정 된 국가/지역 번호 배송 값 및 값에서 새 배송 주소에서 국가/지역 코드 값과 다른 경우에이 문제가 발생 합니다.
해결 방법
핫픽스 정보
지원 되는 핫픽스를 Microsoft에서 출시 되었습니다. 이 문서에 설명 되어 있는 문제를 해결 하기 위한 것일 뿐입니다. 이러한 특정 문제가 발생 한 시스템에만 적용 됩니다. 이 핫픽스는 추가 테스트가 필요할 수 있습니다. 따라서이 문제의 영향이 심각 하지 다음 Microsoft Dynamics 탐색 2013 서비스 팩 또는이 핫픽스가 포함 된 다음 Microsoft Dynamics 탐색 버전까지 기다리는 것이 좋습니다.참고: 특별 한 경우 일반적으로 호출 취소 될 수도 있습니다 경우 기술 지원 담당자는 Microsoft Dynamics 및 관련 된 제품에 대 한 지원에 따른 비용이 특정 업데이트로 문제를 해결할 수 있다고 결정 합니다. 추가 지원 질문과 특정 업데이트가 필요 하지 않은 문제에는 일반 지원 비용이 적용 됩니다.
설치 정보
Microsoft는 모든 보증, 그림에 대 한 묵시적인 보증. 이 포함 되지만 상품성 또는 특정 목적에의 적합성의 묵시적된 보증에 국한 되지는 않습니다. 이 문서는 작성 하 고 프로시저를 디버깅할 데 사용 되는 도구 및 여기서 설명 하는 프로그래밍 언어에 익숙한 가정 합니다. Microsoft 지원 엔지니어는 특정 프로시저의 기능을 설명할 수 있습니다. 그러나이 예제에서는 추가 기능을 제공 하거나 특정 요구 사항에 맞도록 프로시저를 구성 하려면 수정 하지 않습니다.참고: 이 핫픽스를 설치 하기 전에 모든 Microsoft Navision 클라이언트 사용자가 시스템 로그를 확인 하십시오. Navision 응용 프로그램 서비스 (NAS) 클라이언트 사용자가 포함 됩니다. 이 핫픽스를 구현할 때 로그온 되어 있는 사용자만 클라이언트 수 있습니다.이 핫픽스를 구현 하려면 개발자 라이센스가 있어야 합니다.것을 권장 합니다 Windows 로그인 창이 나 데이터베이스 로그인 창에서 사용자 계정 "SUPER" 역할 ID를 할당할 수 사용자 계정 "SUPER" 역할 ID를 할당할 수 없습니다, 사용자 계정에 다음 권한이 있는지 확인 해야 합니다.
-
변경할 수 있는 개체에 대 한 수정 권한이 있습니다.
-
시스템 개체 ID 9015 개체 및 시스템 개체 ID 5210 개체에 대 한 Execute 권한이 있습니다.
참고: 데이터 복구를 수행 해야 할 경우가 아니면 데이터 저장소에 대 한 권한을 가질 필요가 없습니다.
코드 변경 사항
참고: 항상 테스트 코드 수정 제어 된 환경에 적용 하기 전에 프로덕션 컴퓨터에 수정 프로그램입니다.이 문제를 해결하려면 다음과 같이 하십시오.
-
위치 테이블 (14)에서 필드에서 코드를 다음과 같이 변경.기존 코드
... ValidateTableRelation=No; TestTableRelation=No } { 5715; ;County ;Text30 } { 5718; ;E-Mail ;Text80 ;ExtendedDatatype=E-Mail } { 5719; ;Home Page ;Text90 ;ExtendedDatatype=URL }// Delete the following lines. { 5720; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND ("Country/Region Code" <> '') THEN Postcode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 5724; ;Use As In-Transit ;Boolean ;OnValidate=BEGIN IF "Use As In-Transit" THEN BEGIN TESTFIELD("Require Put-away",FALSE); TESTFIELD("Require Pick",FALSE); TESTFIELD("Use Cross-Docking",FALSE);...
대체 코드
... ValidateTableRelation=No; TestTableRelation=No } { 5715; ;County ;Text30 } { 5718; ;E-Mail ;Text80 ;ExtendedDatatype=E-Mail } { 5719; ;Home Page ;Text90 ;ExtendedDatatype=URL }// Add the following line. { 5720; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 5724; ;Use As In-Transit ;Boolean ;OnValidate=BEGIN IF "Use As In-Transit" THEN BEGIN TESTFIELD("Require Put-away",FALSE); TESTFIELD("Require Pick",FALSE); TESTFIELD("Use Cross-Docking",FALSE);...
-
(18) 고객 테이블에서 필드에서 코드를 다음과 같이 변경.기존 코드
... { 32 ; ;Place of Export ;Code20 } { 33 ; ;Invoice Disc. Code ;Code20 ;TableRelation=Customer; ValidateTableRelation=No; TestTableRelation=No } { 34 ; ;Customer Disc. Group;Code20 ;TableRelation="Customer Discount Group" }// Delete the following lines. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 36 ; ;Collection Method ;Code20 } { 37 ; ;Amount ;Decimal ;AutoFormatType=1; AutoFormatExpr="Currency Code" } { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Comment Line" WHERE (Table Name=CONST(Customer),...대체 코드
... { 32 ; ;Place of Export ;Code20 } { 33 ; ;Invoice Disc. Code ;Code20 ;TableRelation=Customer; ValidateTableRelation=No; TestTableRelation=No } { 34 ; ;Customer Disc. Group;Code20 ;TableRelation="Customer Discount Group" }// Add the following line. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 36 ; ;Collection Method ;Code20 } { 37 ; ;Amount ;Decimal ;AutoFormatType=1; AutoFormatExpr="Currency Code" } { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Comment Line" WHERE (Table Name=CONST(Customer),... -
(23)의 공급 업체 테이블에 있는 필드의 코드를 다음과 같이 변경.기존 코드
... { 30 ; ;Shipment Method Code;Code10 ;TableRelation="Shipment Method" } { 31 ; ;Shipping Agent Code ;Code10 ;TableRelation="Shipping Agent" } { 33 ; ;Invoice Disc. Code ;Code20 ;TableRelation=Vendor; ValidateTableRelation=No; TestTableRelation=No }// Delete the following lines. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Comment Line" WHERE (Table Name=CONST(Vendor), No.=FIELD(No.))); Editable=No } { 39 ; ;Blocked ;Option ;OptionString=[ ,Payment,All] }...대체 코드
... { 30 ; ;Shipment Method Code;Code10 ;TableRelation="Shipment Method" } { 31 ; ;Shipping Agent Code ;Code10 ;TableRelation="Shipping Agent" } { 33 ; ;Invoice Disc. Code ;Code20 ;TableRelation=Vendor; ValidateTableRelation=No; TestTableRelation=No }// Add the following line. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Comment Line" WHERE (Table Name=CONST(Vendor), No.=FIELD(No.))); Editable=No } { 39 ; ;Blocked ;Option ;OptionString=[ ,Payment,All] }... -
판매 헤더 테이블 (36)의 필드에서 코드를 다음과 같이 변경.기존 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Bill-to County ;Text30 }// Delete the following lines. { 87 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Bill-to Country/Region Code" <> xRec."Bill-to Country/Region Code") AND (xRec."Bill-to Country/Region Code" <> '') THEN PostCode.ClearFields("Bill-to City","Bill-to Post Code","Bill-to County"); END; }// End of the lines. { 88 ; ;Sell-to Post Code ;Code20 ;TableRelation="Post Code"; OnValidate=BEGIN PostCode.ValidatePostCode( "Sell-to City","Sell-to Post Code","Sell-to County","Sell-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END;...
대체 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Bill-to County ;Text30 }// Add the following line. { 87 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 88 ; ;Sell-to Post Code ;Code20 ;TableRelation="Post Code"; OnValidate=BEGIN PostCode.ValidatePostCode( "Sell-to City","Sell-to Post Code","Sell-to County","Sell-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END;...
기존 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Sell-to County ;Text30 }// Delete the following lines. { 90 ; ;Sell-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Sell-to Country/Region Code" <> xRec."Sell-to Country/Region Code") AND (xRec."Sell-to Country/Region Code" <> '') THEN PostCode.ClearFields("Sell-to City","Sell-to Post Code","Sell-to County"); END; }// End of the lines. { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation="Post Code"; OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END;...
대체 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Sell-to County ;Text30 }// Add the following line. { 90 ; ;Sell-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation="Post Code"; OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END;...
기존 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Delete the following lines. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Ship-to Country/Region Code" <> xRec."Ship-to Country/Region Code") AND (xRec."Ship-to Country/Region Code" <> '') THEN PostCode.ClearFields("Ship-to City","Ship-to Post Code","Ship-to County"); END; }// End of the lines. { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 97 ; ;Exit Point ;Code10 ;TableRelation="Entry/Exit Point"; OnValidate=BEGIN UpdateSalesLines(FIELDCAPTION("Exit Point"),FALSE); END;...
대체 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Add the following line. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 97 ; ;Exit Point ;Code10 ;TableRelation="Entry/Exit Point"; OnValidate=BEGIN UpdateSalesLines(FIELDCAPTION("Exit Point"),FALSE); END;...
-
(38) 구매에 헤더 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Pay-to County ;Text30 }// Delete the following lines. { 87 ; ;Pay-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Pay-to Country/Region Code" <> xRec."Pay-to Country/Region Code") AND (xRec."Pay-to Country/Region Code" <> '') THEN PostCode.ClearFields("Pay-to City","Pay-to Post Code","Pay-to County"); END; }// End of the lines. { 88 ; ;Buy-from Post Code ;Code20 ;TableRelation=IF (Buy-from Country/Region Code=CONST()) "Post Code" ELSE IF (Buy-from Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Buy-from Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Buy-from City","Buy-from Post Code","Buy-from County","Buy-from Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
대체 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Pay-to County ;Text30 }// Add the following line. { 87 ; ;Pay-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 88 ; ;Buy-from Post Code ;Code20 ;TableRelation=IF (Buy-from Country/Region Code=CONST()) "Post Code" ELSE IF (Buy-from Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Buy-from Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Buy-from City","Buy-from Post Code","Buy-from County","Buy-from Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
기존 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Buy-from County ;Text30 }// Delete the following lines. { 90 ; ;Buy-from Country/Region Code;Code10;TableRelation=Country/Region; OnValidate=BEGIN IF ("Buy-from Country/Region Code" <> xRec."Buy-from Country/Region Code") AND (xRec."Buy-from Country/Region Code" <> '') THEN PostCode.ClearFields("Buy-from City","Buy-from Post Code","Buy-from County"); END; }// End of the lines. { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
대체 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Buy-from County ;Text30 }// Add the following line. { 90 ; ;Buy-from Country/Region Code;Code10;TableRelation=Country/Region } { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
기존 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Delete the following lines. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Ship-to Country/Region Code" <> xRec."Ship-to Country/Region Code") AND (xRec."Ship-to Country/Region Code" <> '') THEN PostCode.ClearFields("Ship-to City","Ship-to Post Code","Ship-to County"); END; }// End of the lines. { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 95 ; ;Order Address Code ;Code10 ;TableRelation="Order Address".Code WHERE (Vendor No.=FIELD(Buy-from Vendor No.)); OnValidate=BEGIN IF "Order Address Code" <> '' THEN BEGIN OrderAddr.GET("Buy-from Vendor No.","Order Address Code");...
대체 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Add the following line. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 95 ; ;Order Address Code ;Code10 ;TableRelation="Order Address".Code WHERE (Vendor No.=FIELD(Buy-from Vendor No.)); OnValidate=BEGIN IF "Order Address Code" <> '' THEN BEGIN OrderAddr.GET("Buy-from Vendor No.","Order Address Code");...
-
(79) 회사 정보 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... ValidateTableRelation=No; TestTableRelation=No } { 33 ; ;Ship-to County ;Text30 } { 34 ; ;E-Mail ;Text80 ;ExtendedDatatype=E-Mail } { 35 ; ;Home Page ;Text80 ;ExtendedDatatype=URL }// Delete the following lines. { 36 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; } { 37 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Ship-to Country/Region Code" <> xRec."Ship-to Country/Region Code") AND (xRec."Ship-to Country/Region Code" <> '') THEN PostCode.ClearFields("Ship-to City","Ship-to Post Code","Ship-to County"); END; }// End of the lines. { 38 ; ;IBAN ;Code50 ;OnValidate=BEGIN CheckIBAN(IBAN); END; } { 39 ; ;SWIFT Code ;Code20 }...
대체 코드
... ValidateTableRelation=No; TestTableRelation=No } { 33 ; ;Ship-to County ;Text30 } { 34 ; ;E-Mail ;Text80 ;ExtendedDatatype=E-Mail } { 35 ; ;Home Page ;Text80 ;ExtendedDatatype=URL }// Add the following lines. { 36 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 37 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region }// End of the lines. { 38 ; ;IBAN ;Code50 ;OnValidate=BEGIN CheckIBAN(IBAN); END; } { 39 ; ;SWIFT Code ;Code20 }...
-
(156) 자원 테이블에 있는 필드의 코드를 다음과 같이 변경.기존 코드
... { 55 ; ;Automatic Ext. Texts;Boolean } { 56 ; ;No. Series ;Code10 ;TableRelation="No. Series"; Editable=No } { 57 ; ;Tax Group Code ;Code10 ;TableRelation="Tax Group" } { 58 ; ;VAT Prod. Posting Group;Code10 ;TableRelation="VAT Product Posting Group" }// Delete the following lines. { 59 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 60 ; ;IC Partner Purch. G/L Acc. No.;Code20; TableRelation="IC G/L Account" } { 900 ; ;Qty. on Assembly Order;Decimal ;FieldClass=FlowField; CalcFormula=Sum("Assembly Line"."Remaining Quantity (Base)" WHERE (Document Type=CONST(Order), Type=CONST(Resource),...대체 코드
... { 55 ; ;Automatic Ext. Texts;Boolean } { 56 ; ;No. Series ;Code10 ;TableRelation="No. Series"; Editable=No } { 57 ; ;Tax Group Code ;Code10 ;TableRelation="Tax Group" } { 58 ; ;VAT Prod. Posting Group;Code10 ;TableRelation="VAT Product Posting Group" }// Add the following line. { 59 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 60 ; ;IC Partner Purch. G/L Acc. No.;Code20; TableRelation="IC G/L Account" } { 900 ; ;Qty. on Assembly Order;Decimal ;FieldClass=FlowField; CalcFormula=Sum("Assembly Line"."Remaining Quantity (Base)" WHERE (Document Type=CONST(Order), Type=CONST(Resource),... -
(167) 작업 테이블의 필드에서 코드를 다음과 같이 변경 합니다.기존 코드
... ValidateTableRelation=No; TestTableRelation=No } { 66 ; ;No. Series ;Code10 ;TableRelation="No. Series"; Editable=No } { 67 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region;// Delete the following lines. OnValidate=BEGIN IF ("Bill-to Country/Region Code" <> xRec."Bill-to Country/Region Code") AND (xRec."Bill-to Country/Region Code" <> '') THEN PostCode.ClearFields("Bill-to City","Bill-to Post Code","Bill-to County"); END;// End of the lines. Editable=Yes } { 68 ; ;Bill-to Name 2 ;Text50 } { 117 ; ;Reserve ;Option ;OptionString=Never,Optional,Always } { 1000; ;WIP Method ;Code20 ;TableRelation="Job WIP Method".Code WHERE (Valid=CONST(Yes)); OnValidate=VAR...
대체 코드
... ValidateTableRelation=No; TestTableRelation=No } { 66 ; ;No. Series ;Code10 ;TableRelation="No. Series"; Editable=No } { 67 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region; Editable=Yes } { 68 ; ;Bill-to Name 2 ;Text50 } { 117 ; ;Reserve ;Option ;OptionString=Never,Optional,Always } { 1000; ;WIP Method ;Code20 ;TableRelation="Job WIP Method".Code WHERE (Valid=CONST(Yes)); OnValidate=VAR...
-
(222) 배송 주소 테이블에 있는 필드의 코드를 다음과 같이 변경 합니다.기존 코드
... IF "Shipping Agent Code" <> xRec."Shipping Agent Code" THEN VALIDATE("Shipping Agent Service Code",''); END; } { 32 ; ;Place of Export ;Code20 }// Delete the following lines. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 54 ; ;Last Date Modified ;Date ;Editable=No } { 83 ; ;Location Code ;Code10 ;TableRelation=Location WHERE (Use As In-Transit=CONST(No)) } { 84 ; ;Fax No. ;Text30 } { 85 ; ;Telex Answer Back ;Text20 } { 91 ; ;Post Code ;Code20 ;TableRelation=IF (Country/Region Code=CONST()) "Post Code"...
대체 코드
... IF "Shipping Agent Code" <> xRec."Shipping Agent Code" THEN VALIDATE("Shipping Agent Service Code",''); END; } { 32 ; ;Place of Export ;Code20 }// Add the following line. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 54 ; ;Last Date Modified ;Date ;Editable=No } { 83 ; ;Location Code ;Code10 ;TableRelation=Location WHERE (Use As In-Transit=CONST(No)) } { 84 ; ;Fax No. ;Text30 } { 85 ; ;Telex Answer Back ;Text20 } { 91 ; ;Post Code ;Code20 ;TableRelation=IF (Country/Region Code=CONST()) "Post Code"...
-
(225) Post 코드 테이블에서 ClearFields 함수에 코드를 다음과 같이 변경.기존 코드
... CountryCode := PostCodeRec."Country/Region Code"; County := PostCodeRec.County; END; END;// Delete the following lines. PROCEDURE ClearFields@1(VAR City@1000 : Text[30];VAR PostCode@1001 : Code[20];VAR County@1002 : Text[30]); BEGIN City := ''; PostCode := ''; County := ''; END;// End of the lines. BEGIN END. } }...
대체 코드
... CountryCode := PostCodeRec."Country/Region Code"; County := PostCodeRec.County; END; END; BEGIN END. } }...
-
은행 계좌 (270) 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... END; } { 24 ; ;Language Code ;Code10 ;TableRelation=Language } { 26 ; ;Statistics Group ;Integer } { 29 ; ;Our Contact Code ;Code10 ;TableRelation=Salesperson/Purchaser }// Delete the following lines. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 37 ; ;Amount ;Decimal ;AutoFormatType=1; AutoFormatExpr="Currency Code" } { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Comment Line" WHERE (Table Name=CONST(Bank Account), No.=FIELD(No.)));...
대체 코드
... END; } { 24 ; ;Language Code ;Code10 ;TableRelation=Language } { 26 ; ;Statistics Group ;Integer } { 29 ; ;Our Contact Code ;Code10 ;TableRelation=Salesperson/Purchaser }// Add the following line. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 37 ; ;Amount ;Decimal ;AutoFormatType=1; AutoFormatExpr="Currency Code" } { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Comment Line" WHERE (Table Name=CONST(Bank Account), No.=FIELD(No.)));...
-
미리 알림 헤더 테이블 (295)의 필드에서 코드를 다음과 같이 변경.기존 코드
... END; ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;County ;Text30 }// Delete the following line. { 10 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 11 ; ;Language Code ;Code10 ;TableRelation=Language } { 12 ; ;Currency Code ;Code10 ;TableRelation=Currency; OnValidate=BEGIN IF CurrFieldNo = FIELDNO("Currency Code") THEN IF Undo THEN BEGIN...
대체 코드
... END; ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;County ;Text30 }// Add the following line. { 10 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 11 ; ;Language Code ;Code10 ;TableRelation=Language } { 12 ; ;Currency Code ;Code10 ;TableRelation=Currency; OnValidate=BEGIN IF CurrFieldNo = FIELDNO("Currency Code") THEN IF Undo THEN BEGIN...
-
재무 충전 메모 헤더 테이블 (302)에서 필드에서 코드를 다음과 같이 변경.기존 코드
... END; ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;County ;Text30 }// Delete the folloiwng lines. { 10 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '')THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 11 ; ;Language Code ;Code10 ;TableRelation=Language } { 12 ; ;Currency Code ;Code10 ;TableRelation=Currency; OnValidate=BEGIN IF CurrFieldNo = FIELDNO("Currency Code") THEN IF Undo THEN BEGIN...
대체 코드
... END; ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;County ;Text30 }// Add the following line. { 10 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 11 ; ;Language Code ;Code10 ;TableRelation=Language } { 12 ; ;Currency Code ;Code10 ;TableRelation=Currency; OnValidate=BEGIN IF CurrFieldNo = FIELDNO("Currency Code") THEN IF Undo THEN BEGIN...
-
(5050) Contact 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... { 10 ; ;Telex No. ;Text20 } { 15 ; ;Territory Code ;Code10 ;TableRelation=Territory } { 22 ; ;Currency Code ;Code10 ;TableRelation=Currency } { 24 ; ;Language Code ;Code10 ;TableRelation=Language } { 29 ; ;Salesperson Code ;Code10 ;TableRelation=Salesperson/Purchaser }// Delete the following lines. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Rlshp. Mgt. Comment Line" WHERE (Table Name=CONST(Contact), No.=FIELD(No.), Sub No.=CONST(0))); Editable=No }...대체 코드
... { 10 ; ;Telex No. ;Text20 } { 15 ; ;Territory Code ;Code10 ;TableRelation=Territory } { 22 ; ;Currency Code ;Code10 ;TableRelation=Currency } { 24 ; ;Language Code ;Code10 ;TableRelation=Language } { 29 ; ;Salesperson Code ;Code10 ;TableRelation=Salesperson/Purchaser }// Add the following line. { 35 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 38 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Rlshp. Mgt. Comment Line" WHERE (Table Name=CONST(Contact), No.=FIELD(No.), Sub No.=CONST(0))); Editable=No }... -
(5051) 연락처 밑줄과 주소 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... END; ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;County ;Text30 }// Delete the following lines. { 10 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 12 ; ;Phone No. ;Text30 ;ExtendedDatatype=Phone No. } { 13 ; ;Telex No. ;Text20 } { 14 ; ;Extension No. ;Text30 } { 15 ; ;Mobile Phone No. ;Text30 ;ExtendedDatatype=Phone No. } { 16 ; ;Pager ;Text30 }...
대체 코드
... END; ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;County ;Text30 }// Add the following line. { 10 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 12 ; ;Phone No. ;Text30 ;ExtendedDatatype=Phone No. } { 13 ; ;Telex No. ;Text20 } { 14 ; ;Extension No. ;Text30 } { 15 ; ;Mobile Phone No. ;Text30 ;ExtendedDatatype=Phone No. } { 16 ; ;Pager ;Text30 }...
-
(5200) Employee 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... { 20 ; ;Birth Date ;Date } { 21 ; ;Social Security No. ;Text30 } { 22 ; ;Union Code ;Code10 ;TableRelation=Union } { 23 ; ;Union Membership No.;Text30 } { 24 ; ;Gender ;Option ;OptionString=[ ,Female,Male] }// Delete the following lines. { 25 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 26 ; ;Manager No. ;Code20 ;TableRelation=Employee } { 27 ; ;Emplymt. Contract Code;Code10 ;TableRelation="Employment Contract" } { 28 ; ;Statistics Group Code;Code10 ;TableRelation="Employee Statistics Group" } { 29 ; ;Employment Date ;Date } { 31 ; ;Status ;Option ;OnValidate=BEGIN...대체 코드
... { 20 ; ;Birth Date ;Date } { 21 ; ;Social Security No. ;Text30 } { 22 ; ;Union Code ;Code10 ;TableRelation=Union } { 23 ; ;Union Membership No.;Text30 } { 24 ; ;Gender ;Option ;OptionString=[ ,Female,Male] }// Add the following line. { 25 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 26 ; ;Manager No. ;Code20 ;TableRelation=Employee } { 27 ; ;Emplymt. Contract Code;Code10 ;TableRelation="Employment Contract" } { 28 ; ;Statistics Group Code;Code10 ;TableRelation="Employee Statistics Group" } { 29 ; ;Employment Date ;Date } { 31 ; ;Status ;Option ;OnValidate=BEGIN... -
(5201) 대신 주소 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... { 13 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Human Resource Comment Line" WHERE (Table Name=CONST(Alternative Address), No.=FIELD(Employee No.), Alternative Address Code=FIELD(Code))); Editable=No }// Delete the following lines. { 14 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. } KEYS { { ;Employee No.,Code ;Clustered=Yes } }...대체 코드
... { 13 ; ;Comment ;Boolean ;FieldClass=FlowField; CalcFormula=Exist("Human Resource Comment Line" WHERE (Table Name=CONST(Alternative Address), No.=FIELD(Employee No.), Alternative Address Code=FIELD(Code))); Editable=No }// Add the following line. { 14 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } } KEYS { { ;Employee No.,Code ;Clustered=Yes } }... -
Union (5209) 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... { 9 ; ;Address 2 ;Text50 } { 10 ; ;County ;Text30 } { 11 ; ;Fax No. ;Text30 } { 12 ; ;E-Mail ;Text80 ;ExtendedDatatype=E-Mail } { 13 ; ;Home Page ;Text80 ;ExtendedDatatype=URL }// Delete the following lines. { 14 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. } KEYS { { ;Code ;Clustered=Yes } }...대체 코드
... { 9 ; ;Address 2 ;Text50 } { 10 ; ;County ;Text30 } { 11 ; ;Fax No. ;Text30 } { 12 ; ;E-Mail ;Text80 ;ExtendedDatatype=E-Mail } { 13 ; ;Home Page ;Text80 ;ExtendedDatatype=URL }// Add the following line. { 14 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } } KEYS { { ;Code ;Clustered=Yes } }... -
책임 센터 (5714) 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드
... PostCode.ValidatePostCode(City,"Post Code",County,"Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END; ValidateTableRelation=No; TestTableRelation=No }// Delete the folloiwng lines. { 7 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County); END; }// End of the lines. { 8 ; ;Phone No. ;Text30 ;ExtendedDatatype=Phone No. } { 9 ; ;Fax No. ;Text30 } { 10 ; ;Name 2 ;Text50 } { 11 ; ;Contact ;Text50 } { 12 ; ;Global Dimension 1 Code;Code20 ;TableRelation="Dimension Value".Code WHERE (Global Dimension No.=CONST(1));...
대체 코드
... PostCode.ValidatePostCode(City,"Post Code",County,"Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END; ValidateTableRelation=No; TestTableRelation=No }// Add the following line. { 7 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region } { 8 ; ;Phone No. ;Text30 ;ExtendedDatatype=Phone No. } { 9 ; ;Fax No. ;Text30 } { 10 ; ;Name 2 ;Text50 } { 11 ; ;Contact ;Text50 } { 12 ; ;Global Dimension 1 Code;Code20 ;TableRelation="Dimension Value".Code WHERE (Global Dimension No.=CONST(1));...
-
전송 헤더 테이블 (5740)에서 필드에서 코드를 다음과 같이 변경.기존 코드 1
... ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;Transfer-from County;Text30 } { 10 ; ;Trsf.-from Country/Region Code;Code10;// Delete the following lines. TableRelation=Country/Region; OnValidate=BEGIN IF ("Trsf.-from Country/Region Code" <> xRec."Trsf.-from Country/Region Code") AND (xRec."Trsf.-from Country/Region Code" <> '') THEN PostCode.ClearFields("Transfer-from City","Transfer-from Post Code","Transfer-from County"); END; }// End of the lines. { 11 ; ;Transfer-to Code ;Code10 ;TableRelation=Location WHERE (Use As In-Transit=CONST(No)); OnValidate=VAR Location@1000 : Record 14; Confirmed@1001 : Boolean; BEGIN...
대체 코드 1
... ValidateTableRelation=No; TestTableRelation=No } { 9 ; ;Transfer-from County;Text30 } { 10 ; ;Trsf.-from Country/Region Code;Code10;// Add the folloiwng line. TableRelation=Country/Region } { 11 ; ;Transfer-to Code ;Code10 ;TableRelation=Location WHERE (Use As In-Transit=CONST(No)); OnValidate=VAR Location@1000 : Record 14; Confirmed@1001 : Boolean; BEGIN...
기존 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 18 ; ;Transfer-to County ;Text30 }// Delete the following lines. { 19 ; ;Trsf.-to Country/Region Code;Code10;TableRelation=Country/Region; OnValidate=BEGIN IF ("Trsf.-to Country/Region Code" <> xRec."Trsf.-to Country/Region Code") AND (xRec."Trsf.-to Country/Region Code" <> '') THEN PostCode.ClearFields("Transfer-to City","Transfer-to Post Code","Transfer-to County"); END; }// End of the lines. { 20 ; ;Posting Date ;Date } { 21 ; ;Shipment Date ;Date ;OnValidate=BEGIN TestStatusOpen; TransferRoute.CalcReceiptDate( "Shipment Date",...
대체 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 18 ; ;Transfer-to County ;Text30 }// Add the following line. { 19 ; ;Trsf.-to Country/Region Code;Code10;TableRelation=Country/Region } { 20 ; ;Posting Date ;Date } { 21 ; ;Shipment Date ;Date ;OnValidate=BEGIN TestStatusOpen; TransferRoute.CalcReceiptDate( "Shipment Date",...
-
서비스 머리글 표 (5900)에서 필드에서 코드를 다음과 같이 변경.기존 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Bill-to County ;Text30 }// Delete the following lines. { 87 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Bill-to Country/Region Code" <> xRec."Bill-to Country/Region Code") AND (xRec."Bill-to Country/Region Code" <> '') THEN PostCode.ClearFields("Bill-to City","Bill-to Post Code","Bill-to County"); END; }// End of the lines. { 88 ; ;Post Code ;Code20 ;TableRelation=IF (Country/Region Code=CONST()) "Post Code" ELSE IF (Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode(City,"Post Code",County,"Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END;...
대체 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Bill-to County ;Text30 }// Add the following line. { 87 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 88 ; ;Post Code ;Code20 ;TableRelation=IF (Country/Region Code=CONST()) "Post Code" ELSE IF (Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode(City,"Post Code",County,"Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED); END;...
기존 코드 2
... TestTableRelation=No } { 89 ; ;County ;Text30 } { 90 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN VALIDATE("Ship-to Country/Region Code");// Delete the following lines. IF ("Country/Region Code" <> xRec."Country/Region Code") AND (xRec."Country/Region Code" <> '') THEN PostCode.ClearFields(City,"Post Code",County);// End of the lines. END; } { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN...
대체 코드 2
... TestTableRelation=No } { 89 ; ;County ;Text30 } { 90 ; ;Country/Region Code ;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN VALIDATE("Ship-to Country/Region Code"); END; } { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN...
기존 코드 3
... ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 } { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN// Delete the following lines. IF ("Ship-to Country/Region Code" <> xRec."Ship-to Country/Region Code") AND (xRec."Ship-to Country/Region Code" <> '') THEN PostCode.ClearFields("Ship-to City","Ship-to Post Code","Ship-to County");// End of the lines. IF "Ship-to Country/Region Code" <> '' THEN "VAT Country/Region Code" := "Ship-to Country/Region Code" ELSE "VAT Country/Region Code" := "Country/Region Code" END;...
대체 코드 3
... ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 } { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF "Ship-to Country/Region Code" <> '' THEN "VAT Country/Region Code" := "Ship-to Country/Region Code" ELSE "VAT Country/Region Code" := "Country/Region Code" END;...
-
(6650) 반환 배송 헤더 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Pay-to County ;Text30 }// Delete the following lines. { 87 ; ;Pay-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Pay-to Country/Region Code" <> xRec."Pay-to Country/Region Code") AND (xRec."Pay-to Country/Region Code" <> '') THEN PostCode.ClearFields("Pay-to City","Pay-to Post Code","Pay-to County"); END; }// End of the lines. { 88 ; ;Buy-from Post Code ;Code20 ;TableRelation=IF (Buy-from Country/Region Code=CONST()) "Post Code" ELSE IF (Buy-from Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Buy-from Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Buy-from City","Buy-from Post Code","Buy-from County","Buy-from Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
대체 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Pay-to County ;Text30 }// Add the following line. { 87 ; ;Pay-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 88 ; ;Buy-from Post Code ;Code20 ;TableRelation=IF (Buy-from Country/Region Code=CONST()) "Post Code" ELSE IF (Buy-from Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Buy-from Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Buy-from City","Buy-from Post Code","Buy-from County","Buy-from Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
기존 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Buy-from County ;Text30 }// Delete the following lines. { 90 ; ;Buy-from Country/Region Code;Code10;TableRelation=Country/Region; OnValidate=BEGIN IF ("Buy-from Country/Region Code" <> xRec."Buy-from Country/Region Code") AND (xRec."Buy-from Country/Region Code" <> '') THEN PostCode.ClearFields("Buy-from City","Buy-from Post Code","Buy-from County"); END; }// End of the lines. { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
대체 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Buy-from County ;Text30 }// Add the following line. { 90 ; ;Buy-from Country/Region Code;Code10;TableRelation=Country/Region } { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
기존 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Delete the following lines. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Ship-to Country/Region Code" <> xRec."Ship-to Country/Region Code") AND (xRec."Ship-to Country/Region Code" <> '') THEN PostCode.ClearFields("Ship-to City","Ship-to Post Code","Ship-to County"); END; }// End of the lines. { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 95 ; ;Order Address Code ;Code10 ;TableRelation="Order Address".Code WHERE (Vendor No.=FIELD(Buy-from Vendor No.)) } { 97 ; ;Entry Point ;Code10 ;TableRelation="Entry/Exit Point" } { 98 ; ;Correction ;Boolean } { 99 ; ;Document Date ;Date }...
대체 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Add the following line. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 95 ; ;Order Address Code ;Code10 ;TableRelation="Order Address".Code WHERE (Vendor No.=FIELD(Buy-from Vendor No.)) } { 97 ; ;Entry Point ;Code10 ;TableRelation="Entry/Exit Point" } { 98 ; ;Correction ;Boolean } { 99 ; ;Document Date ;Date }...
-
(6660) 반환 확인 메일 헤더 테이블의 필드에서 코드를 다음과 같이 변경.기존 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Bill-to County ;Text30 }// Delete the following lines. { 87 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Bill-to Country/Region Code" <> xRec."Bill-to Country/Region Code") AND (xRec."Bill-to Country/Region Code" <> '') THEN PostCode.ClearFields("Bill-to City","Bill-to Post Code","Bill-to County"); END; }// End of the lines. { 88 ; ;Sell-to Post Code ;Code20 ;TableRelation=IF (Sell-to Country/Region Code=CONST()) "Post Code" ELSE IF (Sell-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Sell-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Sell-to City","Sell-to Post Code","Sell-to County","Sell-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
대체 코드 1
... END; ValidateTableRelation=No; TestTableRelation=No } { 86 ; ;Bill-to County ;Text30 }// Add the following line. { 87 ; ;Bill-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 88 ; ;Sell-to Post Code ;Code20 ;TableRelation=IF (Sell-to Country/Region Code=CONST()) "Post Code" ELSE IF (Sell-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Sell-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Sell-to City","Sell-to Post Code","Sell-to County","Sell-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
기존 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Sell-to County ;Text30 }// Delete the following lines. { 90 ; ;Sell-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Sell-to Country/Region Code" <> xRec."Sell-to Country/Region Code") AND (xRec."Sell-to Country/Region Code" <> '') THEN PostCode.ClearFields("Sell-to City","Sell-to Post Code","Sell-to County"); END; }// End of the lines. { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
대체 코드 2
... END; ValidateTableRelation=No; TestTableRelation=No } { 89 ; ;Sell-to County ;Text30 }// Add the following line. { 90 ; ;Sell-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 91 ; ;Ship-to Post Code ;Code20 ;TableRelation=IF (Ship-to Country/Region Code=CONST()) "Post Code" ELSE IF (Ship-to Country/Region Code=FILTER(<>'')) "Post Code" WHERE (Country/Region Code=FIELD(Ship-to Country/Region Code)); OnValidate=BEGIN PostCode.ValidatePostCode( "Ship-to City","Ship-to Post Code","Ship-to County","Ship-to Country/Region Code",(CurrFieldNo <> 0) AND GUIALLOWED);...
기존 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Delete the following lines. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region; OnValidate=BEGIN IF ("Ship-to Country/Region Code" <> xRec."Ship-to Country/Region Code") AND (xRec."Ship-to Country/Region Code" <> '') THEN PostCode.ClearFields("Ship-to City","Ship-to Post Code","Ship-to County"); END; }// End of the lines. { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 97 ; ;Exit Point ;Code10 ;TableRelation="Entry/Exit Point" } { 98 ; ;Correction ;Boolean } { 99 ; ;Document Date ;Date } { 100 ; ;External Document No.;Code35 }...
대체 코드 3
... END; ValidateTableRelation=No; TestTableRelation=No } { 92 ; ;Ship-to County ;Text30 }// Add the following line. { 93 ; ;Ship-to Country/Region Code;Code10 ;TableRelation=Country/Region } { 94 ; ;Bal. Account Type ;Option ;OptionString=G/L Account,Bank Account } { 97 ; ;Exit Point ;Code10 ;TableRelation="Entry/Exit Point" } { 98 ; ;Correction ;Boolean } { 99 ; ;Document Date ;Date } { 100 ; ;External Document No.;Code35 }...
전제 조건
Microsoft Dynamics 탐색 도구 2013이이 핫픽스를 적용 하려면 설치 되어 있어야 합니다.
제거 정보
이 핫픽스를 제거할 수 없습니다.
상태
Microsoft는 이 문제가 '적용 대상' 섹션에 나열된 Microsoft 제품의 문제임을 확인했습니다.
참고: 이 문서는 Microsoft 지원 부서 내에서 직접 작성한 "빠른 게시" 문서입니다. 여기에 포함된 정보는 신흥 문제에 대한 응답으로 제공되었습니다. 신속히 사용할 수 있도록 작성되었으므로, 자료 입력 오류가 포함될 수 있으며 언제든지 예고없이 개정될 수 있습니다. 다른 고려 사항은 사용 약관을 참조하십시오.