Function 'HR_READ_INFOTYPE'  not fetching any records in rfc

Hi All,
   We have created a custom info type 9110 , we have a wrapper RFC build around the function 'HR_READ_INFOTYPE' to read the data from it as we have a separate web dynpro ECC 6.0 system and a 4.7 back end system.
   The rfc is working correctly in the 4.7 system but when we call it from the we dynpro system it does not return any records.
   Is this a problem with the function 'HR_READ_INFOTYPE' ?
Thanks & Regards
Gaurav Jain

hi check this..
there is no problem with the function module but there may be some wrong data passing into the input of the fm ....mainly at the dates ....the date format is inportant ....otherwise it will not return any thing...

Similar Messages

  • Cursor with in clause in not fetching any rows (happens rarely)

    Hi Experts,
    Applications: Oracle Apps 11.5.10.2
    Data base version: 11.2.0.1.0
    we are running concurrent programs (scheduled every day),
    we obsereved one of cursor is not fetching any records (happens rarely);
    please refer the cursor below.
    CURSOR LCU_GET_ADJ_JN_CAT_DET IS WITH LCU_GET_ROWS_DETAILS AS(
          SELECT <columns1, columns1_1, columns1_2>
            FROM (SELECT <columns2> from table1 <conditions>            
                   GROUP BY <columns>
                  UNION ALL
                  SELECT <columns3> from table2 <conditions>
                  GROUP BY <columns>)
           WHERE (columns1_1 <> 0 OR columns1_2 <> 0)
           GROUP BY <columns>)
          SELECT *
            FROM (SELECT ROW_DET.* FROM LCU_GET_ROWS_DETAILS ROW_DET),
                 (SELECT COUNT(1) TOTAL_RECORDS,
                         SUM(columns1_1) TOTAL_CLOSING_DEBIT,
                         SUM(columns1_2) TOTAL_CLOSING_CREDIT
                    FROM LCU_GET_ROWS_DETAILS ROW_SUM)
           ORDER BY <columns>;

    Please enable trace/debug and check the log files then.
    How To Get Level 12 Trace And FND Debug File For Concurrent Programs (Doc ID 726039.1)
    How to enable and retrieve FND debug log messages (Doc ID 433199.1)
    Thanks,
    Hussein

  • Query not fetched the record

    Hello,
    Could someone help me please ?
    I have a listing of my sales orders and I want to make changes in my order by opening the form and fetched with that record. When I click on that particular orderno in my listing of order and call the form to display the details, it calls the form but says "Query could not fetch the record". I do not know why ? Please help me with the solution.
    Thanx

    Hello,
    I think you are passing orderno to called form as a parameter. If you are using parameter list check..
    1. If parameter data is getting in form correctly ?
    2. Next, have you changed where clause of other block,so that is will display record with passed orderno ?
    I am expecting more details from you.
    Thanx
    Adi

  • Not fetching any operations of a service in VC

    HI,
    I am trying to connect to SR in CE 7.1 machine from VC 7.1. I am done with all the prerequisites   required for VC to connect to SR.
    I have defined
    1. UDDI_DESTINATION
    2. CLASSIFICATION_DESTINATION
    3. BACKEND DESTINATION.
    4. Service Registry.
    In VC when I select "Search In" in Search Panel. I selected "SERVICE REGISTRY" and System
    In order to fetch the services and their operations but it is  not fetching any operations of a service which we published in SR other than that for  default services we could see all the services and there operations in VC .
      What could be the reason? What to do for getting the operations in VC?
    Thanks
    Srikanth

    Hi,
    I experience the same problem in EhP1 NWCE 7.1 Preview (the latest fom SDN) with VC 7.1. I made the settings according to this guide: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/605303db-9d5f-2a10-e0a2-c0e1c8af9e96
    It worked fine with NWCE 7.1 SP3, but with the new CE version I get no search results for enterprise services (ES). I can open the classification dialog (Advanced Search) and browse to the service I want to use, but when I click on search it finds nothing.
    Is there a problem with the new CE version?
    Regards
    André

  • Datasource 0WS_TAROBJ_ATTR does not extract any record

    I am using the datasource 0WS_TAROBJ_ATTR to get data from CRM to infoobject 0WS_TAROBJ. However, this extractor is not loading any record.
    According SAP information and some forum discussion, I have found that the datasource WS_TAROBJ_ATTR loads data from the table CRM_SVY_RE_TAOBJ.
    There is no data into this table, even in production environment.
    I have found the SAP Note 785261 (CRM survey: Missing entries in table CRM_SVY_RE_TAOBJ) that describes a similar situation. I have applied it and after that I have provide a full repair from 0SVY_DATA_1 in order to fill out this table. However it did not work properly and the table still empty.
    Could you please, someone helps me on this issue?
    Thanks in advance,
    Silvio Messias

    No comments!

  • Not fetching any operations of a service

    HI,
    I am trying to connect to SR in CE 7.1 machine from VC 7.1. I am done with all the prerequisites   required for VC to connect to SR.
    I have defined
    1. UDDI_DESTINATION
    2. CLASSIFICATION_DESTINATION
    3. BACKEND DESTINATION.
    4. Service Registry.
    In VC when I select "Search In" in Search Panel. I selected "SERVICE REGISTRY" and System
    In order to fetch the services and their operations but it is  not fetching any operations of a service which we published in SR other than that for  default services we could see all the services and there operations in VC .
      What could be the reason? What to do for getting the operations in VC?
    Thanks
    Srikanth

    Resolved

  • Sys_refcursor not fetching any data although query returns value

    hi!!!
    I am using sys_refcursor to return columns,and using below procedure to do so.Although data is there in table_1 and table_2.
    PROCEDURE test_pro(abc_date N DATE,
    cur_get_data OUT sys_refcursor
    OPEN cur_get_data
    for
    select A.col1,B.col2
    from table_1 A
    where A.dis_date=abc_date
    left outer join
    table_2 B
    on
    A.dis_date=B.dis_date;
    IF cur_get_data%rowcount=0
    then
         raise e_error;
    END if;
    EXCEPTION
         when e_error
         then
              ------no_data_found;
         when others
         then
    --------(giving SQL error with error code);
    END      test_pro;
    while running below sql in sql window of pl/sql developer fetching
    data
    select A.col1,B.col2
    from table_1 A
    where A.dis_date=abc_date
    left outer join
    table_2 B
    on
    A.dis_date=B.dis_date;
    but while testing the test_pro in test window of pl/sql developer it is
    not fetching any data and raising e_error each time
    is there any problem arising using IF cur_get_data%rowcount=0 as each time it is going to exception block..
    so can somebody please put some ideas what cud be the possible reason for this??

    Welcome to the forum!
    Unfortunatley you posted to the wrong forum. This question belongs in the SQL and PL/SQL forum.
    PL/SQL
    >
    sys_refcursor not fetching any data although query returns value
    but while testing the test_pro in test window of pl/sql developer it is
    not fetching any data and raising e_error each time
    is there any problem arising using IF cur_get_data%rowcount=0 as each time it is going to exception block..
    >
    A cursor doesn't fetch data - your code has to do that. The code you posted doesn't have any FETCH statements so no data will be fetched.
    There is no problem using 'IF cur_get_data%rowcount=0' but it will always be 0 in your code because you are not fetching any data.
    I'm guessing that you are trying to determine if there are any rows for the query. That isn't going to work since a cursor doesn't fetch rows.
    You just have to return the cursor to the caller and the caller will have to perform at least one fetch to see if there are any rows.
    If the above answers your question the just mark the question ANSWERED. Otherwise, since you have posted in the wrong forum
    1. repost the question in the SQL and PL/SQL forum
    2. Edit this post to add a link to the new thread in the other forum
    3. Mark this question ANSWERED so people will follow up in the other forum.
    Thanks.

  • CRM_DNO_MONITOR not showing any records

    CRM_DNO_MONITOR shows all the records if using the userid used in the configuration of the service desk but does not show any records if using any other user. We even gave SAP_ALL and SAP_NEW but still does not show any records. We've gone through all the threads in SDN related to this issue but no help.
    Please provide any suggestions.
    Lalit

    Hi,
    does not show any records if using any other user.
    Check the following
    1. If the user has a Business Partner (BP) number
    2. If yes, whether his User name has been configured in Identification tab for the BP under Employee role
    You can try this in CRM_DNO_MONITOR
    1. Change the Status to "All"
    2. Change the Layout
    Regards,
    Rajesh Kumar

  • VF46 is VF44 are not showing any records, while executing

    Dear All,
    Yesterday, we have notice that T. Codes: VF44 and VF46 are not giving any records, while executing.
    Even if, we do PGI, its not reflecting in VF44.
    Could anybody suggest the probable cause and solution?
    Best Regards,
    Amit

    Hi,
    you must first execute the transaction VF42, remove all fields marked (seems to do nothing, but it makes when you run the VF44 has data)
    best regards

  • AP_Checks table not showing any records.

    I am using oracle e-business suite 11.5.x. The table ap_checks is not showing any records at all. Please let me know as when i have to look into ap_checks and when into ap_checks_all table. The code that i am looking into is running for very long time and am sure the ap_checks is waht it is pointing to and it is correct.

    Hi.
    What is the result of?:
    SQL>SELECT DISTINCT org_ig FROM ap_checks_all;
    Octavio

  • I-5 vibration function does not work - any ideas?

    i-Phone 5 vibration function does not work - any ideas why?

    I am having similar issues.  I took to Apple Genius Bar today and of course it would not do it. His suggestion was to restore iOS 6 and see what happens.  I'm currently restoring and I'll see what happens

  • Resume Keyword Search in iRecruitment is not working or fetching any record

    The following notes in the MOS did not resolve the issue.
    How does Keyword Search Work in iRecruitment? (Doc ID 732817.1)
    Candidates Keyword Search Function is Not Working in iRecruitment (Doc ID 286502.1)
    Find Candidates and Resume Search Functionality in Oracle iRecruitment (Doc ID 1069297.1)
    Resume Keyword Search On Candidates Returns No Rows (Doc ID 330512.1)
    Checklist to Search Resumes in iRecruitment (Doc ID 401364.1)
    Why Does Resume Keyword Search and Document Preview not Work in iRecruitment in Some Platforms? (Doc ID 466991.1)
    Bug 6264742 - APPSST10203: IRCTXIDO1.SQL FAILS BECAUSE OF INSO_FILTER
    What could be the Cause? Any guidance on how to debug the issue.

    You can easily get it from
    About this page -> Business Component Reference Details -> View Objects
    You can analyse these View Objects Query and can get Table Name.
    Thanks

  • Function Does Not Return any value .

    Hi ,
    I am wrtting the below funtion without using any cursor to return any message if the value enters by parameters
    does not match with the value reterived by the function select statement or it does not reterive any value that
    for the parameters entered .
    E.g:
    CREATE OR REPLACE FUNCTION TEST_DNAME
    (p_empno IN NUMBER,p_deptno IN NUMBER)
    RETURN VARCHAR2
    IS
    v_dname varchar2(50);
    v_empno varchar2(50);
    V_err varchar2(100);
    v_cnt NUMBER := 0;
    BEGIN
    SELECT d.dname,e.empno
    INTO v_dname ,v_empno
    FROM scott.emp e , scott.dept d
    WHERE e.empno=p_empno
    AND d.deptno=p_deptno;
    --RETURN v_dname;
    IF p_empno IS NOT NULL AND p_deptno IS NOT NULL
    THEN IF v_dname is NULL THEN
    v_err :='Not Valid';
    RETURN v_err;END IF;
    ELSIF p_empno IS NOT NULL AND p_deptno IS NOT NULL
    THEN IF v_dname is NOT NULL THEN
    RETURN v_dname; END IF;
    ELSE
    RETURN v_dname;
    END IF;
    END;
    Sql Statement
    SELECT TEST_DNAME(1234,30) FROM dual
    AND IF I enter a valid combination of parameter then I get the below error :
    e.g:
    SQL> SELECT TEST_DNAME(7369,20) FROM dual
    2 .
    SQL> /
    SELECT TEST_DNAME(7369,20) FROM dual
    ERROR at line 1:
    ORA-06503: PL/SQL: Function returned without value
    ORA-06512: at "SCOTT.TEST_DNAME", line 24
    Where I am missing .
    Thanks,

    Format you code properly and look at it:
    CREATE OR REPLACE
       FUNCTION TEST_DNAME(
                           p_empno IN NUMBER,
                           p_deptno IN NUMBER
        RETURN VARCHAR2
        IS
            v_dname varchar2(50);
            v_empno varchar2(50);
            V_err varchar2(100);
            v_cnt NUMBER := 0;
        BEGIN
            SELECT  d.dname,
                    e.empno
              INTO  v_dname,
                    v_empno
              FROM  scott.emp e,
                    scott.dept d
              WHERE e.deptno=d.deptno
                AND e.empno=p_empno
                AND d.deptno=p_deptno;
            --RETURN v_dname;
            IF p_empno IS NOT NULL AND p_deptno IS NOT NULL
              THEN
                IF v_dname is NULL
                  THEN
                    v_err :='Not Valid';
                    RETURN v_err;
                END IF;
            ELSIF p_empno IS NOT NULL AND p_deptno IS NOT NULL
              THEN
                IF v_dname is NOT NULL
                  THEN
                    RETURN v_dname;
                END IF;
             ELSE
               RETURN v_dname;
           END IF;
    END;
    /Both p_empno and p_deptno in
    SELECT TEST_DNAME(7369,20) FROM dualare not null. So SELECT will fetch some v_dname and v_empno. Since p_empno and p_deptno iare not null your code will go inside outer IF stmt and will execute its THEN branch. That branch consist of nothing but inner IF statement. And since v_dname is NOT NULL it will bypass that inner IF and exit the outer IF. And there is no RETURN stmt after that outer IF. As a result you get what you get - ORA-06503. Also, both if and elsif in your code check same set of conditions which makes no sense.
    SY.

  • FDM for PBCS - Drill Thru does not return any records in landing page

    This is referring to the Data Management functionality in PBCS, not on-premise FDMEE.
    I loaded in a file, for example:
    Region|Product|Account|Amount
    10|100|1000|9,000
    10|100|1000|1,000
    In FDM, I am using a multi dimensional map to derive another field. For example, if Region is 10 and Product is 100, than Department = 555.
    so in FDM, I would end up with
    10|100|1000|555|9,000
    10|100|1000|555|1,000
    Once loaded to PBCS, that loads in as:
    10|100|1000|555|10,000
    I built a form that shows this intersection, and then 'drilled to source'. When I get to the FDM landing page, there are no records shown. Is this because the derived field (department) does not exist in the source, or am I doing something wrong?
    Appreciate any help.

    Do you have access to the server logs by any chance?
    Can you check the dimension class for your Scenario dimension in your target application? is it set to SCENARIO?
    not showing source records is typically related to FDMEE not finding values in TDATASEG table.
    HTH

  • Delta package not fetching all records from Delta queue in r/3

    Hello,
    I have loaded Goods Movement Data using 2LIS_03_BF datasource into my BI system.
    The Delta has been initialized and everyday the delta is being moved from r/3.
    I observed that when I execute my delta package not all delta records are fetched into PSA from r/3.
    For Ex: Before starting my delta package I checked in SMQ1 of my R/3 system and see that there are around 1000 records.On executing the delta package I see that the record count is reduced from 1000 to 400 in SMQ1.On executing the delta package again I get the remaining 400 records into my PSA.
    Shouldn't the delta package get all records from the queue on single execution??
    Is there some setting to define the nr of records to be loaded?
    I'm confused with this behaviour.Please help me understand this behaviour.
    Thank You.

    Hello,
          First thing: the data is not transferred from the SMQ1 queue, rather the data is transfered to BW from the RSA7 Delta queue. You need to check the number of records present in the RSA7 queue.
    Since SMQ1 is involved, i think you are using the unserialized V3 update method. In this method, when data is first written to the application tables, it is first transferred to the SMQ1 update queue,then via a job to the LBWQ extractor queue and then to the RSA7 delta queue. So the number of entries that you see in the SMQ1 queue are not the number of entries that have to be transferred to BW but rather the records that are waiting to be transferred to the extractor queue in LBWQ. Similarly, in LBWQ, the number of entries displayed here are not the no of entries that are going to be transferred to BW, they are the no of entries that will be transferred to the delta queue RSA7 when the next v3 update job runs.
    If you want to check the number of records that will be transferred to BW, select the datasource in rsa7 and then click on the display data entries button.
    Hope this helps.
    Regards.

Maybe you are looking for

  • Orchestral midi loops fx not translating to arrange

    when i audition these orchestral loops in the media browser i hear them with massive reverbs, very convincing, perhaps a little bit overdone here and there but still impressive when i transfer these to the arrange they lose all the effects and appear

  • Loosing my tweens

    Hi all I think I posted about this before when Flash 8 first came, but I never got any answers. So now that Flash 8 is on its way out, I'm thinking someone else has come across this problem and has figured out a fix for it at this point. I have some

  • I can't see the virtual consoles in one x86_64 machine

    Hi to everyone: I have one problem with my system: my graphical mode works fine, but when press Alt + (F1 ... F6); I can't see nothing: only one black screen and one blinking cursor (_) I'm using KDE 4.3.3-1 on xorg-server 1.7.1.901-2. Someone else w

  • I want to display the print preview by using JavaScript.

    Can the print preview be displayed by using JavaScript?

  • How to dynamic select based on runtime value ?

    how to dynamic select based on runtime value ? I want to write a select function, which do selecting based on parameters. eg, CREATE OR REPLACE FUNCTION myfunction (tableName VARCHAR2, pkName VARCHAR2, pkValue VARCHAR2, requestString VARCHAR2) RETURN