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 8941041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:12:21+00:00 2026-06-15T11:12:21+00:00

I am trying to use the results from one recordset as the basis of

  • 0

I am trying to use the results from one recordset as the basis of a second recordsets results.
Q1 Gives me the correct summed inventory by part which I am attempting to pass into another query. (When I query the sum directly as part of Q2, the summed values are incorrect and seems to have something to do with the forecast table linkage. Is it possible to create a subquery or pass the information directly. (I am an intro user, so am not too familiar with processes)
Q1

oRS7.open "Select i.partNo, sum(i.InventoryQuantity) as 'Inv Qty in FG/FS' from invloc i Where i.InventoryLocation IN ('FG','FS') GROUP BY i.partno, i.InventoryLocation", oConn

Q2

oRS.open "Select p.PartNo, p.Description, [NEED THE RESULTS TO INSERT HERE], sum(m.ForecastQuantity) as 'Current Month Plan', sum(m.ForecastQuantity)/4 as 'Weekly Avg Plan', sum(m.ForecastQuantity)/30 as '1 Day Avg Plan',(case when i.InventoryQuantity < sum(m.ForecastQuantity) then 'Y' else 'N' end)as 'Below Monthly Plan',(case when i.InventoryQuantity < sum(m.ForecastQuantity/4) then 'Y' else 'N' end)as 'Below Weekly Plan',(case when i.InventoryQuantity <= sum(m.ForecastQuantity/30) then 'Y' else 'N' end)as 'Below 1 Day Plan'
from parts p, invloc i, salesforecast m Where p.PartNo = i.PartNo and p.PartNo = m.PartNo and i.InventoryLocation='FS' and m.ForecastDate between '" & Date & "' and '" & Date+27 & "' 
Group by p.partno, p.Description, i.InventoryQuantity, Order by 'Below 1 Day Plan' desc, 'Below Weekly Plan' desc, 'Below Monthly Plan' desc, p.PartNo ", oConn

The original coding called for one inventory but now I need to sum two inventory amts before comparing the values to the forecasted amts. This is being pulled on an asp.net page from MS SQL Server

See original code below (need to take FG and make it a summed inventory)

<%@ Language="VBScript" %>
<%  Option Explicit %>
<%
    Response.Expires = 0
    Server.ScriptTimeout = 500000

    dim oConn, oRS, oRS2, oRS3, oRS4, oRS5, oRS6

    Set oConn = Server.CreateObject("ADODB.Connection")

    oConn.Open "Driver={SQL Server}; Server=ABSQL21; Database=DF_WHSE; Uid=ReadOnlyUser; Pwd=bionics;"

    Set oRS = Server.CreateObject("ADODB.Recordset")

    Set oRS2 = Server.CreateObject("ADODB.Recordset")

    Set oRS3 = Server.CreateObject("ADODB.Recordset")

    Set oRS4 = Server.CreateObject("ADODB.Recordset")

    Set oRS5 = Server.CreateObject("ADODB.Recordset")

    Set oRS6 = Server.CreateObject("ADODB.Recordset")
%>
<html>

<head>
<title><%=Month(Date) & Day(Date) & Year(Date)%></title>
<style>
body  {
    font-family: "Trebuchet MS", Arial, Helvetica, san-serif;;
    font-size: 12px;
}
table {
    font-size: 11px;
    border-collapse:collapse;
}
td  {
    border-bottom: 1px #ccc solid;
    border-right: 1px #a1b0f3 dashed;
}
th  {
    border-bottom: 2px #333 solid;
    border-right: 1px #a1b0f3 dashed;
    background-color:#1790C0;
    color: #fff;
}
input  {
    border: 0px;
}
a  {
    color: #1790C0;
    text-decoration: none;
}
a:hover  {
    color: #5A6D81;
    text-decoration: underline;
}
</style>
</head>

<body>
<center>
<img src="Logo.png">
<br>

<%
    oRS.open "Select p.PartNo, p.Description, (case when i.InventoryLocation='FG' then i.InventoryQuantity else 0 end) as 'Inv Qty in FG', " &_
                "sum(m.ForecastQuantity) as 'Current Month Plan', sum(m.ForecastQuantity)/4 as 'Weekly Avg Plan', sum(m.ForecastQuantity)/30 as '1 Day Avg Plan', " &_
                "(case when i.InventoryQuantity < sum(m.ForecastQuantity) then 'Y' else 'N' end)as 'Below Monthly Plan', " &_
                "(case when i.InventoryQuantity < sum(m.ForecastQuantity/4) then 'Y' else 'N' end)as 'Below Weekly Plan', " &_
                "(case when i.InventoryQuantity <= sum(m.ForecastQuantity/30) then 'Y' else 'N' end)as 'Below 1 Day Plan' " &_
                "from parts p, invloc i, salesforecast m Where p.PartNo = i.PartNo and p.PartNo = m.PartNo and i.InventoryLocation='FG' and m.ForecastDate between '" & Date & "' and '" & Date+27 & "' " &_
                "Group by p.partno, p.Description, i.InventoryQuantity, i.InventoryLocation Order by 'Below 1 Day Plan' desc, 'Below Weekly Plan' desc, 'Below Monthly Plan' desc, p.PartNo ", oConn

    Response.Write "<table cellpadding=2 border=0 cellspacing=4>"
    Response.Write "<tr align=center>"
    Response.Write "<th width=50></td>"
    Response.Write "<th width=130><b>Finished Part No</b></td>"
    Response.Write "<th width=140><b>Purchased Part No</b></td>"
    Response.Write "<th width=200><b>Description</b></td>"
    Response.Write "<th width=100><b>FG Inventory</b></td>"
    Response.Write "<th width=250><b>Forward 4 Week MRP Demand</b></td>"
    Response.Write "<th width=200><b>Comments</b></td>"
    Response.Write "</tr>"

    IF oRS.EOF THEN
        Response.Write "<tr align=center>"
        Response.Write "<td colspan=7>No MRP Warnings Found.</td>"
        Response.Write "</tr>"
    ELSE
    END IF

    DO WHILE NOT oRS.EOF

    Select case oRS("PartNo").Value

        case "7095316-36J"
        case "7095316-37H"
        case "7095316-49H"

        case else

            IF oRS("Below Monthly Plan").Value = "Y" THEN
                IF oRS("Below Weekly Plan").Value = "Y" THEN
                    IF oRS("Below 1 Day Plan").Value = "Y" THEN
                        Response.Write "<tr align=center>"
                        Response.Write "<td width=50 bgcolor=""#FF3366"">"
                        Response.Write "<td><font style=""color: #0098DB; font-weight: bold;"">" & oRS("PartNo").Value & "</font></td>"
                        Response.Write "<td>"

                        oRS2.open "Select Component from dbo.bomli_all where BomId='" & oRS("PartNo").Value & "' and Quantity = '1.0000' Order By Component ", oConn

                        Do While Not oRS2.EOF

                            oRS3.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS2("Component").Value & "' ", oConn

                            If oRS3("MakeBuyCode").Value = "B" Then
                                Response.Write "<font style=""font-size: 10px;"">" & oRS2("Component").Value & "</font><br>"
                            Else
                                oRS4.open "Select Component from dbo.bomli_all where BomId='" & oRS2("Component").Value & "' and Quantity = '1.0000' Order By Component ", oConn
                                Do While Not oRS4.EOF
                                    oRS5.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS4("Component").Value & "' ", oConn
                                    If oRS5("MakeBuyCode").Value = "B" Then
                                        Response.Write "<font style=""font-size: 10px;"">" & oRS4("Component").Value & "</font><br>"
                                    Else
                                    End If
                                    oRS5.Close
                                oRS4.MoveNext
                                Loop
                                oRS4.Close
                            End If
                            oRS3.Close

                        oRS2.MoveNext
                        Loop
                        oRS2.Close

                        Response.Write "</td>"
                        Response.Write "<td>" & oRS("Description").Value & "</td>"
                        Response.Write "<td><font color=#FF3366><b>" & oRS("Inv Qty in FG").Value & "</b></font></td>"
                        Response.Write "<td>" & oRS("Current Month Plan").Value & "</td>"
                        Response.Write "<td><input type=text size=30></td>"
                        Response.Write "</tr>"
                    ELSE
                        Response.Write "<tr align=center>"
                        Response.Write "<td width=50 bgcolor=""#FF6600"">"
                        Response.Write "<td><font style=""color: #0098DB; font-weight: bold;"">" & oRS("PartNo").Value & "</font></td>"
                        Response.Write "<td>"

                        oRS2.open "Select Component from dbo.bomli_all where BomId='" & oRS("PartNo").Value & "' and Quantity = '1.0000' Order By Component ", oConn

                        Do While Not oRS2.EOF

                            oRS3.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS2("Component").Value & "' ", oConn

                            If oRS3("MakeBuyCode").Value = "B" Then
                                Response.Write "<font style=""font-size: 10px;"">" & oRS2("Component").Value & "</font><br>"
                            Else
                                oRS4.open "Select Component from dbo.bomli_all where BomId='" & oRS2("Component").Value & "' and Quantity = '1.0000' Order By Component ", oConn
                                Do While Not oRS4.EOF
                                    oRS5.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS4("Component").Value & "' ", oConn
                                    If oRS5("MakeBuyCode").Value = "B" Then
                                        Response.Write "<font style=""font-size: 10px;"">" & oRS4("Component").Value & "</font><br>"
                                    Else
                                    End If
                                    oRS5.Close
                                oRS4.MoveNext
                                Loop
                                oRS4.Close
                            End If
                            oRS3.Close

                        oRS2.MoveNext
                        Loop
                        oRS2.Close

                        Response.Write "</td>"
                        Response.Write "<td>" & oRS("Description").Value & "</td>"
                        Response.Write "<td><font color=#FF3366><b>" & oRS("Inv Qty in FG").Value & "</b></font></td>"
                        Response.Write "<td>" & oRS("Current Month Plan").Value & "</td>"
                        Response.Write "<td><input type=text size=30></td>"
                        Response.Write "</tr>"
                    END IF
                ELSE
                    Response.Write "<tr align=center>"
                    Response.Write "<td width=50 bgcolor=""#FFFF66"">"
                    Response.Write "<td><font style=""color: #0098DB; font-weight: bold;"">" & oRS("PartNo").Value & "</font></td>"
                    Response.Write "<td>"

                        oRS2.open "Select Component from dbo.bomli_all where BomId='" & oRS("PartNo").Value & "' and Quantity = '1.0000' Order By Component ", oConn

                        Do While Not oRS2.EOF

                            oRS3.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS2("Component").Value & "' ", oConn

                            If oRS3("MakeBuyCode").Value = "B" Then
                                Response.Write "<font style=""font-size: 10px;"">" & oRS2("Component").Value & "</font><br>"
                            Else
                                oRS4.open "Select Component from dbo.bomli_all where BomId='" & oRS2("Component").Value & "' and Quantity = '1.0000' Order By Component ", oConn
                                Do While Not oRS4.EOF
                                    oRS5.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS4("Component").Value & "' ", oConn
                                    If oRS5("MakeBuyCode").Value = "B" Then
                                        Response.Write "<font style=""font-size: 10px;"">" & oRS4("Component").Value & "</font><br>"
                                    Else
                                    End If
                                    oRS5.Close
                                oRS4.MoveNext
                                Loop
                                oRS4.Close
                            End If
                            oRS3.Close

                        oRS2.MoveNext
                        Loop
                        oRS2.Close

                    Response.Write "</td>"
                    Response.Write "<td>" & oRS("Description").Value & "</td>"
                    Response.Write "<td><font color=#FF3366><b>" & oRS("Inv Qty in FG").Value & "</b></font></td>"
                    Response.Write "<td>" & oRS("Current Month Plan").Value & "</td>"
                    Response.Write "<td><input type=text size=30></td>"
                    Response.Write "</tr>"
                END IF
            ELSE
            END IF

    End select

    oRS.MoveNext
    Loop

    Response.Write "</table><br>"

    oRS.Close

    oRS.open "Select p.PartNo, p.Description, " &_
                "(case when i.InventoryLocation='FG' then i.InventoryQuantity else 0 end)as 'Inv Qty in FG', " &_
                "sum(p.OrderPoint)as '4 Weeks Safety Stock', " &_
                "sum(p.OrderPoint/4)as '1 Week Safety Stock', " &_
                "sum(p.OrderPoint/4/30)as '1 Day Safety Stock', " &_
                "(case when i.InventoryQuantity < sum(p.OrderPoint) then 'Y' else 'N' end)as 'Below Monthly Safety Stock', " &_
                "(case when i.InventoryQuantity < sum(p.OrderPoint/4) then 'Y' else 'N' end)as 'Below Weekly Safety Stock', " &_
                "(case when i.InventoryQuantity < sum(p.OrderPoint/30) then 'Y' else 'N' end)as 'Below 1 Safety Stock' " &_
                "from parts p, invloc i " &_
                "Where p.PartNo = i.PartNo " &_
                "and i.InventoryLocation='FG' " &_
                "and p.PlanningType='OPN' " &_
                "and p.OrderPoint > i.InventoryQuantity " &_
                "Group by p.partno, p.Description, i.InventoryQuantity, i.InventoryLocation " &_
                "Order by 'Below Monthly Safety Stock' desc, 'Below Weekly Safety Stock' desc, 'Below 1 Safety Stock' desc, p.PartNo", oConn



    IF oRS.EOF THEN
    ELSE
        Response.Write "<table cellpadding=2 border=0 cellspacing=4>"
        Response.Write "<tr align=center>"
        Response.Write "<th width=50></td>"
        Response.Write "<th width=130></td>"
        Response.Write "<th width=140></td>"
        Response.Write "<th width=200></td>"
        Response.Write "<th width=100></td>"
        Response.Write "<th width=250><b>Order Point Level:</b></td>"
        Response.Write "<th width=200></td>"
        Response.Write "</tr>"
    END IF

    DO WHILE NOT oRS.EOF


    Select case oRS("PartNo").Value

    case "6015213-001"
    case "5060050008"
    case "8044213-001"
    case "9050050011"
    case "5023015-001"
    case else

        IF oRS("Below Monthly Safety Stock").Value = "Y" THEN
                IF oRS("Below Weekly Safety Stock").Value = "Y" THEN
                    IF oRS("Below 1 Safety Stock").Value = "Y" THEN
                        Response.Write "<tr align=center>"
                        Response.Write "<td width=50 bgcolor=""#FF3366"">"
                        Response.Write "<td><font style=""color: #0098DB; font-weight: bold;"">" & oRS("PartNo").Value & "</font></td>"
                        Response.Write "<td>"

                        oRS2.open "Select Component from dbo.bomli_all where BomId='" & oRS("PartNo").Value & "' and Quantity = '1.0000' Order By Component ", oConn

                        Do While Not oRS2.EOF

                            oRS3.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS2("Component").Value & "' ", oConn

                            If oRS3("MakeBuyCode").Value = "B" Then
                                Response.Write "<font style=""font-size: 10px;"">" & oRS2("Component").Value & "</font><br>"
                            Else
                                oRS4.open "Select Component from dbo.bomli_all where BomId='" & oRS2("Component").Value & "' and Quantity = '1.0000' Order By Component ", oConn
                                Do While Not oRS4.EOF
                                    oRS5.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS4("Component").Value & "' ", oConn
                                    If oRS5("MakeBuyCode").Value = "B" Then
                                        Response.Write "<font style=""font-size: 10px;"">" & oRS4("Component").Value & "</font><br>"
                                    Else
                                    End If
                                    oRS5.Close
                                oRS4.MoveNext
                                Loop
                                oRS4.Close
                            End If
                            oRS3.Close

                        oRS2.MoveNext
                        Loop
                        oRS2.Close

                        Response.Write "</td>"
                        Response.Write "<td>" & oRS("Description").Value & "</td>"
                        Response.Write "<td><font color=#FF3366><b>" & oRS("Inv Qty in FG").Value & "</b></font></td>"
                        Response.Write "<td>" & oRS("4 Weeks Safety Stock").Value & "</td>"
                        Response.Write "<td><input type=text size=30></td>"
                        Response.Write "</tr>"
                    ELSE
                        Response.Write "<tr align=center>"
                        Response.Write "<td width=50 bgcolor=""#FF6600"">"
                        Response.Write "<td><font style=""color: #0098DB; font-weight: bold;"">" & oRS("PartNo").Value & "</font></td>"
                        Response.Write "<td>"

                        oRS2.open "Select Component from dbo.bomli_all where BomId='" & oRS("PartNo").Value & "' and Quantity = '1.0000' Order By Component ", oConn

                        Do While Not oRS2.EOF

                            oRS3.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS2("Component").Value & "' ", oConn

                            If oRS3("MakeBuyCode").Value = "B" Then
                                Response.Write "<font style=""font-size: 10px;"">" & oRS2("Component").Value & "</font><br>"
                            Else
                                oRS4.open "Select Component from dbo.bomli_all where BomId='" & oRS2("Component").Value & "' and Quantity = '1.0000' Order By Component ", oConn
                                Do While Not oRS4.EOF
                                    oRS5.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS4("Component").Value & "' ", oConn
                                    If oRS5("MakeBuyCode").Value = "B" Then
                                        Response.Write "<font style=""font-size: 10px;"">" & oRS4("Component").Value & "</font><br>"
                                    Else
                                    End If
                                    oRS5.Close
                                oRS4.MoveNext
                                Loop
                                oRS4.Close
                            End If
                            oRS3.Close

                        oRS2.MoveNext
                        Loop
                        oRS2.Close

                        Response.Write "</td>"
                        Response.Write "<td>" & oRS("Description").Value & "</td>"
                        Response.Write "<td><font color=#FF3366><b>" & oRS("Inv Qty in FG").Value & "</b></font></td>"
                        Response.Write "<td>" & oRS("4 Weeks Safety Stock").Value & "</td>"
                        Response.Write "<td><input type=text size=30></td>"
                        Response.Write "</tr>"
                    END IF
                ELSE
                    Response.Write "<tr align=center>"
                    Response.Write "<td width=50 bgcolor=""#FFFF66"">"
                    Response.Write "<td><font style=""color: #0098DB; font-weight: bold;"">" & oRS("PartNo").Value & "</font></td>"
                    Response.Write "<td>"

                        oRS2.open "Select Component from dbo.bomli_all where BomId='" & oRS("PartNo").Value & "' and Quantity = '1.0000' Order By Component ", oConn

                        Do While Not oRS2.EOF

                            oRS3.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS2("Component").Value & "' ", oConn

                            If oRS3("MakeBuyCode").Value = "B" Then
                                Response.Write "<font style=""font-size: 10px;"">" & oRS2("Component").Value & "</font><br>"
                            Else
                                oRS4.open "Select Component from dbo.bomli_all where BomId='" & oRS2("Component").Value & "' and Quantity = '1.0000' Order By Component ", oConn
                                Do While Not oRS4.EOF
                                    oRS5.Open "Select MakeBuyCode from dbo.parts where PartNo='" & oRS4("Component").Value & "' ", oConn
                                    If oRS5("MakeBuyCode").Value = "B" Then
                                        Response.Write "<font style=""font-size: 10px;"">" & oRS4("Component").Value & "</font><br>"
                                    Else
                                    End If
                                    oRS5.Close
                                oRS4.MoveNext
                                Loop
                                oRS4.Close
                            End If
                            oRS3.Close

                        oRS2.MoveNext
                        Loop
                        oRS2.Close

                    Response.Write "</td>"
                    Response.Write "<td>" & oRS("Description").Value & "</td>"
                    Response.Write "<td><font color=#FF3366><b>" & oRS("Inv Qty in FG").Value & "</b></font></td>"
                    Response.Write "<td>" & oRS("4 Weeks Safety Stock").Value & "</td>"
                    Response.Write "<td><input type=text size=30></td>"
                    Response.Write "</tr>"
                END IF
            ELSE
            END IF

    End select

    oRS.MoveNext
    Loop

    IF oRS.EOF THEN
    ELSE
        Response.Write "</table>"
    END IF

    oRS.Close


    Set oRS = Nothing
    oConn.Close
    Set oConn = Nothing

%>

</body>

</html>

`

  • 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-06-15T11:12:23+00:00Added an answer on June 15, 2026 at 11:12 am

    This does not answer your exact problem but may assist in resolving some of the join issues.

    NOTE: this contains the line

    AND m.liid = ????
    

    The forecast table will probably need a filter or join on this column in order to be properly unique. (It depends on the data). This is a common problem when trying to correlate actuals and budgets. I hope this helps – post back and I will help futher. I suspect that if we used SQLFiddle this would be much easier!

        SELECT p.PartNo, p.Description, 
        IQ.FG_Qty, Iq.FS_Qty,
        sum(m.ForecastQuantity) as 'Current Month Plan',
        sum(m.ForecastQuantity)/4 as 'Weekly Avg Plan', 
        sum(m.ForecastQuantity)/30 as '1 Day Avg Plan'
        FROM
        -- parts is unique on partNo
        parts p
        -- salesforecast is unique on partno,liid
        INNER JOIN
        salesforecast m
        ON P.partNo = m.partNo
        AND m.liid = ????
        INNER JOIN
        (
        -- The subtable IQ is unique on partNo
        Select 
        i.partNo, 
        sum(case when i.InventoryLocation = 'FG' then i.InventoryQuantity else 0 end) as [FG_Qty], 
        sum(case when i.InventoryLocation = 'FS' then i.InventoryQuantity else 0 end) as [FS_Qty]
        from invloc i 
        Where i.InventoryLocation IN ('FG','FS') 
        GROUP BY i.partno
        ) IQ
        ON p.PartNo = IQ.PartNo 
        AND m.ForecastDate between '" & Date & "' and '" & Date+27 & "' 
        --- Here is where we join
        GROUP BY p.partno, p.Description, IQ.FG_Qty, Iq.FS_Qty
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use a result from one query as input for another
I have been trying to use array_unique to remove duplicates from the search results
I'm trying to use the entity framework to take data (nested relationships) from one
I am trying to extract URLs from Google search results. I use Indy IdHTTP
I'm trying to get some results from UniProt, which is a protein database (details
Trying to pull info from one JSON datafeed and use that to make another
I'm trying to use e4x to retrieve xml from the result event thrown when
I am trying to use mysql_num_rows to then split the results of my query
I'm trying to use the jQuery get function to render the results of an
I am getting some unexpected results when trying to use Python Omni Completion on

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.