Not able to fetch data using Scenario

Hi
I am working with Quincy Fund Demo. In that we have investorhome.jsp page, where we have following code to get the offer Advertisement data.
<dsp:droplet name="/atg/targeting/TargetingFirst">
<dsp:param bean="/atg/registry/Slots/QFOfferSlot" name="targeter"/>
<dsp:param name="howMany" value="1"/>
<dsp:param name="fireContentEvent" value="false"/>
<dsp:param name="fireContentTypeEvent" value="false"/>
<dsp:oparam name="output">
                    <dsp:a href="offer.jsp">
<dsp:param name="ElementId" param="element.repositoryId"/>
<img border="0" src="<dsp:valueof param="element.imageURL"/>"></dsp:a>
</dsp:oparam>
</dsp:droplet>
And the scenario I am trying to use is PromoteSpecialSituations.( Please refer ACC for Quincy fund demo).
But my problem is that I am not able to get any data from this scenario.
Can anyone tell me the reason behind it and its solution?
Thanks
Prasanna

Hi Shaik
Here is the detail of that scenario
(event) Logs in ------(people) Locale is en_US-------(fork)-----
--------------(people) Fund list includes ---------------|
| /repositories/Funds/en_US |
| /specialsituation.xml |
|
-----------|(Otherwise Cond)--Add items to slot
named QFOfferSlot
named Offers:offer:
/repositories/Offers/en
_US/specialsituations.html
The content of specialsituation.xml file is as follows:
<fund>
<aggressiveIndex>2</aggressiveIndex>
<targets>aggressive</targets>
<fundName>Quincy Special Situations Fund</fundName>
<symbol>QUISS</symbol>
<category>stock</category>
<type>Growth; Income</type>
<price>5.69</price>
<language>de_DE</language>
<objective>Quincy Special Situations Fund seeks high total return through
capital appreciation and income.
</objective>
<strategy>This fund pursues capital appreciation and current income by
buying stocks with deeply-depressed prices that fund management believes
have the potential for recovery. Fund management searches for three types
of value stocks: stocks with high current dividend yields, stocks
temporarily discounted by the market, and stocks that management
believes are fundamentally misunderstood but have great potential. The
depressed prices of these stocks make them more responsive to
company-specific news than to general stock market trends.
</strategy>
<inceptionDate>02/15/1992</inceptionDate>
</fund>
Thanks
Prasanna

