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é

Similar Messages

  • 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

  • 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

  • Service entry Sheet does not pick any Condition charges From Service PO

    Hi All
    Service entry Sheet does not pick any Condition charges From Service PO. What could be the reason ?

    HI,
    Please check Sap note 381030
    Along with other thing It says
    "Delivery costs are generally not supported in external services management and in case
    of blanket purchase orders, item category D or B. Instead of representing delivery
    costs via conditions, in case of service documents, freight costs and other, SAP
    recommends to add in additional service lines."
    So that is the reason you are not getting those account entry in the time of service entry sheet
    Use another service line with text ( or service master) for the additional costs as suggested by SAP
    Hope it clarifies

  • 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.

  • 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...

  • Table Browser does not 'fetch' any tables back from Database.

    Post Author: StevenL
    CA Forum: Semantic Layer and Data Connectivity
    When I click on 'table browser', after waiting overnight (not me, physically..), the list of modules are shown but with no tables in. If I click on a module's contents it says 'Fetching tables' for a split secind before returning nothing. If I do a refresh the modules list goes blank. I have been able to do this until very recently, my Connection, user Account (Supervisor-Designer), BO version (6.5.1, ORACLE Database 10g) etc have all not changed. The problem we have is because there is more than 20 000 tables to return when 'table browser' is clicked and this takes overnight. Other users here with same resp. can all come in next morning to a full list to choose from - except me. We're all confused. Can anyone offer suggestions to what this could be?u201D A trace file setup via sqlnet.ora revealed nothing.
    Has anybody got any suggestions here or methods of finding out more information?
    Many thanks in Advance..
    StevenL

    Post Author: StevenL
    CA Forum: Semantic Layer and Data Connectivity
    Well well. The good old remove and re-install has worked! Can't understand it. After simply getting the product re-installed, I opened up Designer, imported 2 differing Universes that used the LIVE Finance Database that was causing me the problems, clicked on table browser, waited approximately 60 seconds, hit escape, all tables were visible, I dragged and dropped no problem. I didnt need to reconfigure and create new BO Database Connections, replace the BoMain Key, in fact, anything. Totally mystery yet it works so Im happy!" Many thanks for all who read, helped or assisted.
    Steven

  • Invoice History Report not fetching any data without parameters

    Hi
    As per user guide, you can run the Invoice History Report without giving supplier parameter. "If you want to submit the report for one supplier, enter the supplier. Leave this parameter blank to submit the report for all suppliers."
    But when we run the Invoice History Report, if we don't give any supplier, no data is coming in the report. If we give a supplier, data for that supplier is fetched by the report.
    Has anyone faced this issue, is there any solution for this?
    We are on the Oracle Apps 12.1.1 and the version on the report RDF is 120.11.12010000.5
    Thanks!

    Hi,
    could you copy the MDX here ?
    Would you be able to use ST01 / ST05 to trace further details ?
    You can also go into the registry :
    HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 12.0\SAP\BW MDX Query Driver
    set the Trace to Yes
    then use the path:
    HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 12.0\SAP
    set the "TraceDir" to the path for the logfiles
    Ingo

  • Sql developer could not fetch any data while running queries?

    I have  downloaded  SQL Developer , install jdk1.5.0_22  from the website. Then I run sqldeveloper.exe browse the jdk folder. After that i established the connection but it continuously showing loading..No tables No procedures are loaded . what should i do?

    Be careful... SQL Developer requires a JDK or the server JRE (which I believe only comes in 64-bit, so go with the JDK if you are on a 32-bit OS).
    Prior to 4.0, the SetJavaHome line in your install directory's sqldeveloper.conf (or sqldeveloper-Darwin.conf on the Mac) must be set, but in 4.0 and above that changes to product.conf under your OS's user settings.  For Windows 7, that would be in...
    C:\Users\<your-userid>\AppData\Roaming\sqldeveloper\1.0.0.0.0\product.conf
    Hope this helps.  If not, assuming Windows, run sqldeveloper.exe in the bin directory from a command line console so you can see any standard error output in the console, or do a Ctrl-Break to get a full thread dump of what's happening in the JVM.

  • In-Store pickup does not show any stores in Commerce Service Center

    Hi All,
    I have configured ATG 10.2 and the CSC with it. I can see the "Pickup In-Store' button when I try to place an order as an agent, but when I click it, the popup says "No Store Found."
    I have verified that the item has onlineOnly flag as false (so item can be picked up in store). Also the CSRConfigurator flag is true, I also see the locations and stores in ACC.
    Please help me at the earliest. Thanks for your help!
    Regards,
    Akshay

    For reference, your feed is at
    http://missionbaptist.com/feed/mbcaudio.xml
    The 'enclosure' tag for 22 July reads:
    <enclosure url="http://missionbaptist.com/audio/Sermons/2012/2012.07.22%20Failure%20of%20Man%20&%20Victory%20of%20God.mp3" length="1" type="audio/mpeg" />
    has an ampersand which should not be there (I've highlighted it in red - you may need to scroll right to see it). As a general rule you should not have spaced in filenames: spaces are not allowed in a URL. Your feed has correctly substituted the code %20 for each space, but it's really something you should avoid - the usual practice is to replace spacdes with an underscore. Also, the 'length' should be the file size in bytes, not '1'. Nonetheless, it's the ampersand which is now wrecking your feed.
    There is a similar issue in the media file URLs for 29 April and 11 October - in this case it may not wreck the feed as it is the @amp; code but it shouldn't be in a URL. it may be that the original URL does contain an ampersand, but if dealing with the first error above doesn't solve the problem you should look into changing these.

  • DTP is not fetching any data eventhough data is there in psa

    Hi All,
    I need to load data from existing data source(2lis_03_bf) to new data target, data is available in data source for last 1 year, as my client is retail, and also huge data i tried to load data with filter on BUDAT, for 1 month, but dtp says data is not avialble, i cant run whole data in asingle shot.
    i created new dtp and tried with other selections , even then its showing no data available, i tried with full and delta update in dtp but no luck.
    Kindly suggest me.
    Regards,
    Yunus

    Hi Yunus,
    I believe that your DTP was Delta DTP & i think you might have already loaded the data into the Datatarget. So when you try to run the Delta DTP, it is possible that there is no new Data.
    (Or) If you have not loaded the PSA requests to your Datatarget, delete the already created DTP.. Then create a new FULL DTP, activate it & try loading.
    (Or) create different DTP's with different selections with no overlapping in the selections. Make sure that the selections you are giving are having data in PSA.
    Hope it helps!
    Regards,
    Pavan

  • TS3274 ipad does not response any operation

    my ipad 4 does not operate anything, its looks like ipad is standby now its useless within15 hours, i dont know what to do..
    <Edited by Host>

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Cursor with clause not fetching / retrieving any rows, happens very 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);
    cursor looks
    CURSOR LCU_GET_ADJ_JN_CAT_DET IS WITH LCU_GET_ROWS_DETAILS AS(
    -- followed by select (  ) --
    --ending with
    SELECT *
            FROM (SELECT ROW_DET.* FROM LCU_GET_ROWS_DETAILS ROW_DET),
                 (SELECT COUNT(1) TOTAL_RECORDS,
                         SUM(ENTERED_DR) TOTAL_CLOSING_DEBIT,
                         SUM(ENTERED_CR) TOTAL_CLOSING_CREDIT
                    FROM LCU_GET_ROWS_DETAILS ROW_SUM)
    we need total_records, total_closing_debit & total_closing_credit.
    please suggest..

    This how the cursor looks like;
    CURSOR LCU_GET_ADJ_JN_CAT_DET IS WITH LCU_GET_ROWS_DETAILS AS(
          SELECT <columns1>
            FROM (SELECT <columns2> from table1 <conditions>             
                   GROUP BY
                  UNION ALL
                  SELECT <columns3> from table2 <conditions>
                  GROUP BY )
           WHERE (columns1_1 <> 0 OR columns1_2 <> 0)
           GROUP BY )
          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 NATURAL_ACCOUNT, BRANCH_CODE, TRANS_CURRENCY;

  • Crystal Report not fetching data

    Hi Everyone,
    I have a crystal report which is not fetching any data but when I run the same sql in the database the data comes.Can anyone please help me in finding what exactly the problem is.
    Regards,
    Neeraj

    Sorry we can't help you, not enough info.
    See Rules Of Engagement.
    What have YOU done to debug the problem?
    Version of CR and any patches?
    Database connecting to and any patches?
    Version of Database Server and Client?
    How are you connecting, ODBC, OLE DB or Native?
    What error are you getting?
    Don

  • New posted data in underlying table is not fetched in datasource (RSA3).

    Hi Gurus,
    I am using DataSource 0CA_TS_IS_1 in RSA3. To meet the requiremnt we posted some new data in the underlying database transparent table (CATSDB).  But datasource is not extracting new data whatever is posted in underlying database transparent table (CATSDB).  This is standard SAP delivered datasource.
    Is there any conditions to be followed to post the entries in table (CATSDB) so that it will be extracted by the datasource 0CA_TS_IS_1 in RSA3 and then later in BW.
    Thanks in advance.
    Uday Shankar.

    After posting new data in the table (CATSDB), functional guys should execute TIME EVALUATION jobs in source system (R/3 or ECC). Otherwise 0CA_TS_IS_1 would not fetch any data in RSA3 and then in BW.

Maybe you are looking for

  • Cannot open hotmail in ipad

    Hi for 2 days now I cannot use hotmail from Mail. Error message said no connection to server. I tried to open from safari and got the same error. There is no problem opening in iPhone. How can resolve problem on ipad please?

  • I E ping error: User XIRWBUSER has no RFC authorization for ...

    Hi all, In the RWB->Component Monitoring when I select the "Integration Engine" it is giving ping error and Self-Test Status errors. Ping error: <b>User XIRWBUSER has no RFC authorization for function group CHECKRFCS</b>. Self-Test status: <b>JCo req

  • OSB 10gR3 memory usage

    I have been experiencing "out of memory" type errors on several of our OSB development and certification boxes. We haven't even begun to drive real load through the OSB which is causing me more than a little concern. First a little background. We hav

  • Can't see my JLabel or JTextField

    When i run my code i cant see my Label or Text Field unless I hover over it. Someone told me to write paintComponent() instead of paint() and this does show the label and my text field but then it doesnt show do the code g.drawString(.......); Does a

  • Release strategy for goods reservation.

    Hi Experts, I have client requirement for developing a custom release strategy for goods reservation in MM since there is no such strategy available in standard SAP. Would you please give some idea on how to go about it? Thnx in advance. Sudipto Chou