Following all suggested remedies, still my method is not getting called.
The method being called is in the same controller. TEST can be called either by itself through a link on a separate page, or when a user selects a saved "TEST" view that they wish to load again. In this case, the below LoadUserSelectedTransaction is called.
I've tried specifying the controller to use with no luck, hard coding requestType, [HTTPPOST] attribute, removing FormMethod.Post from the view
View is as follows:
using (Html.BeginForm("LoadUserSelectedTransaction", "TransactionList", FormMethod.Post)) 
Controller is as follows
    public class TransactionListController : Controller
            {
            public static bool userLoaded = false;
            public static string userFriendlyName;
            public static string transaction;
            public static string requestType;
            //[HttpPost]
            public ActionResult LoadUserSelectedTransaction(FormCollection formdata)
            {
                userLoaded = true;
                userFriendlyName = formdata["UserLoadedTransaction"];
                var model = new MyTransactionsDBHandle();
                transaction = model.ReturnUserLoadedTransaction(userFriendlyName, User.Identity.Name);
                var myTransaction = new MyTransactionsModel();
                requestType = myTransaction.ReturnRequestType(transaction);
                if (requestType == "")
                {
                    requestType = formdata["CurrentTransactionPage"];
                }
                // need to check for duplicate transactions types, such as CC_SALE also being a POS Surcharge transaction
                // CC_SALE has EMV, ship to, bill to etc, POS Surcharge does not
                // CC_VOID with and without card - With card will have NGT_TRACKDATA tag
                // DB_SALE with and without cashback - Cashback will have NGT_DC_CASH_BACK_AMOUNT tag
                if (requestType == "DB_SALE")
                {
                    if (transaction.Contains("NGT_DC_CASH_BACK_AMOUNT"))
                        return RedirectToAction("DB_Sale_With_Cash_Back");
                    return RedirectToAction("DB_Sale_No_Cash_Back");
                }
                else if (requestType == "CC_SALE")
                {
                    if (transaction.Contains("NGT_EMV_DATA"))
                        return RedirectToAction(requestType);
                    return RedirectToAction("CC_POS_Surcharge");
                }
                else if (requestType == "CC_VOID")
                {
                    if (transaction.Contains("NGT_TRACKDATA"))
                        return RedirectToAction(requestType);
                    return RedirectToAction("CC_Void_No_Card");
                }
                else
                    return RedirectToAction(requestType);
            }
            }
Method being called:
public ActionResult TEST(FormCollection formdata)
        {
            ViewModel model = new ViewModel();
            if (userLoaded) // static in same controller
            {
                userLoaded = false;
                if (requestType == "My Transactions")
                {
                    var currentTransactionPage = formdata["CurrentTransactionPage"];
                    return RedirectToAction(currentTransactionPage);
                }
                model.myTransactions.ParseUserTransactionString(transaction, model);
            }
            return View(model);
        }
Any suggestions are greatly appreciated, thanks in advance!
RouteConfig.cs
public class RouteConfig
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "User", action = "Login", id = UrlParameter.Optional }
        );
        routes.MapRoute(
           name: "ClientTablePages",
           url: "{controller}/{action}/{pageNumber}",
           defaults: new { controller = "Client", action = "Index", page = UrlParameter.Optional }
        );
        routes.MapRoute(
          name: "DivisionTablePages",
          url: "{controller}/{action}/{pageNumber}",
          defaults: new { controller = "Division", action = "Index", page = UrlParameter.Optional }
       );
        routes.MapRoute(
          name: "MerchantTablePages",
          url: "{controller}/{action}/{pageNumber}",
          defaults: new { controller = "Merchant", action = "Index", page = UrlParameter.Optional }
       );
        routes.MapRoute(
          name: "TerminalTablePages",
          url: "{controller}/{action}/{pageNumber}",
          defaults: new { controller = "Terminal", action = "Index", page = UrlParameter.Optional }
       );
        routes.MapRoute(
            name: "ResetPassword",
            url: "{controller}/{action}/{id}",
            defaults: new { Controller = "User", action = "UserResetPassword", id = UrlParameter.Optional }
        );
        routes.MapRoute(
            name: "MyTransactions",
            url: "{controller}/{action}/{pageNumber}",
            defaults: new { Controller = "MyTransactions", action = "MyProfile", page = UrlParameter.Optional }
        );
    }
}




 
    