Nested query doesn't return result

Using CF 8.1.  First field in table is "item" which is a compound filed containing a five digit customer number, a space, then a six digit item number.  I need to produce a list of items for a specific customer based on their customer number, which is stored in a session variable. That part of my code all works. However, inside the output I need to retreive the item pack size from another table. This part of my code isn't working (QryAddInfo). Code pasted below. I'm wondering if it's because I'm trying to have a third query or that it is inside an output???
          <cfquery name="QryGetInfo" datasource="necsodbc">
          SELECT custnoitem, descrip, descrip4, lastdate
          FROM arcpric
          ORDER BY custnoitem
          </cfquery>
         <cfquery name="GetItems" dbtype="query">
          SELECT *
          FROM QryGetInfo
          WHERE #left(QryGetInfo.custnoitem, 5)# = #session.MemberID#
          ORDER BY custnoitem
          </cfquery>
<body>
<div align="center">
<br /><br />
Standard Order <cfoutput>#session.MemberID#</cfoutput>
<br /><br />
<table cellpadding="2">
<tr>
<td>ITEM</td>
<td>DESCRIPTION</td>
<td>PACK</td>
<td>ITEM<br /> COMMITMENT</td>
<td>QTY</td>
<td>LAST<BR />ORDERED</td>
</tr>
<cfoutput query="QryGetInfo">
<CFIF #left(QryGetInfo.custnoitem, 5)# eq #session.MemberID# AND #MID(QryGetInfo.custnoitem, 7,6)# LT 900000>
<TR height="22">
<TD>#MID(QryGetInfo.custnoitem, 7,6)#</TD>
<TD align="left">#QryGetInfo.DESCRIP#</TD>
<td>
<cfquery name="GetAddInfo" datasource="necsodbc">
SELECT SIZE
FROM ARINVT01
WHERE ITEM = '#MID(QryGetInfo.custnoitem, 7,6)#'
</cfquery>
#GetAddInfo.size#
</td>
<TD align="left">
<div align="center">
<cfif ASC(left(QryGetInfo.DESCRIP4,2)) NEQ 32>
YES
</cfif>
</div>
</TD>
<TD width="25"> </TD>
<TD>#QryGetInfo.LASTDATE#</TD>
</TR>
</CFIF>
</cfoutput>
</table>
</div>
</body>

Thanks for all your suggestions Dan. Though they weren't the answer, it made me question the validity of the ITEM field in the second table. Upon checking with the programmers of the application I found the field was padded with spaces. Which is why nothing matched. Your suggestion on substr was also close, but not quite. Here is what I came up with to produce the desired results.
          <cfquery name="QryGetInfo" datasource="necsodbc">
          SELECT custnoitem, descrip, descrip4, lastdate
          FROM arcpric
          ORDER BY custnoitem
          </cfquery>
<body>
<div align="center">
<br /><br />
Standard Order <cfoutput>#session.MemberID#</cfoutput>
<br /><br />
<table cellpadding="2">
<tr>
<td>ITEM</td>
<td>DESCRIPTION</td>
<td>PACK</td>
<td>ITEM<br /> COMMITMENT</td>
<td>QTY</td>
<td>LAST<BR />ORDERED</td>
</tr>
<cfoutput query="QryGetInfo">
<CFIF #left(QryGetInfo.custnoitem, 5)# eq #session.MemberID# AND #MID(QryGetInfo.custnoitem, 7,6)# LT 900000>
<TR height="22">
<TD>#MID(QryGetInfo.custnoitem, 7,6)#</TD>
<TD align="left">#QryGetInfo.DESCRIP#</TD>
<td>
      <cfquery name="GetSize" datasource="necsodbc">
          SELECT item, size
          FROM arinvt01
          WHERE left(item, 6) = '#MID(QryGetInfo.custnoitem, 7,6)#'
          </cfquery>
          #GetSize.size#
          </td>
