BI 7 WAD- BACK _TO_PREVIOUS_ITEM_STATE.

Hi All,
I have a Button group  named SHOWCHARS which will show the navigation pane when the user clicks,and the button changes to HIDE CHARS.(Button Description)
if again the user clicks the same  button it will hide the Navigation pane and it should change to SHOW CHARS.
For this requriment i used SET_ITEM_PARAMETERS,
for the navigation pane accordingly to hide and display.
For the Button group i used
BACK TOPREVIOUS_ITEM_STATE  to change HIDECHARS to SHOWCHARS,but i got the error message(
but it meets the functionality)
Any pointer to solve this issue will be well appreciated.
Thanks & Regards,
Niraj.
Edited by: Niraj Chalwade on Mar 27, 2008 11:14 AM

Hi Niraj,
Please refer to the SAP Note Number: 1065253.
It is very similar to your issue.
Hope this helps u...
Regards,
KK.

Similar Messages

  • WAD - Back one Navigation step

    Hi All,
    Our reports are created on WAD, and we have a requirement to provide the back one navigation step functionality.
    When we do any filter criteria on the row fields, then the back one navigation step is working. But when i drag free charcteristic into rows, then back one navigation step is not working.
    for ex : first i drag A field which is there in the free characteristics to the row in the report level
    and then drag B field in to the row. now if i click back one navigation step, B field should go from the report and A field should be available in the report.
    Thanks and regards,
    Vara Prasad.

    Hi,
    Were you able to find the solution for this?
    Best Regards,
    Chinky Garg

  • Back button of internet explorer raise exception when running WAD tamplate

    Hi gurus,
    when we run a WAD template the users automatically use the back button of the explorer in order to navigate one step backward.
    this action raise an exception: "Webpage has expired".
    is somebody know a way that could work or a way to eliminate the back button of the explorer?
    thanks in advanced
    Miri

    >> I do not think it is because of the parameters you are entering/using, try without using the
    >> parameters (just for testing), if you still get the error then its not the parameters which is causing
    >> the problem.
    If I create the report without asking for user-entered params, it works.
    >> Can you please specify the browser and the tool to display the report you are using? Generally the
    >> error popps up when there are any mistakes in html or if you are using a javascript which has a error.
    The active browser on the computer is IE7 - 7.0.5730.13
    I am using the installed crystal reports 11 program to run the report.  I open the report in CR by going to File/Open and selecting the report. Then I get prompted for my ms sql login info, which I enter.  Then I see the "Enter Values" window with my data entry fields; but I don't see the nice formatting and buttons which I see when I run this from the other computers; I see only the placeholders.  I select or enter data and click on the "OK" link.  Then the message box pops up.  The message box pops up when I click on any of the links or on the "x" in the upper right.  Mesage box is explicit - Intenet Explorer Script Error, etc., as I described in my original post.
    Thanks
    Azhar

  • WAD report export to excel formatting not preserved

    Hi,
    when i export BI 7.1 WAD template to excel and copy to another excel sheet cell formatting changes.color formatting is
    not preserved when we copy to another excel sheet.I tried resetting the "preserve visual appearance of workbook" to the
    exported excel sheet, but this didnot work.I am using excel 2007.
    Can anyone tell me how to preserve the excel formatting for WAD template.
    Thanks,
    Harsha

    Hi Roy
    Have you got the report set to bring back a specific number of rows at a time (ie retrieve data incrementally in sets of : setting in options)?
    If so set this to a larger number of rows, Discoverer will then return all data when the reports is run and will export all data to the spreadsheet.
    Hope this helps
    Melanie

  • My laptop was stolen but "Find My Mac" has located it. Now how do I get it back?

    Hi All,
    Early this morning, a friend of mine called me to tell me her laptop was stolen. She asked me to help her track it using iCloud find my mac. The theives also stole her wallet and other things from her car so this isn't something that was just misplaced and an innocent person came across it. My question is, now that I know where it is (within a couple hundred feet vicinity) what is the best approach I can use to get this back for my friend? She's got years of family pictures and does not have the laptop backed up so this is very important to her. Any ideas?
    It shows the laptop around 4200 S Wade Way (about 3260 w), West Valley City, Ut
    Please, any advise would help!
    Thanks,
    Caleb

    Well, I did contact the police with all this information. They actually went to one of the houses with me (the one on the corner) and it was an old man who was very polite who lived at home alone and didn't seem like the type. Instead of knocking on the other doors with me, the police said, "Your locating program is probably just wrong and it's not here." he wouldn't knock on any other doors so I plan on going tomorrow morning and knocking but the chances of anyone confessing are slim so I don't know what approach to go at with them. I don't know why find my mac doesn't let you leave a message like find my iPhone because I would leave a message saying "this mac has been misplaced. If you return it, the owner will reward you with $500 without pressing charges or asking how you came across the laptop. Please call -------, but, no. All I can do is knock. lol

  • How to revert to diagnostics.wadcfg configuration from wad-control-container blob.

    Hello all,
    In our project at some point in the past we have enabled Diagnostics module for getting our log entries in Azure Storage. We added <Import moduleName="Diagnostics" /> to ServiceDefinition.csdef file and then enabled logs transfering and performance
    counters gathering in WebRole.OnStart method via DiagnosticMonitor.Start():
    DiagnosticMonitorConfiguration cfg = DiagnosticMonitor.GetDefaultInitialConfiguration();
    cfg.OverallQuotaInMB = 8192;
    cfg.Logs.ScheduledTransferLogLevelFilter = LogLevel.Verbose;
    cfg.Logs.ScheduledTransferPeriod = TimeSpan.FromSeconds(30);
    cfg.Logs.BufferQuotaInMB = 1000;
    // Define performance counter configuration.
    foreach (var counterName in PERFORMANCE_COUNTERS_NAMES)
    PerformanceCounterConfiguration perfCounterConfiguration = new PerformanceCounterConfiguration();
    perfCounterConfiguration.CounterSpecifier = counterName;
    perfCounterConfiguration.SampleRate = TimeSpan.FromSeconds(5);
    cfg.PerformanceCounters.DataSources.Add(perfCounterConfiguration);
    cfg.PerformanceCounters.BufferQuotaInMB = 1024;
    cfg.PerformanceCounters.ScheduledTransferPeriod = TimeSpan.FromMinutes(1);
    DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", cfg);
    Then using Windows Azure Management Portal we activated Verbose monitoring mode and added several additional performance counters there in order to try the feature. I assume that doing that through the portal we actually modified wad-control-container blob
    so we got new performace counters configuration.
    Later we've realized that it would be better to manage all diagnostic configuration in diagnostics.wadcfg. We removed the code from role start and added diagnostics.wadcfg file to the project that declares the same we did before via code. When we redeployed
    we saw that the configuration remained as it was before - it didn't change at all. It still included new performance counters we added through the portal. It is because the order of precedence, where wad-control-container blob has the highest priority. So
    we deleted all the blobs from wad-control-container in order to revert back to diagnostics.wadcfg and redeployed the service. New blob was created in wad-control-container. It included everything from diagnostics.wadcfg as we expected and
    again we saw these custom performance counters we added via portal time ago. See below the blob content:
    <?xml version="1.0"?>
    <ConfigRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DataSources>
    <OverallQuotaInMB>8192</OverallQuotaInMB>
    <Logs>
    <BufferQuotaInMB>1024</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>1</ScheduledTransferPeriodInMinutes>
    <ScheduledTransferLogLevelFilter>Verbose</ScheduledTransferLogLevelFilter>
    </Logs>
    <DiagnosticInfrastructureLogs>
    <BufferQuotaInMB>1024</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <ScheduledTransferLogLevelFilter>Warning</ScheduledTransferLogLevelFilter>
    </DiagnosticInfrastructureLogs>
    <PerformanceCounters>
    <BufferQuotaInMB>4096</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <Subscriptions>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Memory\Available Mbytes</CounterSpecifier>
    <SampleRateInSeconds>10</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Processor(_Total)\% Processor Time</CounterSpecifier>
    <SampleRateInSeconds>10</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests/Sec</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Executing</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests In Application Queue</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Failed</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Timed Out</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Requests Rejected</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Worker Process Restarts</CounterSpecifier>
    <SampleRateInSeconds>600</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <!-- OLD unnecessary counters that were added manually through the portal START-->
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Memory\Available MBytes</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Web Service(_Total)\ISAPI Extension Requests/sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Web Service(_Total)\Bytes Total/Sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Errors Total/Sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Requests Queued</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <!-- OLD unnecessary counters that were added manually through the portal END-->
    </Subscriptions>
    </PerformanceCounters>
    <WindowsEventLog>
    <BufferQuotaInMB>0</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>0</ScheduledTransferPeriodInMinutes>
    <Subscriptions />
    <ScheduledTransferLogLevelFilter>Undefined</ScheduledTransferLogLevelFilter>
    </WindowsEventLog>
    <Directories>
    <BufferQuotaInMB>256</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <Subscriptions>
    <DirectoryConfiguration>
    <Path>C:\Resources\directory\ac17d63416cf41c8acfebbbcb3d90052.Mbo.Services.Web.DiagnosticStore\CrashDumps</Path>
    <Container>wad-crash-dumps</Container>
    <DirectoryQuotaInMB>256</DirectoryQuotaInMB>
    </DirectoryConfiguration>
    </Subscriptions>
    </Directories>
    </DataSources>
    <IsDefault>false</IsDefault> <!-- DEFAULT IS SET TO FALSE AGAIN -->
    </ConfigRequest>
    We tried to directly edit this XML. We removed redundant counters and changed IsDefault to "true" value in the XML and updated the blob in the wad-control-container using Azure Management Studio. Next time we redeployed the service - the counters
    again appeared in the configuration and IsDefault reverted to false again.
    Does anyone know how to permanently revert to managing diagnostics configuration only via diagnostics.wadcfg file and force the Azure to forget about manual edits we did via the portal?
    We use Azure SDK 1.4. 
    Thanks in advance for any insights!
    Vitaly

    Hi Vitaly,
    Did you try to change diagnostics configuration in VS? Like this:
    I suggest you could click the "Edit", and select your diagnostics metrics. Also, I want you double check your  re-deployment  project whether is right. Please try it.
    By the way, I suggest you could upgrade your SDK version and refer to this sample:
    http://www.windowsazure.com/en-us/develop/net/common-tasks/performance-profiling/
    http://msdn.microsoft.com/en-us/library/windowsazure/hh411542.aspx
    Any question or result, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can i get my iPad back on the internet?

    Everything wad down today...cable, internet, etc.  Now it is back.  My iMac is right back on line and all is well.  The iPad, though, says I am not connected to the internet and nothing is working.  How do I get the iPad back on line.  I checked the settings and it shows that my wefi is on and I don't see any other settings the check or fix.
    Please help. 

    It's back on.  I figured it out.....I had to reset the iPad.  I don't know how to delete the above message....sorry.

  • URGENT::Hierarchy Variable creating Problem in WAD

    Hi,
    I am using Profit Center as Hierarchy variable in my Queries, when i run the report in WAD portal, and select the profit center on the selection screen, after clicking the check button it appears with compounding Characteristic Controlling Area as prefix.
    In the back end for the Profit Center Hierarchy data each node has Controlling Area attached with profit center(value), whereas in master data for profit center we don't have controlling area attached with profit center(value).
    For eg: if the Profit center has value P0001 has the controlling area is CA01 then the master data of profit center shows the value as P0001 whereas when we look at Hierarchal nodes it displays as CA01P0001 along with its description.
    So when we run the Query we dont get any data because it shows that profit center CA01P0001 node does not exist in Hierarchy.
    But in Analyser Query is working fine.
    Please suggest some solution.
    Thanks in Advance.
    Regards,
    Ankur

    Hi,
    This issue is resolved with note:
    1558066    WAD Metadata corrupt due to invalid entries in RSZWMDITEM
    There are some incorrect entries in the table which is causing an issue.
    Could you please follow the below to delete the entries manually:
    1> Go to Transaction: SE16
    2> Enter the table name = RSZWMDITEM and press enter
    3> Enter the value for MDITEMNAME = TARTITLE and execute.
    4> You will find 3 entries for the value TARTITLE. Could you please
    delete all these 3 entries from this table.
    After doing the above steps, please refresh the metadata by doing the
    below steps:
    1> Open Web Application Designer.
    2> Go to Tools->Settings - > Refresh Metadata and press OK
    now close and restart the web application designer. It should work fine
    Regards,
    Venkat

  • How to use both Static and dynamic Reports in WAD using a single template.

    Hi,
    I have 2 reports - Report1 & Report2. Report1 is a static report with 3 column in it. In WAD user does not want to see the third series in the chart so I have made series3 invisible in the chart.
    I am calling the Report2 via 'SET_DATA_PROVIDER_PARAMETERS' in the button option.
    Now the issue is that, Report2 is a dynamic report which is using a calyear vaiable range. As Report2 is using the template of Report1, Series3 of Report2 also gets hidden.
    Any solution for this?
    Thanks
    Nisha

    Hi Nisha,
    After setting the Report 2 DP thru SET_DATA_PROVIDER_PARAMETERS, you can use one more command SET_ITEM_PARAMETERS on the Chart webitem & edit the Series to make it visible. If there is a way to reset the DP back to Report 1, then you must once again use SET_ITEM_PARAMETERS to hide the Series.
    Or you can use another Chart webitem for Report 2 DP & make the Chart webitem for Report 1 hidden & the Chart webitem for Report 2 visible using SET_ITEM_PARAMETERS after setting Report 2 DP using SET_DATA_PROVIDER_PARAMETERS.
    --Priya

  • Automatic Colour settings problem for WAD Chart Column type

    Hi,
    In WAD (BI 7.0) Chart Creation i am having issues with colour settings for Chart item Column type with 3D. I have six key fig in query i am trying to show all KF in Chart. But it is showing only one colour for all keyfigs. atlast  I have manually assigned different colours for different series, but no use... the issue remains same.. Please help me on this issue
    Thanks in Advance
    Regards
    Harsh

    Hi Harsh,
    Please try the following options.
    1. Try swapping the axes. Certain charts follow the YX convention.
    2. Right Click > Edit > Click on 'Refine' > Click on the chart type on the right frame (Bars/Pie etc) > [OK] Vary Category by Color: Enable this checkbox.
    3. If you have finished with these settings, you may switch back to Wizard mode to follow up the settings (Step 3 of 6 - Value Properties)
    4. Under Categories in Wizard, just make sure you are giving options to suit all the Categories in an uniform fashion. To begin with don't bother to give a fixed Category Count. (As your chart size may increase dynamically based on GRID data)
    5. Goto Refine > Click on Global Settings > Choose 'Color Palette' > Tradeshow/Enjoy/StreamLine/Custom : These are the optional themes which may be well adjusted to suit your requirements.
    Thanks,
    Arun Bala

  • Problem in WAD: export to PDF all the tab panels of a TabPage

    Hi all,
    I have a problem with WAD and export to PDF.
    My template (schema):
    Group -->
    Container Barraher --> Button Group
    Container Form --> Tab Pages -->
    TabPanel1 --> Container1 --> Analysis1
    TabPanel2 --> Container2 --> Analysis2
    TabPanel3 --> Container3 --> Analysis3
    My problem:
    The button exports only the Analysis we are seeing (the TabPanel which is opened) but I would want the button exports the three Analysis. Is it possible?
    At the Button Group --> Command Export --> Data Binding --> Web Items:
    Analysis1
    Analysis2
    Analysis3
    Thanks a lot in advance!

    Hi,
        Can you remove the Data Bindings and see if you use the Default if PDF is working ?.
    Another way also might be is to save the Same Template with a new Name, then  Keep only the Data Providers and the Analysis Grid.
    Back on Main Template in the Button Group use this new Template as a Print Template.
    Hope this helps.
    Datta.

  • How to Integrate BIW WAD with EP6.0

    Hello Everybody,
    I need to design and deploy BW applications using WAD and so need to integrate BIW System, Portal and WAD. Is there any suitable documentation which explains all the steps required for such an integration b/w Portal and BIW System and WAD. A quick reply is highly appreciated and well rewarded.
    Thanks in advance,
    Regards,
    Sarabjeet.

    The support to include NetWeaver 2004s based BEx Web Applications Java is now available in NetWeaver 2004 EP 6.0 from SPS15 onwards. Here is the relevant information on how to use the feature:
    •     SP15: <a href="https://websmp106.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=DISPL_TXT&_NNUM=940773">Note 940773</a>
    •     SP16: <a href="https://notescsr.wdf.sap.corp/~form/handler?_APP=01100107900000000342&_EVENT=DISPL_TXT&_NNUM=0000941017">note 941017</a>
    •     SP17: already included in standard shipment
      Cheers
        SAP NetWeaver 2004s Ramp-Up BI Back Office Team

  • Problem in WAD (The requested query / does not exist on the current server)

    Dear Guru's
    When i execute a Web Application in WAD in the selection screen suppose if i give Key product  as 86000 then check and execute i get correct data. Then if i come to  backpage (Selection screen again using backspace) and change Key product  as 86022  then check and execute then i get following error
    The requested query / does not exist on the current server
    System error in program CL_RSR_OLAP_VAR and form BAD STATE (see long text)
    Can any one please provide me some good solution...
    We are using BI 7.0 sp 16, But i am executing this Wed Application in 3.1WAD.
    Thanks and Regards,
    kalyan

    Dear Jai,
    Issue is in WAD selection screen for first product valuse every thing if fine, when i go back and change product value and then CHECK and EXECUTE the following error comes.
    The requested query / does not exist on the current server
    System error in program CL_RSR_OLAP_VAR and form BAD STATE (see long text)
    Any one have any idea plssssssssssssssssssssssssssssssssssss..........
    dude's some soln.....
    Thanks and Regards,
    Dev
    Edited by: Srinivas dev on Jul 4, 2008 2:45 PM

  • Problem exporting to excel when using embedded web templates through WAD

    Using web templates designed with WAD, we are experiencing an issue when trying to export excel when using embedded web templates. 
    We have set up tabstrips within our templates that load other templates (embedded into the global template). 
    Upon right clicking on any query and choosing "Export to Excel", any query that is in one of the tabs using the embedded web template item does not show up.  Any queries in natively in the global web template will export and show up fine.
    Any thoughts on how to enable something like this, or workarounds to make this work?  We decided to split up these templates for performance reasons and can't go back from that decision.  Also let me know if you need a better explanation of what we're trying to do.
    Thanks in advance!
    Jonathan

    Hi SDBI,
    Is this in place of loading a new template per tab?  We are using container layouts in all of our templates so we can link things into tabstrips as well, we have just split up some templates to be embedded into tabs for performance reasons and data locking.
    Also when exporting, we are looking for all of the items displayed at that time to be exported, however only the items from the global template show up, not all of the displayed queries.  For example, anything outside of the tabstrip will export perfectly, but since the query embedded into the template the tabstrip is loading is not part of the native web template, it does not show up.
    Seems like a tool limitation to me when embedding templates?
    Thanks,
    Jon

  • WAD opening error

    Hi guys,
    "Run-time error 91:
    Object variable or with block variable not set"
    I am getting the above error and the WAD isnt
    opening, The query underneath has a
    variable processing type authorization,
    but no authorization for s_rs_bcs,
    thanks

    Realist,
    you seem to have opened this post sometime last night (Assuming you work according to IST).. you need to give us more infomation like :
    1. What is your patch level ?
    2. WHat version of BW are you using ?
    3. Does WAD open for other queries and onlythis query is casing the problem.
    4. Did it use to work properly beofre and the problem has occured only recently after some change and if yes what was the change.
    5. Did you try reinstalling your WAD
    6. What is your front end patch level ?
    Also SDN is not OSS ... OSS has a responsibility to get back to your message depending on the criticality .. SDN is a public forum where people choose to help others..
    Reads Mark's sticky on the forum...
    Arun
    Assign points if it helps..

Maybe you are looking for

  • Multiple payment advises in one single pymnt document

    Hi gurus, we are having payment advises getting generated through IDOCs, there will be many payment advises for one single customer, so we thought of including multiple payment advises while choosing open item, but system is allowing only one payment

  • How do I split display Numbers?

    I have been given the task of finding the sum, quotient and remainder of two input integers. Not that much of a problem. But the problem now is, I am supposed to display the digits entered with the numbers being separated by two spaces. In example, i

  • How to Disable Menu item in Oracle Applications

    Hi, How can I disable a Menu (Actions->user defined menu) Item in Oracle applications by using forms personalization. Our requirement is to display a message on click of a standard menu using form personalization and it should retain the seeded funct

  • Calling Portal APIs from Apex

    I have posted this on the application express forum as well, not sure who will come up with the answer, so here is my question anyway. I am trying to call the portal.wwsec_api from within an apex application. The application is parsed using the porta

  • HT4623 Under settings; general I do not have software updates how do I download and updates

    Under settings/general I do not have a spot for software updates.  How do I download any updates.