https://docs.google.com/presentation/d/1fI4yFMBgRwbvmvMBYzyhVY1jUIAjvduNh-s2F235h6s/edit?usp=sharing
This is my technical area for troubleshooting and learning new programming skills and much more. Here, you will find answers on a wide range of technologies such as AI, Machine Learning, OpenAI, Databricks, ASP.NET, C#, Python, Microsoft Access, MySQL, Amazon Web Services, SQL Server, PL/SQL, JD Edwards, SAS, Salesforce, APIs, MVC, and many others. Please feel free to visit and join the discussion!
Thursday, June 28, 2018
Wednesday, June 27, 2018
JD Edwards Main Application and Process For Interview
JD Edwards Main Tables and Program By Modules
- Sales Order Processing
Tables
F4201 - Sales Order Header
F4211- Sales Order Details
Application
P4210 - Sales order Entry Application
P4205 Shipment Confirmation
UBE
R42520 Print Pickslip
R42565 Print Invoices
R42800 Sales Update
Activity Rules
- Purchase order module
F4301 - Purchase Order Header
F4311- Purchase Order Details
Application
P4310 - Purchase order Entry Application
R43500 -Print PO
Activity Rules
- Sales Order Processing
Tables
F4201 - Sales Order Header
F4211- Sales Order Details
Application
P4210 - Sales order Entry Application
P4205 Shipment Confirmation
UBE
R42520 Print Pickslip
R42565 Print Invoices
R42800 Sales Update
Activity Rules
- Purchase order module
F4301 - Purchase Order Header
F4311- Purchase Order Details
Application
P4310 - Purchase order Entry Application
R43500 -Print PO
Activity Rules
Monday, June 11, 2018
Monday, June 4, 2018
Find Duplicate Value in Array C# Asp.net
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
int[] test = { 3, 6, 8, 10, 2, 3 ,6 };
int count = 0;
// Random ranDuplicateChange;
for (int i = 0; i < test.Length; i++)
{
count = 0;
// Console.WriteLine(" {0} :: The current number is: {1} ", i, test[i]);
for (int j = 0; j < test.Length; j++)
{
if (test[i] == test[j])
{
count++;
if (count >= 2)
{
Response.Write ("Duplicate found: {0}"+ test[j] +"<BR>");
}
}
}
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
int[] test = { 3, 6, 8, 10, 2, 3 ,6 };
int count = 0;
// Random ranDuplicateChange;
for (int i = 0; i < test.Length; i++)
{
count = 0;
// Console.WriteLine(" {0} :: The current number is: {1} ", i, test[i]);
for (int j = 0; j < test.Length; j++)
{
if (test[i] == test[j])
{
count++;
if (count >= 2)
{
Response.Write ("Duplicate found: {0}"+ test[j] +"<BR>");
}
}
}
}
}
}
Subscribe to:
Posts (Atom)