<TD align="left">
<div align="center">
<cfif ASC(left(QryGetInfo.DESCRIP4,2)) NEQ 32>
YES
</cfif>
</div>
</TD>
<TD width="25"> </TD>
<TD>#QryGetInfo.LASTDATE#</TD>
</TR>
</CFIF>
</cfoutput>
</table>
</div>
</body>

Similar Messages

  • Query doesn't return results.

    Hi all,
    currently I face strange behavior and before I going to raise possible incident want to check if I haven't forgot something.
    Use case: I created for my custom BO OVS screen. By default there is used QueryByElements query. Unfortunately it's not possible search through OVS results. That way I tried to create SADL query where I specified basic search fields. When I replaced this search I couldn't get anymore list of BOs records. So I tried to create new query for my BO. I rebound all fields to this Overview node, bound query, but again no results in OVS, when I bounded back default QueryByElements results ar displayed.
    Has anyone faced similar behavior?
    Thanks,
    Uldis

    hi Uldism I am facing similar issue!
    did u get any solution?

  • SQL Query (PL/SQL Function Body returning SQL query) doesn't return any row

    I have a region with the following type:
    SQL Query (PL/SQL Function Body returning SQL query).
    In a search screen the users can enter different numbers, separated by an ENTER.
    I want to check these numbers by replacing the ENTER, which is CHR(13) || CHR(10) I believe, with commas. And then I can use it like this: POD IN (<<text>>).
    It's something like this:
    If (:P30_POD Is Not Null) Then
    v_where := v_where || v_condition || 'POD IN (''''''''||REPLACE(''' || :P30_POD || ''', CHR(13) || CHR(10), '','')||'''''''''')';
    v_condition := ' AND ';
    End If;
    But the query doesn't return any rows.
    I tried to reproduce it in Toad:
    select * from asx_worklistitem
    where
    POD IN (''''||REPLACE('541449200000171813'||CHR(13) || CHR(10)||'541449206006341366', CHR(13) || CHR(10), ''',''')||'''')
    ==> This is the query that does't return any rows
    select (''''||REPLACE('541449200000171813'||CHR(13) || CHR(10)||'541449206006341366', CHR(13) || CHR(10), ''',''')||'''')
    from dual;
    ==> This returns '541449200000171813','541449206006341366'
    select * from asx_worklistitem
    where pod in ('541449200000171813','541449206006341366');
    ==> and when I copy/paste this in the above query, it does return my rows.
    So why does my first query doesn't work?
    Doe anyone have any idea?
    Kind regards,
    Geert
    Message was edited by:
    Zorry

    Thanks for the help.
    I made it work, but via the following code:
    If (:P30_POD Is Not Null) Then
    v_pods := REPLACE(:P30_POD, CHR(13) || CHR(10));
    v_where := v_where || v_condition || 'POD IN (';
    v_counter := 1;
    WHILE (v_counter < LENGTH(v_pods)) LOOP
    v_pod := SUBSTR(v_pods, v_counter, 18);
    IF (v_counter <> 1) THEN
    v_where := v_where || ',';
    END IF;
    v_where := v_where || '''' || v_pod || '''';
    v_counter := v_counter + 18;
    END LOOP;
    v_where := v_where || ')';
    v_condition := ' AND ';
    End If;But now I want to make an update of all the records that correspond to this search criteria. I can give in a status via a dropdownlist and that I want to update all the records that correspond to one of these POD's with that status.
    For a region you can build an SQL query via PL/SQL, but for a process you only have a PL/SQL block. Is the only way to update all these records by making a loop and make an update for every POD that is specified.
    Because I think this will have a lot of overhead.
    I would like to make something like a multi row update in an updateable report, but I want to specify the status from somewhere else. Is this possible?

  • CONNECT BY query doesn't return any results...

    Hi All
    I am trying to execute this CONNECT BY query...but it does not return any result.
    Could anyone please suggests what am I doing wrong. Or how should I modify the query to get the results.
    SELECT Distinct dt.DID FROM DEPT dt left outer join EMPLOYEE emp on dt.DID = emp.DID WHERE dt.parentid in (SELECT DEPT.DID FROM DEPT CONNECT BY PRIOR DEPT.DID = DEPT.PARENTID START WITH DEPT.PARENTID in (2000,-2000)) or dt.parentid=2000
    Any help would be really really appreciated.
    Thanks and Regards
    -Josef

    Take the nested query and run it in SQL developer (or SQL Plus) against the database directly. Does it give any results? That query returning no results is the most likely cause of the problem.

  • 'People Search Core Result' web part with 'office' filter in Keyword Query is not returning results

    I have created a page with "People search core result" web part on SharePoint 2010.
    When I try to use the setting (A) or (C) as shown below, there is no results been returned but when set to setting (B), there are results been returned.
    In the returned results I can see the OfficeNumber field is been populated with values and some of them is "UK Finance".
    Setting (A)
    Result Query Options
    -- Fixed Keyword Query = contentclass:spspeople -- Append Text To Query = Department:"Finance" AND OfficeNumber:"UK Finance"
    Setting (B)
    Result Query Options
    --- Fixed Keyword Query = contentclass:spspeople --- Append Text To Query = Department:"Finance"
    Setting (C)
    Result Query Options
    --- Fixed Keyword Query = contentclass:spspeople --- Append Text To Query = OfficeNumber:"UK Finance"
    What am I doing wrong here? Am I missing something? Do I need any additional configuration in order to get this to work?
    I hope someone could help me or point me to the right direction.
    Thank you
    muges

    You might want to check the Manage User Properties area of the User Profile Service in Central Admin.
    Any properties you query on should be marked "Indexed" or "Use in Scopes".  You can also check that you are using the correct internal name for these properties.

  • Query doesn't return rows

    Hi,
    The following query returns no rows, while there is one row in the table:
    SELECT *
    FROM (SELECT id,
                 amt_disburse amt1,
                 TO_CHAR (dt_disburse, 'RRRRMMDD') date1
          FROM (SELECT a.*,
                       ROW_NUMBER ()
                          OVER
                             PARTITION BY id
                             ORDER BY dt_disburse DESC
                          rnk
                FROM pymt_tmp a)
          WHERE rnk = 1),
         (SELECT amt_disburse amt2, TO_CHAR (dt_disburse, 'RRRRMMDD') date2
          FROM (SELECT amt_disburse,
                       dt_disburse,
                       ROW_NUMBER ()
                          OVER
                             PARTITION BY id
                             ORDER BY dt_disburse DESC
                          rnk
                FROM pymt_tmp)
          WHERE rnk = 2)
    Script for pymt_tmp tabe:
    CREATE TABLE PYMT_TMP
      ID                          VARCHAR2(10)         NOT NULL,
      AMT_DISBURSE        NUMBER(11,2)              NOT NULL,
      DT_DISBURSE          DATE                      NOT NULL
    Data in the pymt_tmp table
    ID                              AMT_DISBURSE        DT_DISBURSE        
    0099999999                       199                 3/16/2009
    Expected Results:
          ID             AMT1      DATE1         AMT2    DATE2
    0099999999    199.00    20090316    
                                                               AMT2 AND DATE2 should be blankAdvance thanks for your help.

    Using Kordirko's approach from this thread: {message:id=4412642}, you could do something like:
    SQL> select * from pymt_tmp;
    ID         AMT_DISBURSE DT_DISBUR
    0099999999          199 16-MAR-09
    1 row selected.
    SQL> select id
      2  ,      amt1
      3  ,      date1
      4  ,      amt2
      5  ,      date2
      6  from ( select id
      7         ,      to_char(amt_disburse, '999g999d90') amt1
      8         ,      to_char(dt_disburse, 'rrrrmmdd') date1
      9         from ( select a.*
    10                ,      row_number() over (partition by id order by dt_disburse desc) rnk
    11                from   pymt_tmp a
    12              )
    13         where rnk = 1
    14       )
    15  ,    ( with pymt_tmp2 as ( select to_char(amt_disburse, '999g999d90') amt2
    16                             ,      to_char(dt_disburse, 'rrrrmmdd') date2
    17                             from ( select amt_disburse
    18                                    ,      dt_disburse
    19                                    ,      row_number() over (partition by id order by dt_disburse desc) rnk
    20                                    from   pymt_tmp
    21                                  )
    22                             where rnk = 2
    23                           )
    24         select amt2
    25         ,      date2
    26         from   pymt_tmp2                        
    27         union all
    28         select null amt2
    29         ,      to_char(null) date2
    30         from   dual
    31         where not exists ( select null
    32                            from   pymt_tmp2
    33                          )
    34       );
    ID         AMT1        DATE1    AMT2        DATE2
    0099999999      199.00 20090316
    1 row selected.if you insist on querying for a non-existing second record.
    not blind, but deaf instead

  • MS Query will not return results after modification

    Using an ORACLE OBDC link, a msquery will work fine when first set up, but will fail to work when modified.  The query can be reset up with the modified criteria and work fine, however, all links have to be changed to the new table.  Other queries
    will work fine with multiple modifications.  We link to the BANNER database system tables. (when you try to query now, it is as if the query does not run any longer. Results which normally take up to 3 minutes to return, are returned immediately as no
    information)

    Hi,
    Do you get the error message when you Microsoft query fail to work? Which Excel and Oracle version are you using?
    Please try the below workaround to check if it is helpful:
    1. Update the Oracle ODBC drive
    2. Turn Off the Enable Background Refresh Setting
    http://support.microsoft.com/kb/168702/en-us
    Then, we also may be try to use OLEBD instand of the ODBC?
    http://blog.mclaughlinsoftware.com/microsoft-excel/how-to-query-oracle-from-excel-2007/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support

  • Date query doesn't show results for today's date

    Hello everyone. I use Jdeveloper 11.1.1.3.0 with ADF and I have a view named query with just one field, Date. The operator it is using is equal to a value written in the field. The problem is that when I insert a row into the table (the date is automatically set to the current date on insertion) and I look for today's date it returns nothing. However if I leave the field empty it will find me the row. I tried doing this with the timestamp option but it's not very user friendly as the user would have to type in the time the row was inserted in order to find it, or use the between operator for two fields which is something I want to avoid if at all possible
    The requirement is one field query that lets the user choose a date from a calendar and shows all rows inserted on that date (even if the date is today and the row was inserted a few minutes before).
    Edited by: Dino2dy on Apr 6, 2011 2:50 AM

    Dino2dy,
    My guess is that the data being stored in the DB has a time component associated with it (as it would if you were using something like SYSDATE to populate it). When you are trying to look for data with today's date, you are checking just for the date - which in Oracle is the equivalent of midnight on the start of the date. The dates don't match because the time is different.
    Either store the date with no time component (use TRUNC to remove the time), use a BETWEEN comparison, or TRUNC the date when comparing.
    John

  • Composing new messages using smtp alias doesn't return results

    Greetings,
    Our setup: New Exchange 2013 server with an existing 2007 server.  Looking to move mailboxes to 2013.  When testing with iOS and Android devices we found when composing new messages and using an smtp alias and just typing each users initials (which
    is a smtp alias of each user plus their regular email address)  no results are coming up when connected to Exchange 2013 mailbox on 2013 CAS server.  It works when using Exchange 2007 CAS.
    If we type the user's first name it comes up with the user and smtp address.  However, just typing the 3 letter alias - nothing comes up and we just get "no matches" returned in the messaging app.
    I've checked everything I can think of.  Ideas or suggestions?
    Many thanks!

    I don't understand what you are saying.
    If you uncheck the "Create a sent item to track
    information", the sent item is not created. No
    status tracking will take place.
    I don't understand what you are looking for.
    If the above option is not set, only the received
    items are created.
    >>> On Friday, May 07, 2010 at 6:46 AM, saju
    paul<[email protected]> wrote:
    > Hello All,
    >
    > With GroupWise Object API, I do not get any messages that were sent
    > using *"Create a sent item to track information"* option unchecked. I
    > tried the following steps.
    > 1. I compose a new mail
    > 2. Before sending I go to Send Options ‑> Status Tracking and uncheck
    > "Create a sent item to track information" and send the mail
    >
    > The mail is successfully sent but when I login to the mailbox as a
    > trusted application using MultiLogin, I do not get those messages. I
    > also tried enabling message retention on GroupWise server but still do
    > not get those messages.
    >
    > Is there any way to fetch those messages?
    >
    > Any pointers on the above would be helpful.
    >
    > Regards,
    > Saju

  • Installed vi dll on a target PC doesn't return results

    I have developed a VI that reads data from a NI-9215A, filters it, FFTs it, and picks out a single peak.  The vi returns two doubles, for frequency and amplitude.  Using Application Builder I created a DLL that I call from the C++ application.  All of this works fine on the Labview development PC.  Next, I need to install the DLL on a different PC where my Visual Studio development environment exists.  So I created an installer to install the DLL on a different PC that doesn't have Labview installed.  In the installer I included the LabView Runtime Environment and the DAQmx driver. 
    On the target PC, my C++ app seems to access the DLL (pauses the expected length of time to get data back), but then invalid data is always returned -- "0" for the frequency and "-1.$" for the amplitude.  I can remove the DLL and the application throws an exception because it can't find the DLL, so I know it is accessing the DLL.  I just can't get it to return correct data.
    I have copied the following files from my DLL installation folder on my Labview PC to the executable folder for my C++ application on my Visual Studio PC:
    DllFileName.aleases
    DllFileName.dll
    DllFileName.h
    DllFileName.ini
    DllFileName.lib
    data\lvanlys.dll
    Any idea what I might be missing or why I can't get it to return valid data?  I do have a valid signal going into the 9215A.

    Hi SilverTop,
    How do you have the NI-9215 connected to the second computer?  Are you using a cDAQ chassis or USB?  If you are using USB, you will also need to include the NI-VISA driver in your installer.   
    --Starla T. 

  • Query database and return result set to cells.

    hello all i have vsto solution im building im trying to put together a generic query text box for my end user the only problem is that it appears to be that with oracle data access when you do a query you must pass all the values to a variable.
    Sub Orcl()
            Dim oradb As String = "Data Source=(DESCRIPTION=(ADDRESS_LIST=" _
                       + "(ADDRESS=(PROTOCOL=TCP)(HOST=xxx)(PORT=1521)))" _
                       + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=xxx)));" _
                       + "User Id=xx;Password=xx;"
             Dim conn As New Oracle.DataAccess.Client.OracleConnection(oradb) ' Visual Basic
            conn.Open()
            Query = select * from fabinvh
            Dim cmd As New Oracle.DataAccess.Client.OracleCommand
            cmd = conn.CreateCommand()
            cmd.Connection = conn
            cmd.CommandText = Query
            Dim dr As Oracle.DataAccess.Client.OracleDataReader = cmd.ExecuteReader()
            While dr.Read()
                Globals.ThisAddIn.Application.ActiveCell.Value = (dr.Item(1))''' HOW DO I CHANGE HERE TO JUST BRING IN ALL THE COLUMNS AND HEADERS?
                Globals.ThisAddIn.Application.ActiveCell.Offset(1, 0).Select()
            End While
            dr.Dispose()
            cmd.Dispose()
            conn.Dispose()
        End Subthanks in advance im able to do this with oo4o rather easily but I'm tryint go learn more of the odp.net oracle data access and learning is pretty slow right now.

    ok I think im getting closer to my answer i believe i need to use the
    GetValues. property. does anyone have an example on how to use this i keep getting errors when i try it.

  • Spotlight doesn't return results from shared drives

    I work in an all Mac graphics shop and we all (four of us) share a variety of volumes connected to a G4 running Tiger 10.4.11 (regular, not server version). Two of us have Leopard and two have Tiger (two Mac Pros running 10.5.6, two MacBook Pros running 10.4.11).
    The G4 is partitioned into an 80gb drive, a 500gb drive, and also has an external 500gb LaCie drive. We access all drives on this computer by automatically connecting to the shared "network" when we boot up each day. Hornware's Sharepoints is installed on the G4 "server".
    Recently, the two of us running Leopard on our MacPros lost the ability to search the shared volumes. I have had intermittent permissions problems since I started in October and I have attempted to troubleshoot this using the Sharepoints application (which, admittedly, I'm not familiar with, and I'm a noob to networking).
    I have tried adding and then deleting the drives from the privacy pane in Spotlight preferences (both on my MacPro and on the G4 server Mac). I've repaired permissions with Disk Utility. I've used DiskWarrior 3 to rebuild the directories on all but the external drive (will do that tomorrow). I also ran TechTools 4 but it took so long running the tests that I gave up and canceled (didn't work), force-quit and restarted.
    The second part of my question is would it be worth it to upgrade to Leopard on our server Mac and do away with Sharepoints altogether? I've read some horror stories about Leopard's buggy filesharing but I'm really hamstrung not being able to search my shared volumes.
    Any advice would be appreciated. Thanks in advance!

    Start with a search in these forums for search server, search servers, search network, etc. The first step. You'll find numerous items to peruse.
    Once that's fixed, see these for the Spotlight issues, if they're not related to the server one: http://www.pinkmutant.com/articles/Leopard/leospot.html and my mod to Finder's Find at http://discussions.apple.com/message.jspa?messageID=6725932 for what you can change so you can find stuff excluded by the default structure.

  • Query with subquery containing group clause doesn't return any rows - WHY ?

    Hi,
    My query doesn't return any values :
    select g1.NTRX from gtrx g1
    where exists
    (SELECT b.cfunctrx, b.cpro1trx, b.nmsgitrx, b.nmrc, b.ncrd, b.namtstrx,
    b.dltimtrx, b.nrtrftrx,count(*)
    FROM gtrxacq a, gtrx b
    WHERE a.ntrx = b.ntrx AND a.acq_bus_date = (SELECT curr_bus_date -1
    FROM gmbr
    WHERE nmbr = 0)
    and g1.NTRX=b.NTRX
    GROUP BY b.cfunctrx,
    b.cpro1trx,
    b.nmsgitrx,
    b.nmrc,
    b.ncrd,
    b.namtstrx,
    b.dltimtrx,
    b.nrtrftrx
    HAVING COUNT (*) > 1);
    but such query returns some number of rows :
    SELECT b.cfunctrx, b.cpro1trx, b.nmsgitrx, b.nmrc, b.ncrd, b.namtstrx,
    b.dltimtrx, b.nrtrftrx,count(*)
    FROM gtrxacq a, gtrx b
    WHERE a.ntrx = b.ntrx AND a.acq_bus_date = (SELECT curr_bus_date -1
    FROM gmbr
    WHERE nmbr = 0)
    /*and g1.NTRX=b.NTRX*/
    GROUP BY b.cfunctrx,
    b.cpro1trx,
    b.nmsgitrx,
    b.nmrc,
    b.ncrd,
    b.namtstrx,
    b.dltimtrx,
    b.nrtrftrx
    HAVING COUNT (*) > 1
    AND when i put results from query above into query :
    select g1.NTRX from gtrx g1
    where
    g1.CFUNCTRX= 200 and g1.CPRO1TRX= 000 and g1.NMSGITRX= 1240 and
    g1.NMRC= '000000000000675' and g1.NCRD= 405671**********
    and g1.NAMTSTRX=14.26 and g1.DLTIMTRX=to_date('07/08/2008 15:07:02','MM/DD/YYYY HH24:MI:SS')
    and g1.NRTRFTRX= '000414598393';
    it returns values.
    what is wrong ?
    Best Regards Arkadiusz Masny

    but such query returns some number of rows :
    /*and g1.NTRX=b.NTRX*/Add b.NTRX into group by and recheck.

  • How to write a Query a table and the return result is the column name

    Hi All
    Pls advise how to write a query whereas the return result is the
    column name.
    I know there is describe <table_name>;
    Is there any other ways?
    Pls advise
    Tj
    Edited by: user600866 on Oct 14, 2008 12:13 AM

    Data Dictionary table user_tab_columns has all the column names. You can query that and get what ever you want.
    To get the column list of a table just query
    select *
      from user_tab_columns     
    where table_name = <your_table>Edited by: Karthick_Arp on Oct 14, 2008 12:18 AM

  • Simple RFC call not returning results

    Hi,
    I have created a VERY simple Dynpro project to return the results of a simple RFC.  I've created the JCO connections and they test fine but the RFC doesn't return results to my application.
    Steps:
    1. create the project
    2. import the RFC Adaptive Model specifying the JCO connections
    3. Create an application
    4. Add the rfc model to the "Models Used"
    5. Bind the model to the component
    6. Context map two variables to the view (one input and one output)
    7. Create the method on the component
    8. Bound the UI elements to the model
    9. Set up the JCO connections from http://portal:50000/webdynpro/welcome
    For the JCO Connection creation, I used "Application" type through a load balanced connection for the Model Data connection (WD_MODELDATA_DEST) and the "Dictionary" type for the Metadata connection (WD_RFC_METADATA_DEST).
    Code:
    1. In the wdDoInit() of the controller
    wdContext.nodeZ_Hr_Get_Perno_Input().bind(new Z_Hr_Get_Perno_Input());
    2. In the wdDoInit() of the view
    wdContext.currentContextElement():setLogin_id( "mylogon" );
    wdThis.wdGetRfcTestComponentController().executeZ_Hr_Get_Perno_Input();
    My gut tells me it's an issue with my JCO connections but I can't be sure.
    I'm using Developer Studio SP9 with Patch 1 connecting to EP6 SP9 Patch 6.  When I start the Dev Studio, however, it displays version 2.0.9, is this the same for everyone?
    I've tested the function module from SE37 and it definitely returns a value. Also, if I don't set the login_id in the wdDoInit() before executing, it gives me the error that the input variable has not been set. So, this tells me that it connected to R3 to know that the variable was not passed but it still doesn't return any value when the variable is passed.
    Any ideas??  HELP!!!!!!!!!!
    Thanks,
    Andrew

    Okay, I'm not going crazy.  The issue was with my "simple" rfc.  When I changed the input and output to char(), it returned as expected.  I just have to figure out why the Dictionary types from R3 caused an issue.
    Andrew

Maybe you are looking for

  • Additional field in adhoc query

    Hi all, I need to be able to report on the IT105 subtype 0001 system ID for employees who are withdrawn from the company, however, when someone leaves their IT105 record is delimited so adhoc query will not output anything.  Has anyone coded an addit

  • How to open and edit a TopLink .mwp file?

    I can not open the toplink_mappings.mwp file using JDeveloper tool. How to open and edit a TopLink .mwp file? Thank you

  • Error message "update was terminated" while cancelling  the billing documen

    Hi Experts, Kindly can you advise on the following issue. We are getting the error message  "update was terminated" while cancelling the billing document using transaction code VF11. Note: The accounting document associated with the billing document

  • How to modify a triple?

    Hi, How can we modify a triple? For example, to modify an id I do: UPDATE owltst a SET a.id = '7' WHERE a.triple.GET_SUBJECT() = '<http://www.example.org/family/Tom>' But to modify the subject, i don't know because the column's name is triple then ho

  • Lost ability to pair iphone with vehicle

    Up until last week, I had bluetooth connectivity with my iphone in my vehicle.  After upgrading to iOS 8.3, my iphone is no longer discoverable.  I reset network settings, tried to pair my phone with another vehicle, and nothing seems to work.  The t