Map ID | Source | Target | Valid | Functional Process |
---|---|---|---|---|
1 | JobPart | ECOCoPart | Yes | EWB - Get Details from a Job Template |
2 | PartCoPart | ECOCoPart | Yes | EWB - Updating a revision, Get Details from a Method |
3 | QuoteCoPart | ECOCoPart | Yes | EWB - Get Details from a Quote Template |
4 | JobAsmbl | ECOMtl | Yes | EWB - Get Details from a Job Template |
5 | JobMtl | ECOMtl | Yes | EWB - Get Details from a Job Template |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ************************************************** | |
// Custom code for RcptToInvForm | |
// Created: 7/21/2022 2:05:06 PM | |
// | |
// ************************************************** | |
extern alias Erp_Contracts_BO_ReceiptsFromMfg; | |
extern alias Erp_Contracts_BO_PkgControlIDMaint; | |
extern alias Erp_Contracts_BO_Part; | |
extern alias Erp_Contracts_BO_Warehse; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="ISO-8859-1"?> | |
<!DOCTYPE scan [<!ENTITY test SYSTEM "http://google.com/">]> | |
<scan>&test;</scan> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Data; | |
using System.Linq; | |
using System.Data.DataSetExtensions; | |
// use dtJson instead of dynJson | |
public class Program | |
{ | |
public static void Main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Erp.SerialNo.Update.PRE.ValidateVIN | |
// | |
// IsVehicleRefCat? Custom Condition | |
foreach (var ttSerialRow in ttSerialNo.Where(x => x.Added())) | |
{ | |
bool isVehiclePart = | |
(from p in Db.Part.With(LockHint.NoLock) | |
where p.Company == ttSerialRow.Company | |
&& p.PartNum == ttSerialRow.PartNum |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object searchReslts = ProcessCaller.PerformSearch(oTrans.EpiBaseForm, "JobEntryAdapter", "List" /* or Rows */, "JobNum = '" + args.ProposedValue.ToString() + "'"); | |
if (searchReslts is DataSet) | |
{ | |
DataSet searchDS = (DataSet) searchReslts; | |
if (searchDS.Tables[0].Rows.Count > 0) | |
{ | |
string jobNum = searchDS.Tables[0].Rows[0]["JobNum"].ToString(); | |
string partNum = searchDS.Tables[0].Rows[0]["PartNum"].ToString(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// All types | |
// Production | |
// NonProduction | |
bool _isProd = (this.GetEnvironmentType() == Ice.Lib.Bpm.Model.EnvironmentType.Production) ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Populate Job Costing Fields on InvcDtl when the Job is closed | |
// | |
// NOTES: | |
// Usually Job Closing Costs are populated when the Job is closed | |
// however if the Job has been closed before Invoicing the JC Costs | |
// are not populated. The manual is to open the job and close it again. | |
// Hence why this BPM was created to populate the JC Costs without | |
// having to open and close the job. | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * FROM Erp.KeyLast; | |
SELECT * FROM Erp.CompanySequence; | |
SELECT * FROM Ice.SysSequence; |