Similar Messages

  • Not able to select data using DB link.

    Hi ,
    I have created the database link in oracle 8.1.7.0.0 to oracle 8.1.7.4.0
    But I am not able to select data using DB link.
    The error is = ORA 12154 : TNS: could not resolve service name.
    I have created the DB link with the same command in oracle 9.2.0.4.0 to oracle 8.1.7.4.0. I can select data using this link.
    Please suggest me the solution.
    Thanks,
    Shailesh

    If the service name is different on the 8i machine than on the 9i machine, you'll need to modify the service name when creating the link from 8i. Can you see the DB link in ALL_DB_LINKS in the 8i database?

  • PCA query not able to fetch data

    HI All, I have installed PCA Business content cube and all the queries available in the Business content relavant to the PCA cube. I have loaded one quarter worth of data. The Profit center - Balance sheet and Profit center - Income statement queries are not able to fetch any data. I am able to execute te query but the report has no data in it.
    Can any one suggest me if there is any thingthat I can do or any ways to dedbug this query.
    Has any one encountered similar poblem

    Are you executing this query "wide open" or you using Characteristic Restrictions and/or Variables that could be filtering out your data? Did you try executing the query using tcode RSRT via 'Execute + Debug'? That may help. Also, take a look at the source InfoProvider in LISTCUBE using the same criteria as the query to see if any data retrieve via that method.

  • Web Template is not able to fetch data from Data Provider

    hi friends,
               i have created a reporting agent for a particular query and given all the necessary parameters, defined the variants and activated this and created a scheduling package to this ,assigned my query to the scheduling package
               later in the web template,in the web item tab i maintained  the read mode as precalculated web template and the final report on the web is saying web tempalte is not able to get the data from the data provider  ,
    am i missing any where...
            i look forward to your help ,
    regards,
    sasidhar gunturu

    Hi,
    use the correct link to call the report.
    you can check the links : Re: Concept Of Precalculated Template
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/a8cd1f71-0a01-0010-4783-f119b6132d25 [original link is broken]
    Regards
    Happy Tony

  • I am not able to fecth data using this statement

    Hi All,
    Iam getting problem when i was using select queiry based on vbak,vbap and konv tables.
    Error is i am not able to get  all condition types but i am getting only first record
    Example...
    number of the document condition which is KNUMV
    condition item number which is KPOSN
    condition type which is kshcl
    knumv              kposn             kshcl
    00000002          000100        zpro
    00000002          000100        zdsc
    00000002          000100        zima
    00000002          000100        zpak
    but iam getting only first fecord not getting all the records
    like
    000000002    000100    zpro
    code is ..........
    *select Sales Document: Header Data and Item Data from vbak and vbap
    select avbeln aerdat aernam aauart avkorg avtweg aspart akunnr avkbur avkgrp alifsk afaksk aaugru aknumv
           bposnr bmatnr bwerks blgort bkwmeng bpstyv babgru bbedae blprio bvstel bntgew bbrgew
           bvolum bfaksp bktgrm btaxm1 babfor bkalsm_k bmatkl bkondm bgsber bprctr
           into corresponding fields of table it_vbak
           from vbak as a inner join vbap as b on avbeln = bvbeln
           where a~vbeln in lr_vbeln and
                 a~vkorg in lr_vkorg and
                 a~vtweg in lr_vtweg and
                 a~spart in lr_spart and
                 b~werks in lr_plant and
                 a~auart in lr_auart and
                 a~erdat in lr_erdat.
    Move all the data to it_sorder
      IF sy-subrc = 0.
        LOOP AT it_vbak.
              MOVE-CORRESPONDING it_vbak TO it_sorder.
              APPEND it_sorder.
              CLEAR it_sorder.
        ENDLOOP.
      ENDIF.
    *select Conditions from konv
    IF NOT it_sorder[] IS INITIAL.
        SELECT knumv kposn STUNR KAPPL ZAEHK kschl kbetr KAWRT
               INTO CORRESPONDING FIELDS OF TABLE it_konv
               FROM konv FOR ALL ENTRIES IN it_sorder
               WHERE knumv = it_sorder-knumv and
                     kposn = it_sorder-posnr.
      ENDIF.
    Read Conditions  from it_konv move it to it_sorder
      sort it_konv by knumv .
       sort it_sorder by knumv .
        LOOP AT it_sorder.
        READ TABLE it_konv WITH KEY knumv = it_sorder-knumv
                                    kposn = it_sorder-POSNr binary search.
        IF sy-subrc = 0.
          it_sorder-Kposn = it_konv-kposn.
          it_sorder-STUNR = it_konv-STUNR.
          it_sorder-KAPPL = it_konv-KAPPL.
          it_sorder-ZAEHK = it_konv-ZAEHK.
          it_sorder-kschl = it_konv-kschl.
          it_sorder-kbetr = it_konv-kbetr.
          MODIFY it_sorder.
          CLEAR it_sorder.
        ENDIF.
        CLEAR it_konv.
      ENDLOOP.
    pls can you help me
    thanks
    mars

    I think the problem is here:
    sort it_konv by knumv .
    sort it_sorder by knumv .
    LOOP AT it_sorder.
    READ TABLE it_konv WITH KEY knumv = it_sorder-knumv
    kposn = it_sorder-POSNr binary search.
    There will be mulitple lines in it_konv with this key so it will only return the first. You need a second loop round it_konv eg:
    LOOP AT it_conv WHERE knumv = it_sorder-knumv and kposn = it_sorder-POSNr.
    * do stuff here
    ENDLOOP.
    Try that and see if it helps...
    Andy

  • Not Able To Fetch Data

    hi,
    im creating an application using web service model.
    when i run my application i get  "  Service call exception "
    After i insert a field the exception goes.
    on insertion of this field i shuld fetch data from the table.
    bt im nt able to do so.
    can anybody plz suggest coding for my insert button.
    THANX.
    regards,
    Ankita

    Hi,
    Pl go through this https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/900bbf94-a7a8-2910-e298-a651b4706c1e
    Regards
    Ayyapparaj

  • Not able to Import data using "clear and replace"

    Hi,
    If I import data using the data admin package "Import" and "Merge" as 'method for importing' the process runs without problems.
    If I change the 'method for importing' to "Clear and Replace" the process fails. See message:
    TOTAL STEPS  2
    1. Convert Data:         completed  in 3 sec.
    2. Load and Process:     Failed  in 1 sec.
    3. Import:               completed  in 1 sec.
    [Selection]
    FILE=\UHRENHOLT\LEGAL_DATALOAD\DataManager\DataFiles\\Axapta_Load.txt
    TRANSFORMATION=\UHRENHOLT\LEGAL_DATALOAD\DataManager\TransformationFiles\\Axapta_Load.xls
    CLEARDATA= Yes
    RUNLOGIC= Yes
    CHECKLCK= Yes
    [Messages]
    Key cannot be null.
    Parameter name: key
    I'm uisng the standard data admin package (and thereby the values 0 and 1). For some reason the value 1 is not accepted.
    Any suggestions?
    /Lars

    Hi,
    The "Replace & clear..." feature during data import depends on Work Status. So to use this functionality, you need to setup Work Status under your application. Notice that you need to setup Work Status even if you aren't selecting the option to check Work Status when running the package.
    Hope this will help you.
    Kind Regards,
    Patrick

  • I am not able to fetch data from r3

    Hi all,
    we have schduled process chain for transaction data and master data.when check the process chain status is green.
    but when not a single record is coming for any of the process chain.when i check the step by step analysis.
    gray RFC to source system successful ?
    red  Does selectable data exist in the source system?
    red  Data selection successfully started ?
    red  Data selection successfully finished ?
    gray RFC to Warehouse successful ?
    gray Processing successfully finished?
    gray All reported data packets received?
    gray All data packets complete ?
    remaining things are in green status.
    for every thing it is fetching zero records.i have already checked rfc connection and all the update and tranfer rules.every thing is fine.
    can anybody help me out...
    regards,
    viren.

    Hi,
       well,,I have after lot of replies,.. so let me see..
       I understand this is LO extraction. Also, since your load is running in Process chain, I "assume" these are delta loads.( right?). You also say there are records in the related tables.
      So, I feel, foll. are the things that you may need to check.
       1. Did you check in RSA7 for delta records?
       2. Did you check if the delta jobs are running fine to collect the data from the application tables?
       3. Did you correctly do the settings for delta for your extract structure?(direct delta, queued delta.. etc)
       4. These are the basic settings that will ensure that the delta records are collected in the right way!!!
        Once all the above listed are fine, then you should be able to see some data collected in your delta Q( assuming ur loads are delta loads)
        Let us know!!!
    Thanks,
    Raj

  • Not able to send mail using Scenario.

    Hi All,
    I am getting below line in debug log.
    /atg/scenario/IndividualEmailSender
    Unable to send email to recipient: Customer:150002. Email status is set to invalid
    DEBUG SMTP: connected to host "pro.turbo-smtp.com", port: 25
    EHLO Jitendra-HP
    250-turbo-smtp.com
    250-AUTH LOGIN PLAIN
    250-AUTH=LOGIN PLAIN
    250-PIPELINING
    250-8BITMIME
    250 SIZE 20000000
    DEBUG SMTP: Found extension "AUTH", arg "LOGIN PLAIN"
    DEBUG SMTP: Found extension "AUTH=LOGIN", arg "PLAIN"
    DEBUG SMTP: Found extension "PIPELINING", arg ""
    DEBUG SMTP: Found extension "8BITMIME", arg ""
    DEBUG SMTP: Found extension "SIZE", arg "20000000"
    DEBUG SMTP: Attempt to authenticate
    AUTH LOGIN
    334 VXNlcm5hbWU6
    aml0ZW5kcmEudmlzaG5vaUB0ZWNobWFoaW5kcmEuY29t
    334 UGFzc3dvcmQ6
    aml0ZW5kcmE=
    235 ok, go ahead (#2.0.0)
    NOOP
    250 ok
    NOOP
    250 ok
    NOOP
    250 ok
    QUIT
    221 turbo-smtp.com
    Below is the configuration for properties file.
    # /atg/scenario/IndividualEmailSender
    #Wed Jan 22 01:28:09 IST 2014
    contextPathPrefix=^/Constants.null
    loggingDebug=true
    # /atg/userprofiling/email/TemplateEmailSender
    #Wed Jan 22 00:42:17 IST 2014
    loggingDebug=true
    contextPathPrefix^=/Constants.null
    # /atg/dynamo/service/SMTPEmail
    #Thu Jan 23 00:29:25 IST 2014
    defaultFrom=[email protected]
    defaultSubject=o lala laa
    emailHandlerHostName=pro.turbo-smtp.com
    emailHandlerPort=25
    loggingDebug=true
    password=Pass@123
    username=[email protected]
    Any one please help.
    Thanks in advance.

    from the Personalization Programming Guide
    "Each time TemplateEmailSender sends an e-mail message, it generates an event of class atg.userprofiling.email.TemplateEmailEvent, which indicates whether or not the message was successfully sent. For example, suppose you create a mailing with 10 recipients, and 1 message does not get sent because the recipient has an invalid e-mail address. TemplateEmailSender generates 10 template e-mail events, 9 indicating success and 1 indicating failure.
    When a message fails, TemplateEmailSender looks at the e-mail address of the failed message, finds all profiles that use that address, and marks those profiles as being ineligible for receiving e-mail by setting the emailStatus property to invalid."
    So check the emailStatus attribute of the profile Customer:150002, if it is false set it to true..

  • Not able to query data from View

    Hi,
    I am not able to fetch data from views even while running simple select statements. I am using SQL Developer Version 3.0.04,
    Same query is fetching data on other computers running SQL Developer or Toad.
    Has anyone faced this issue??

    Is that the first version ever you installed? You unzipped in a clean directory, right?
    What OS/JDK/DB versions?
    So do you get an error or what?
    K.

  • Not able to fetch the data by Virtual Cube

    Hi Experts,
    My requirement is I need to fetch the data from Source System (From Data base table) by using Virtual Cube.
    What I have done is I have created Virtual Cube and created corresponding Function Module in Source System.
    That Function MOdule is working fine, if Data base table is small in Source System.But If data base table contains huge amount of data (millions of record), I am not able to fetch the data.
    Below is the code I have incorporated in my function module.
    c_th_mapping TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_TH_IOBJ_FLD_MAPPING.
      DATA:
        l_s_map TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_S_IOBJ_FLD_MAPPING.
      l_s_map-iobjnm = '0PARTNER'.
      l_s_map-fldnm  = 'PARTNER'.
      insert l_s_map into table l_th_mapping.
    create object l_r_srv
        exporting
           i_tablnm              = '/SAPSLL/V_BLBP'
          i_th_iobj_fld_mapping = l_th_mapping.
      l_r_srv->open_cursor(
        i_t_characteristics = characteristics[]
        i_t_keyfigures      = keyfigures[]
        i_t_selection       = selection[] ).
       l_r_srv->fetch_pack_data(
        importing
          e_t_data = data[] ).
      return-type = 'S'.
    In the above function Module,Internal table L_TH_MAPPING contains Info Objects from Virtual Cube and corresponding field from Underlying data base table.
    The problem where I am facing is, in the method FETCH_PACK_DATA, initially program is trying to fetch all the recordsfrom data base table to internal table.If Data base table so lagre, this logic is not working.
    So would you please help me how to handle these kind of issues.

    Hi Experts,
    My requirement is I need to fetch the data from Source System (From Data base table) by using Virtual Cube.
    What I have done is I have created Virtual Cube and created corresponding Function Module in Source System.
    That Function MOdule is working fine, if Data base table is small in Source System.But If data base table contains huge amount of data (millions of record), I am not able to fetch the data.
    Below is the code I have incorporated in my function module.
    c_th_mapping TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_TH_IOBJ_FLD_MAPPING.
      DATA:
        l_s_map TYPE CL_RSDRV_EXTERNAL_IPROV_SRV=>TN_S_IOBJ_FLD_MAPPING.
      l_s_map-iobjnm = '0PARTNER'.
      l_s_map-fldnm  = 'PARTNER'.
      insert l_s_map into table l_th_mapping.
    create object l_r_srv
        exporting
           i_tablnm              = '/SAPSLL/V_BLBP'
          i_th_iobj_fld_mapping = l_th_mapping.
      l_r_srv->open_cursor(
        i_t_characteristics = characteristics[]
        i_t_keyfigures      = keyfigures[]
        i_t_selection       = selection[] ).
       l_r_srv->fetch_pack_data(
        importing
          e_t_data = data[] ).
      return-type = 'S'.
    In the above function Module,Internal table L_TH_MAPPING contains Info Objects from Virtual Cube and corresponding field from Underlying data base table.
    The problem where I am facing is, in the method FETCH_PACK_DATA, initially program is trying to fetch all the recordsfrom data base table to internal table.If Data base table so lagre, this logic is not working.
    So would you please help me how to handle these kind of issues.

  • Not able to display data in separate columns using Unicode encoding

    Hi,
    Iam using Unicode encoding in my Java appln to support Japanese characters while downloading CSV report. But using the Unicode encoding displays all data in the first column of Excel sheet.
    Please let me know how to display data in different columns using Unicode encoding in Excel sheet.
    This is an urgent need. Please help me out.

    Hi,
    I have no problem with item :P15_EV_LCL this is having a value my probem here is i am using java script to display the value in different color based on the condtion case
    eg:
    select
    case
    TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2)
    = :P15_EV_LCL
    then
    span style="background-color:lightgreen"
    || TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    else
    span style="background-color:yellow"
    || TRUNC(
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    end "Effort"
    from actuals Z
    If i dont use this <Span style="Background-color:color"> i am able to generate data in excel sheet if i use this color coding i am not able to get data in spread sheet.
    Please suggest
    Thanks
    Sudhir
    Edited by: Sudhir_N on Mar 23, 2009 10:00 PM

  • Data Federator not fetching data USING Netweaver BI Connector

    Hi Gurus,
    We have upgraded the BW system to use the Data federator.
    callback ID that SAP NetWeaver BI uses to contact Data Federator has been configured as mentioned in guide.
    we have already configured the CONNECTOR and we are able to test the connection in DF Designer and the connection is successful. i am able to see the list of fact tables and i am saving the data source and making it final and deployying my project .
    i am using the jdbc connection and  data federator strategy and  the strategy is also creating the joins and classed automatically. when i export my universe and try to create the webintelligence report i am unable to see the data .even when i execute with one  object  and one keyfigure it is same .
    even when i test my data source in designer to view the data using query tester tool it is also not able show the data it takes huge time and no data getting retrieved .
    i would appreciate if you could help me with this issue
    Regards and thanks
    Abid

    Hi,
    Which version of Data Federator are you using ? Direct access to ECC table is not yet supported using Data Federator.
    Jean-Pierre

  • Not able to fetch Roles for an user using HWF Identity XPath

    Hi,
    I am not able to fetch list of roles for a specific user using Human Workflow, Identity XPath. Using Script Activity when I am trying to call the menthod, the method doesn't return Role details. Any help will be appreciated...

    That's the rules of how it works.  A request has 1 request form per resource for all users on the request.  Those fields must all be marked as available in bulk as well to be viewed if you have more than 1 user on the request.  If you need to provide different values based on the user, your best option is pre-populate adapters on the process form and use logic to populate the fields.  You will not be able to manually provide different values during the request.
    -Kevin

  • Not able to fetch some network switches data in LMS 4.0

    Hi Experts,
     we have LMS 4.0 and we found one problem that some network switches data are not able to fetch with LMS.
    what could be the reason to happen this type of problem?
    please assist with best solution to resolve this issue..
    Suhas B.

    Hi,
    I am facing below problem
    Config Archival Status
    No. of Devices
    Successful
    48
    Failed
    1
    Partially Successful
    0
    Total
    1345
    Configuration Never Collected
    1338
    So I look up a device in the Device Center, here is its Reachability Status:
    SNMPv1 Read
    Success
    SNMPv2c Read
    Success
    SNMPv1 Write
    Failed
    SNMPv2c Write
    Failed

Maybe you are looking for