Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6666973
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:53:04+00:00 2026-05-26T02:53:04+00:00

I created a simple code that retrieves a database parameter which is (SOPNUMBE, ordernumber)

  • 0

I created a simple code that retrieves a database parameter which is (“SOPNUMBE”, ordernumber)
However, sometimes an employee will fill out an incorrect order giving me a “LIFTxxxx” value instead of a SOPNUMBE which is “ORDxxxxx” etc. Since L is before S, my ftp site processes LIFT first creating an error. I would really like to have this application ignore everything besides “SOPNUMBE”, I feel this is a pretty simple question and to me it sounds like a simple if then statement. But I am having trouble wording it. Any help would be greatly appreciated!!

public bool UpdateOrderToShipped(string order)
{
    orderNumber = order;
    string batch = ConfigurationManager.AppSettings["SuccessfulOrderBatch"];
    string statement = "UPDATE SOP10100 SET BACHNUMB = '"+ batch +"' WHERE SOPNUMBE = @SOPNUMBE";
    SqlCommand comm = new SqlCommand(statement, connectionPCI);
    comm.Parameters.Add("SOPNUMBE", orderNumber);
    try
    {
        comm.Connection.Open();
        comm.ExecuteNonQuery();
        comm.Connection.Close();
    }
    catch(Exception e)
    {
        comm.Connection.Close();
        KaplanFTP.errorMsg = "Database error: " + e.Message;
    }
    statement = "SELECT SOPTYPE FROM SOP10100 WHERE SOPNUMBE = @SOPNUMBE";
    comm.CommandText = statement;
    SqlDataAdapter da = new SqlDataAdapter(comm);
    DataTable dt = new DataTable();
    da.Fill(dt);
    soptype = dt.Rows[0]["SOPTYPE"].ToString();



    return true;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:53:05+00:00Added an answer on May 26, 2026 at 2:53 am

    LAs noted in my comment, if you aren’t comfortable changing this code with an if statement, then you probably shouldn’t be maintaining this code. (Do you know where else this code is referenced? Your change will be affecting those places.)

    But here you go…

    public bool UpdateOrderToShipped(string order)
    {
        if ((String.CompareOrdinal(order, 0, "ORD", 0, 3) == 0)
        {
           orderNumber = order;
           string batch = ConfigurationManager.AppSettings["SuccessfulOrderBatch"];
           string statement = "UPDATE SOP10100 SET BACHNUMB = '"+ batch +"' WHERE SOPNUMBE = @SOPNUMBE";
           SqlCommand comm = new SqlCommand(statement, connectionPCI);
           comm.Parameters.Add("SOPNUMBE", orderNumber);
           try
           {
               comm.Connection.Open();
               comm.ExecuteNonQuery();
               comm.Connection.Close();
           }
           catch(Exception e)
           {
               comm.Connection.Close();
               KaplanFTP.errorMsg = "Database error: " + e.Message;
           }
           statement = "SELECT SOPTYPE FROM SOP10100 WHERE SOPNUMBE = @SOPNUMBE";
           comm.CommandText = statement;
           SqlDataAdapter da = new SqlDataAdapter(comm);
           DataTable dt = new DataTable();
           da.Fill(dt);
           soptype = dt.Rows[0]["SOPTYPE"].ToString();
    
    
    
           return true;
       } else
       {
          return false;
       }
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a simple bit of JS code that creates an image
I write a simple piece of code that creates a div and assign it
The code is rather long yet simple: 100 leaky JavaScript objects are created. 10
I have create a simple grid that retrieves data from a server through php.
I need to write a program that retrieves information from a database and creates
I have a simple web application in which I have created a wizard, each
I wrote some code to connect the application to it's database, then I created
I have to create an sample code that connect to a socket server, and
Sample code that shows how to create threads using MFC declares the thread function
How to create simple PHP COMET server page displaying current time? I need code

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.