Cached Parameter Dynamic Values

I hope someone in this forum can help out. I created a report that depends on the database values of a field and it seems to be getting cached.
When I query the database the values are there, when I run the report the values are read correctly, it just seems like the values are saved in the parameter? The dynamic field also creates many results and I would love to filter the results if at all possible by another field. I know you can do it, but it would have to work with crystalreports.com as well.
Thanks

I paid the couple hundred bucks and got some help.
There is a limitation at 1000 records and to get around it you need to edit your registry:
HIKEY_CURRENT_USER >>Software>>Business Objects>>Suite12.0>>Database Options>>LOV
create
MaxRowsetRecords value:#(I set it to 2000)
This allowed me to query on my local machine the additional records.
This will not work on crystalreports.com. I created some custom tables to pull the specific records instead of all my records, imported the records into the new table and then created some APEX code to update the table whenever a new record was created that fit what I needed for reporting.
An idea would be to allow us an opportunity to filter the parameter values vs dumping the whole table into these picklists. It's not the sexiest fix, but it is a fix.
Thank you to all who tried to help. I tried to not do it this way, but it looks like the only solution.
Edited by: egoehring on Mar 30, 2011 1:29 AM

Similar Messages

  • Default Parameter Dynamic Values in BIP

    Hi All,
    I have Period Name which is Varchar data Type and has values like JAN-2014, so I want to set the Default Parameter value to previous month dynamically. I tired setting with {$To_Char(Add_Months((Sysdate),-1),'MON-YYYY')$) but it didn't work as I thinking for using this Data Type should be only DATE format.
    Any Help or Thoughts
    Thanks
    SYK

    Hello,
    We are trying to create a BI Publisher Report in Siebel by passing the values dynamically from Siebel field to report. Is it possible to
    1. Pass dynamical values to parameter values of type picklist from Siebel, while executing BI Publisher Reports?
    As far as I am aware, it is not possible to have picklist values to be passed on from Siebel while executng BI Publisher reports.
    2. Select more than one value in the parameter values while executing the report?
    Parameters can have one of the many values defined while generating the report.
    3. How to attach Calendar as a parameter to the report?
    No, one cannot have calender as a parameter to the report. You can define the parameter as a sting and users can enter a date value in that string.
    Thanks
    Swarna

  • How can we use C# to read dynamic parameter's value list from .rpt?

    I'm using Cystal Report 2008. We know starting from CR XI we can create dynamic parameters, the list of items of this kind of parameter are fetching from database. So in general the SQLs to get the list of values for dynamic parameters are stored in the .rpt.
    In Crystal Report Designer, if I preview a report with dynamic parameters, it will first query the database and then show the input dialog with list of values from database for user to choose. My question is can we implement the same thing by our C# code? I'm planning to use C# code to read this dynamic parameter's value list from .rpt and render them on the web page. Then pass back the user selected values to the .rpt to run the report after user make the choice. I didn't find any APIs can do this. Is it possible?
    Thanks in advance!!

    Hi,
    Can you explain a bit in detail, I have similar scenario. I am using the following code but not getting the Column name for dynamic parameter list.
    foreach (ParameterFieldDefinition prm
                              in reportDocument.DataDefinition.ParameterFields)
                    try
                        string vParameterFieldName;                   
                        *vParameterFieldName = prm.ParameterFieldName.ToString();*
    Shakeel

  • Map the parameter with dynamic value.

    Hi,
    can be map our variable with some dynamic values??
    like suppose I have a variable in which I want to fill current value every time like current date or current time to my variable.
    is there any way to customize the variable in this way?
    thnx
    USoni

    USoni
    In OFT you can generate user variables by:
    Edit -> Databank Wizard -> Add Variable; then select Internal - Specify Expression as the type then you can enter Date() in the expression text field, to call the system date or Time() to call the system time.
    Unfortunately since the removal of VBA that is all OFT can do
    In OpenScript however you can use Java code view to substitute the parameter value with any Java expression, or for the date you can change the parameter value for *{{@today(MM/dd/yyyy)}}* which will return the date with the format MM/dd/yyyy, calling *{{@today(dd/mm/yyyy)}}* would return the current date with the format dd/mm/yyyy etc ...
    There is a list of pre-build functions on the help files, and if you need something that is not there and have not Java skills you can post the specific question here and I'm sure someone will post the code.
    Regards
    Alex

  • Accessing DefaultValues for parameters with dynamic values

    We have a custom user interface we place in front of all Crystal Reports (to maintain look&feel) that reads the parameters from the report and dynamically generates controls for user input.  The only time this doesn't work is for parameters that have dynamically generated default values.  If there is a static list of default values then we get the list from the DefaultValues collection; but if the list is dynamic then the collection is empty.
    Is there a way to force this collection to be populated, or alternatively, a way to find out what SQL query is being used to populate the parameter list?

    I think you may be out of luck. Dynamic cascading parameters (DCPs) are a relatively late addition to the Crystal Reports product line, and the Crystal Reports SDKs haven't caught up to that yet. Currently we don't have SDK access to dynamic value collections, including the SQL queries made for them. The most we can do at the moment is determine whether the parameter field uses dynamic or static values.

  • Error in Dynamic Value Change Using Java script

    Hi ,
    I am trying to put dynamic value sin tabular form report.
    I used the below code
    function updateLOV3(filter, listName,itemId,po_no){
    var xml = null;
    var list = document.getElementById(listName);
      var get = new htmldb_Get(null,$v('pFlowId'), 'APPLICATION_PROCESS=Update_Invoice_UOM',0);
    alert(po_no);
    alert(itemId);
    get.add('TEMPORARY_ITEM', po_no);
    get.add('TEMP_ITEM', itemId);
    alert(list);
    ret = get.get('XML');
    if(ret){
      var s = ret.getElementsByTagName("select");
      if(s){
       var o = ret.getElementsByTagName("option");
       oCount = o.length;
       if(oCount!='0'){
            var l_Opt_Xml = o[0];
            appendToSelect(list, l_Opt_Xml.firstChild.nodeValue);
    if(oCount=='0'){
    alert('entering');
       list.value=0;
    get = null;
    function appendToSelect(pSelect,pContent) {
    alert(pContent);
    pSelect.value=pContent;
    }my Application Process code is
    declare
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    htp.prn('<data>');
    htp.prn('<select>');
    for rec in (SELECT UNIT_OF_MEASURE r ,UNIT_OF_MEASURE d FROM HOMES_RGP_PURCHASE_ORDER_LINES WHERE ITEM_ID = :TEMP_ITEM AND
    PURCHASE_ORDER_ID = :TEMPORARY_ITEM)
    loop
    htp.prn('<option value="' || rec.d || '">' || rec.r || '</option>');
    end loop;
    htp.prn('</select>');
    htp.prn('</data>');
    end;In my application process if i removed the PURCHASE_ORDER_ID = :TEMPORARY_ITEM then the value is coming.
    Java Script giving both values like item id and purchase order id.
    If i ran the sql query manually its giving values.
    i hope thers is some error in get.add method in java script.
    Its always going into the below condition
    if(oCount=='0'){
    alert('entering');
       list.value=0;
    get = null;but manually i have checked the database the value is present.
    Please anyone help me out in this.
    Regards,
    Shan...

    Hi all,
    The same i have checked with emp table but still i got the same problem.
    Its my application process
    declare
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    htp.prn('<data>');
    htp.prn('<select>');
    for rec in (SELECT ename r,ename d FROM 
    emp
    WHERE  empno = :TEMP_ITEM)
    loop
    htp.prn('<option value="' || rec.d || '">' || rec.r || '</option>');
    end loop;
    htp.prn('</select>');
    htp.prn('</data>');
    end;My Javascript code is
    <script type="text/javascript">
    function setvalues(itemId,list)
    var s = $v(itemId);
    alert(s);
    var get = new htmldb_Get(null,$v('pFlowId'), 'APPLICATION_PROCESS=POPULATE_EMPNAME',0);
    get.add('TEMP_ITEM', s);
    ret = get.get('XML');
    if(ret){
      var s = ret.getElementsByTagName("select");
      if(s){
       var o = ret.getElementsByTagName("option");
       oCount = o.length;
       if(oCount!='0'){
            var l_Opt_Xml = o[0];
            appendToSelect(list, l_Opt_Xml.firstChild.nodeValue);
    if(oCount=='0'){
       list.value=0;
    get = null;
    function appendToSelect(pSelect,pContent) {
    pSelect.value=pContent;
    </script>Can anyone suggest me what i have missed???
    Cheers,
    Shan

  • Pass dynamic values to search-query in wlp-syndication-config for RSS

    Hi All,
    I want to pass dynamic values to the <search-query> element for the <syndication-feed> node in the wlp-syndication-config.xml file for implementing RSS feeds.
    Here's a sample
    <syndication-feed>
              <name>RSSFeed</name>
              <search-query>cm_objectClassInstance=='Node' &amp;&amp; date == 'x'_</search-query>
              <search-type>pubmeta</search-type>
         </syndication-feed>
    I tried passing the parameter in the url but the feed doesn't read it. The only option i have is to manually put the value to get the content from the repository, which sucks...because the values can change any time. is there any way that I can avoid it
    Any help on this would be appreciated.
    Thanks,
    K

    James:
    Passing filters to an IR within the URL is described here
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/app_comp.htm#sthref989
    Varad

  • Populating dynamic values in the combobox with XML form Builder.

    I am trying to  populate dynamic value in the combobox with xml form builder. I  see the document saying create property group and document property Id with respecitive values.  I am able to create the property group with system admin -> System config
    -> KM -> CM -> Global services  -> property Metadata -> groups  with new button. and I  am trying to create document property Id with value. I am not able to find the way to give  value in the property.   I am using  EP 7.0 Sp 14.  Please let me know how to sovel it

    Hi
    You can create new property metadata with System Admin > System Config > KM > CM > Global services > Property Metadata > Properties > New. Specify the values for this metadata as the ones you need to have in the combo box. Use allowed values parameter of the matadata to sepcify the values. Each metadata property will have unique property ID and you can map this property ID to your combo box in xml forms.
    Give it a try.
    Regards,
    Yoga

  • Please help how to pass the dynamic value to VO -- Urgent.

    Hi,
    I have an Oracle Standard VO( SQL Query). As per my requriemnt i extended standard VO with one new feild.Now i want to query the new VO dynamically.
    How to pass the dynamic values to new query?
    for refence i am giving my old query.
    select
    secondary_inventory_name as SubInventoryName,
    description as Description,
    from mtl_secondary_inventories
    my new Query is like this:
    select
    secondary_inventory_name,
    description,
    Item
    from mtl_secondary_inventories
    where item='123456'
    I want to pass this "where item="123456" as dynamically. please help where i will do the change's.
    Thanks,
    Sekhar.

    Hi,
    thanks pratap for quick response...but i am extending VO from Standard VO.
    I have a Standard VO which contains a bind variable suppose :1.
    I have extended this above standard VO and i want to add another bind variable say :2 to the custom VO.
    Please tell me how will i pass bind parameter value to the bind variable in runtime ?
    what are files i want to change?
    Thanks,
    Sekhar.

  • WLC Applying cached RADIUS Override values for mobile

    Hello!
    We have a WiSM2 (version 7.4.110.0) with approx 200 APs. We are doing RADIUS authentication via a PacketFence backend. Everything usually works fine, but we are having an intermittent issue...
    The WiSM2 gets its VLAN assignment for a client from the PacketFence server and does AAA override. If a client has not registered their device, go on one VLAN. Once they register, PacketFence disconnects them via RADIUS to the WiSM2, and then they should get their new VLAN assignment. This works fine in the majority of cases, but occasionally, after registering, the client disconnects and reconnects but is still put back on registration VLAN.
    debug client mac shows this in the logs:
    Applying cached RADIUS Override values for mobile 00:25:56:3d:f6:7b (caller pem_api.c:2210)
    And I do not see the WiSM2 asking the PacketFence server for a VLAN assignment in the PacketFence logs.
    Eventually, if the client stays disconnected long enough (5+ minutes), they can reconnect and get the proper VLAN assignment. I had previously opened a TAC about this, and they suggested a WiSM2 software upgrade and setting the Session Timeout on the WLAN to 900 seconds, which I did. This issue then disappeared for several weeks, but it has started happening again today (we saw it happen to about 15 clients throughout the day).
    Anyone have any ideas on why this is happening, and how to stop the caching? Any thoughts would be greatly appreciated.
    Here is the output from a show wlan of one of our WLANs we have seen this on:
    WLAN Identifier.................................. 2
    Profile Name..................................... BlitzNet
    Network Name (SSID).............................. BlitzNet
    Status........................................... Enabled
    MAC Filtering.................................... Enabled
    Broadcast SSID................................... Enabled
    AAA Policy Override.............................. Enabled
    Network Admission Control
      Client Profiling Status ....................... Disabled
       DHCP ......................................... Disabled
       HTTP ......................................... Disabled
      Radius-NAC State............................... Disabled
      SNMP-NAC State................................. Disabled
      Quarantine VLAN................................ 0
    Maximum number of Associated Clients............. 0
    Maximum number of Clients per AP Radio........... 200
    Number of Active Clients......................... 538
    Exclusionlist Timeout............................ 60 seconds
    Session Timeout.................................. 900 seconds
    User Idle Timeout................................ 300 seconds
    User Idle Threshold.............................. 0 Bytes
    NAS-identifier................................... WISM2_SDC
    CHD per WLAN..................................... Enabled
    Webauth DHCP exclusion........................... Disabled
    Interface........................................ blitznet
    Multicast Interface.............................. Not Configured
    WLAN IPv4 ACL.................................... unconfigured
    WLAN IPv6 ACL.................................... unconfigured
    mDNS Status...................................... Disabled
    mDNS Profile Name................................ unconfigured
    DHCP Server...................................... Default
    DHCP Address Assignment Required................. Disabled
    Static IP client tunneling....................... Disabled
    PMIPv6 Mobility Type............................. none
    Quality of Service............................... Silver
    Per-SSID Rate Limits............................. Upstream          Downstream
    Average Data Rate................................   0                      0
    Average Realtime Data Rate.......................   0                      0
    Burst Data Rate..................................   0                      0
    Burst Realtime Data Rate.........................   0                      0
    Per-Client Rate Limits........................... Upstream          Downstream
    Average Data Rate................................   0                      0
    Average Realtime Data Rate.......................   0                      0
    Burst Data Rate..................................   0                      0
    Burst Realtime Data Rate.........................   0                      0
    Scan Defer Priority.............................. 4,5,6
    Scan Defer Time.................................. 100 milliseconds
    WMM.............................................. Allowed
    WMM UAPSD Compliant Client Support............... Disabled
    Media Stream Multicast-direct.................... Disabled
    CCX - AironetIe Support.......................... Enabled
    CCX - Gratuitous ProbeResponse (GPR)............. Disabled
    CCX - Diagnostics Channel Capability............. Disabled
    Dot11-Phone Mode (7920).......................... Disabled
    Wired Protocol................................... None
    Passive Client Feature........................... Disabled
    Peer-to-Peer Blocking Action..................... Drop
    Radio Policy..................................... All
    DTIM period for 802.11a radio.................... 1
    DTIM period for 802.11b radio.................... 1
    Radius Servers
       Authentication................................ ipofradiusserver 1812
       Accounting.................................... Global Servers
          Interim Update............................. Disabled
       Dynamic Interface............................. Disabled
       Dynamic Interface Priority.................... wlan
    Local EAP Authentication......................... Disabled
    Security
       802.11 Authentication:........................ Open System
       FT Support.................................... Disabled
       Static WEP Keys............................... Disabled
       802.1X........................................ Disabled
       Wi-Fi Protected Access (WPA/WPA2)............. Disabled
       WAPI.......................................... Disabled
       Wi-Fi Direct policy configured................ Disabled
       EAP-Passthrough............................... Disabled
       CKIP ......................................... Disabled
       Web Based Authentication...................... Disabled
       Web-Passthrough............................... Disabled
       Conditional Web Redirect...................... Disabled
       Splash-Page Web Redirect...................... Disabled
       Auto Anchor................................... Disabled
       FlexConnect Local Switching................... Disabled
       flexconnect Central Dhcp Flag................. Disabled
       flexconnect nat-pat Flag...................... Disabled
       flexconnect Dns Override Flag................. Disabled
       FlexConnect Vlan based Central Switching ..... Disabled
       FlexConnect Local Authentication.............. Disabled
       FlexConnect Learn IP Address.................. Disabled
       Client MFP.................................... Optional but inactive (WPA2 not configured)
       PMF........................................... Disabled
       PMF Association Comeback Time................. 1
       PMF SA Query RetryTimeout..................... 200
       Tkip MIC Countermeasure Hold-down Timer....... 60
    AVC Visibilty.................................... Disabled
    AVC Profile Name................................. None
    Flow Monitor Name................................ None
    Call Snooping.................................... Disabled
    Roamed Call Re-Anchor Policy..................... Disabled
    SIP CAC Fail Send-486-Busy Policy................ Enabled
    SIP CAC Fail Send Dis-Association Policy......... Disabled
    KTS based CAC Policy............................. Disabled
    Assisted Roaming Prediction Optimization......... Disabled
    802.11k Neighbor List............................ Disabled
    802.11k Neighbor List Dual Band.................. Disabled
    Band Select...................................... Disabled
    Load Balancing................................... Disabled
    Multicast Buffer................................. Disabled
    Mobility Anchor List
    WLAN ID     IP Address            Status
    802.11u........................................ Disabled
    MSAP Services.................................. Disabled

    There is nothing in the RADIUS server logs. It is as if the WiSM2 does not talk to it for the 2nd request. The flow for a problem client is like this:
    1. New client associates
    2. WiSM asks RADIUS server for VLAN
    3. RADIUS Server hasn't seen it, so it puts it on VLAN 84 (our registration VLAN)
    4. Client goes through captive portal
    5. RADIUS server sends disconnect client message to WiSM
    6. Client disconnects, reconnects
    7. WiSM2 puts it back on VLAN 84, when it should put it on a VLAN determined by the SSID. The WiSM2 never asks the RADIUS server for the VLAN again, until the client has stayed disconnected for 5+ minutes, and I see the message in the wism2 log that I wrote above.
    In the vast majority of cases, step 7 works properly. That is, when the client reconnects, it asks the RADIUS server what VLAN to put it on (I see it in the RADIUS server logs). I see the second request come in, and the RADIUS server replies with appropriate VLAN for the SSID.
    After they get their proper VLAN, this doesn't occur again. It is as if the RADIUS server caches the client's VLAN override attribute somewhere and uses that, rather than asking the RADIUS server.

  • Need to create OAF new Button Item with Destination URI with dynamic value

    Would like to add a personalization to a OAF page, with adding a new button Item. Behind the button item, one of the properties we would like to set is Destination URI, and we would like to have this with a dynamic value from the Page we are on.
    Let's say we are on the OAF page for customers. One of the fields is Customer Account Number. This is one of the Attributes from the View Object that the page is built on. So we want to take a value from an Attribute, and use this in the Destination URI value. That is what I mean by dynamic. It depends on what record from the database we are looking at on the OAF page.
    In this case it is View Object is 'HzPuiCrUpCustActVO' and the Attribute is 'AccountNumber'
    Does that make sense? can we reference an View Attribute value in the Destination URI? How can this be done?
    Thanks!

    Kristofer,
    This does make it clearer, as far as using the personalization property to reach another OAF page.
    I would like to build a custom page for the destination, but I did not want to necessarily the page to be another OAF/jsp page.
    One thing we might want to do is build an APEX page. so this Destination URI might have to start with something like http://oraserver.mycompany.com:7779/pls/apex/f?p=
    Another option we might want to use is to just have the destination resolve to a custom URL that includes a parameter value like http://mycompany.com/1905 where 1905 is the account number from the Customer Account OAF page.
    Any ideas, or is this even possible?
    Chris

  • ICM Host name buffer cache parameter

    Hello,
    Does any body know about the ICM Host name buffer cache parameter?
    I mean how long does it hold this value and cache refresh rate..
    REgards,
    Atul

    Hello Prem,
    Thanks for information.
    I know that parameter and how to check.
    My specific question is about hostname buffer cache rate and how long does it hold that value in buffer and refresh rate.
    Regards,
    Atul

  • Ago function with offset parameter dynamic

    Hi,
    I need to calculate a measure in rpd or answer that simulate the behavior of ago function with the offset parameter dynamic.
    i.e.
    ago(total_quantity, month, offset), where offset is a number provided by a logical column.
    Is it possible?
    Thanks.

    Hi,
    The problem is that I only know the offset values at row level, i.e., when I run my answer report some records use a certain offset value (offset1) while others use another offset value (offset2)
    The offset value can be determinate by a logical column.
    Is it possible?
    Thanks.

  • XDIM_MEMBERSET ENTITY how to pass parameter dynamically

    Hi experts,
    I am using the how to guide "How to pass dynamic parameters to script logic" in order to pass the ENTITY parameter dynamically to the following script logic:
    *XDIM_MEMBERSET FIL_KAT=
    *XDIM_MEMBERSET ORG_EINHEIT=BAS($ENTITY_DIM$)
    *XDIM_MEMBERSET VERSION=UMS_TAG_2011
    *XDIM_MEMBERSET WAEHRUNG=LW
    *XDIM_MEMBERSET ZEIT_TW=TW1.MAR
    *XDIM_MEMBERSET ZEIT_UMSATZ=%HR%
    *XDIM_MEMBERSET MEASURES=PERIODIC
    *XDIM_MEMBERSET POSITION_UMSATZ=UMS_BR,UMS_BASIS,UMS_BAS_STEIG
    *XDIM_MAXMEMBERS ORG_EINHEIT=1500
    //*BEGIN
    //[POSITION_UMSATZ].[#UMS_BR]=
    //[POSITION_UMSATZ].[UMS_BASIS]
    //+.[UMS_BAS_STEIG]
    //*END
    *SELECT(%HR%,"ID","ZEIT_UMSATZ",TITEL_HR="HR_GJ_2010")
    *WHEN POSITION_UMSATZ
    *IS "UMS_BASIS"
    *REC(EXPRESSION=%VALUE%+.[UMS_BAS_STEIG],POSITION_UMSATZ="UMS_BR")
    *ENDWHEN
    *COMMIT
    the following statements are in the task manager:
    PROMPT(SELECTINPUT,%SELECTION%,,"Bitte Parameter für Kalenderverschiebung angeben (Land)","%ENTITY_DIM%")
    'PROMPT(TEXT,%ENTITY_DIM%,"Bitte die Länder ID erfassen: ",)
    INFO(%EQU%,=)
    INFO(%TAB%,;)
    INFO(%SCRIPT_FILE%,CALDAY_MOVE_PLAN.LGF)
    INFO(%MODE%,PLAN)
    TASK(FX_START_BADI_RUN_LOGIC,TAB,%TAB%)
    TASK(FX_START_BADI_RUN_LOGIC,EQU,%EQU%)
    TASK(FX_START_BADI_RUN_LOGIC,SUSER,%USER%)
    TASK(FX_START_BADI_RUN_LOGIC,SAPPSET,%APPSET%)
    TASK(FX_START_BADI_RUN_LOGIC,SAPP,%APP%)
    TASK(FX_START_BADI_RUN_LOGIC,LOGICFILENAME,%SCRIPT_FILE%)
    TASK(FX_START_BADI_RUN_LOGIC,SELECTION,%SELECTION%)
    TASK(FX_START_BADI_RUN_LOGIC,REPLACEPARAM,MODE%EQU%%MODE%)
    TASK(FX_START_BADI_RUN_LOGIC,REPLACEPARAM,ENTITY_DIM%EQU%%ENTITY_DIM%)
    Everthing ist working fine. However in the log you can see that the script is running for all entities e.g. Spain instead of only Italy which I entered when I started the data manager. Any idea how I could resolve this issue?
    Thanks a lot for your help in advance!
    USER:INTROEBER
    APPSET:FEINPLANUNG_PILOT_4
    APPLICATION:UMSATZ_TAG
    NO MEMBER SPECIFIED FOR DIMENSION:FIL_KAT WILL QUERY ON ALL BASE MEMBERS.
    GET_DIM_LIST(): I_APPL_ID="UMSATZ_TAG", #dimensions=8
    FIL_KAT,MEASURES,ORG_EINHEIT,POSITION_UMSATZ,VERSION,WAEHRUNG,ZEIT_TW,ZEIT_UMSATZ
    #dim_memberset=8
    FIL_KAT:FIL_#,FIL_EXP,FIL_EXPVJ,FIL_OEXP,4 in total.
    ORG_EINHEIT:ORG_EINHEIT,1 in total.
    VERSION:UMS_TAG_2011,1 in total.
    WAEHRUNG:LW,1 in total.
    ZEIT_TW:TW1.MAR,1 in total.
    ZEIT_UMSATZ:2010.DEC.01,2010.DEC.02,2010.DEC.03,2010.DEC.04,2010.DEC.05,...120 in total.
    MEASURES:PERIODIC,1 in total.
    POSITION_UMSATZ:UMS_BR,UMS_BASIS,UMS_BAS_STEIG,3 in total.
    REC :%VALUE%+.[UMS_BAS_STEIG]
    CALCULATION BEGIN:
    QUERY PROCESSING DATA
    QUERY TIME : 4485.00 ms. 84938  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 7516.00 ms. 155967  RECORDS QUERIED OUT.
    QUERY PROCESSING DATA
    QUERY TIME : 1156.00 ms. 7012  RECORDS QUERIED OUT.
    QUERY REFERENCE DATA
    QUERY TIME : 1328.00 ms. 14024  RECORDS QUERIED OUT.
    CALCULATION TIME IN TOTAL :255024.00 ms.
    91950  RECORDS ARE GENERATED.
    CALCULATION END.
    ENDWHEN ACCUMULATION: 91950  RECORDS ARE GENERATED.
    DATA TO WRITE BACK:
    FIL_KAT     ORG_EINHEIT     POSITION_UMSATZ     VERSION     WAEHRUNG     ZEIT_TW     ZEIT_UMSATZ     SIGNEDDATA
    FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.01     11107.62
    FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.02     32823.36
    FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.03     19609.57
    FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.04     32509.49

    Hi Marco,
    Let me see if I'm understading your problem,when you try to pass the parameter dynamically  in your entity dimension  *XDIM_MEMBERSET ORG_EINHEIT=BAS($ENTITY_DIM$), But BPC it's always selecting ORG_EINHEIT.....  If that so, try it like this  *XDIM_MEMBERSET ORG_EINHEIT=BAS(%ORG_EINHEIT_SET%).
    hope this helps,

  • MDM parameter replacement values for Change Tracking

    Hi! I am able to set up the Change Tracking function and able to view the data via web and Data Manager. On reading the Help documentation on the set up for Data Manager, it mentioned about the parameters which we can use to get dynamic value from Data Manager for the specific record (for the set up of the link URL).
    Does anyone know what parameter replacement value that would be if we want the system to assign the record number base on the record we select?
    Below is any extract of the help document on the search record:
    searchrecord [optional]
    The record for which history records are initially displayed
    The searchtable and searchrecord parameters can get dynamic values from the Data Manager at runtime by using the relevant MDM parameter replacement values.
    Appreciate any help on the above.
    Thanks!
    SF

    Hi,
    Check the below link
    http://help.sap.com/saphelp_mdm550/helpdata/en/8e/9f9c427055c66ae10000000a155106/frameset.htm
    Repository Maintainance -> Repository Structure Operations -> Other System Tables -> Links Table -> URL syntax
    Regards,
    Jitesh Talreja

Maybe you are looking for

  • Error while loading the multiple instance of Acrobat

    Dear all,      While loading multiple instances of an acrobat application I get an error message stating that:           "The organizer database is damaged and will be reset the next time Acrobat is launched.                    Quit the Application a

  • Workflow step is not getting executed

    Hi all,      I have designed a workflow in which I have a Decision step. after taking the a decision then it is taking so much time to execute the next step which is a background step. The waiting time is varying from time to time some times it is ge

  • DAQmx Timing (On Demand).vi

    Hi! I am doing a work that uses Cyclic Voltammetry technics. I am trying to use the example from this page "Measuring Cyclic Voltammetry for DAQmx" with a NI USB-6009 card and NI DAQmx drivers. The problem is that, when I try to run the file appears

  • Explanation about PPOSE (display of sub org unit)

    Hi everybody, I am beginner in Sap HCM OM and I don't understand something in transaction ppose. There is Org unit 50271758. This org unit has different sub org units . But depending on the start date and the preview period I set in the setiings, the

  • 3D Bar code printing

    Hi, I was asked to print sample documents using 3D Bar code. Does anyone have any idea on this? Any hints would be really helpful. Thank you, Chandra