How do I access specified order options programmatically?

Using the RAS SDK (or any other .NET API), is it possible to access the specified order options of a group? I am talking about the named groups with specified conditions.
I have found nothing when searching through the documentation, but maybe I am overlooking something. I know this used to be possible with the crpe32.dll - is it no longer possible?
Thanks in advance!

Hello, John;
You can access the GroupOptions throught .NET RAS. Here is a link to the Developer Library section on groups:
http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/RAS_SDK/rassdk_net_doc/doc/rassdk_net_doc/html/raslrfCrystalDecisionsReportAppServerDataDefModelGroupClass_MembersTopic.htm
There is a sample of Group and Group sort code in the "VB .NET How To Samples" at:
http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/RAS_SDK/sampleList.htm
Elaine

Similar Messages

  • How to activate "Issue Purchase Orders" option ?

    Hello everybody,
    How can I activate the "Issue Purchase Orders" option ?  At this moment, every time a purchaser creates a PO in Sourcing Cockpit, the PO is created and sent it immediately to the vendor.
    Obviously, I want to change that.. =)
    Somebody knows how can I change this behavior and activate the "issue purchase order" option?
    Thank you very much for your help !
    Diego

    Hello Diego,
    this is exactly what I already told you in my first reply.
    With this customizing option, a PO "trigger" (term used in Post Processing Framework --> term used in output logic !!) is created but not processed immediatly.
    You can find this "waiting" output in transaction "Issue purchase order" and execute it, or let a scheduled report do it.
    When you save the PO in ECS, FM BBP_PROCDOC_SAVE will call this output creation, then level one update tasks are called (physical update of DB) by the COMMIT. Then level 2 update tasks are called. The PO transfer to the backend is one of those last calls.
    So there is no link between PO output and BE transfer.
    Except in case of DUMP, I don't see any reason to block the PO transfer because of PO edition.
    If your PO is not transfered in BE, this is not because of the PO output.
    There is another reason.
    Check PO status : is it "In transfer to exec" or "transfer to exec failed" ?
    Rgds
    Christophe

  • How do get access to Interaction Data programmatically

    First let me outline what I am trying to do and what my current restrictions are.
    Captivate Version: 5 and 6 (but really only 6, they are in the process of upgrading everything to 6)
    What I need:
    - Access to the Quiz's interaction data for each question.
    - I would like to have access to it utilmately in JavaScript.
    Restrictions:
    - The CBTs are hosted on a SharePoint site that I cannot modify, other than what is possible as a site admin (so no Internal server reporting)
    - An LMS is also not an option
    My current setup:
    I created an aspx page in SharePoint to load the desired Captive file by query string.  I created a JavaScript file to help me communicate with Captivate and capture the basic quiz results (pass/fail, total points, unanswered quiestions, etc) using the cpEIGetValue method.  My JavaScript results function (SubmitQuiz()) is called from the Captivate file on either a submit results button click or the OnPass/OnFail events.  With the result data in JavaScript, I then post (ajax) the results to a SharePoint list using the List web service.
    I know I can get each question's answer by having the captivate call a JavaScript method on question submit, but I was trying to avoid that (it means a fair amount of updates to each CBT), and even then I don't think that will give me access to all the interaction data that is provided when you use the internal server reporting method.  Captivate is clearly tracking the data that I want, I just can't find a good way to get to it.
    I have spent a decent amount of time researching this and any help with this will be greatly apperiated. 

    Erik -
    Thanks for your reply!
    I assumed the internal server meant local server or at least server on the same network, either way that is not an option for me.  The CBTs are in SharePoint, which we don't control and would not be allowed to put an aspx page or other handler to process the post and we arent allowed to setup a service or page somewhere to post to.  Unless if the CBT can post across the internet to a remote server, then its a no go.
    I thought have the SCROM approach and rewriting it all, but I have limited time for this and that just looked like a big headache.  I have read the posts on piperworks that show you how to clean up the code, I may have to revisit it at some point, if they really want me to.
    I will also see if I can modify the CP calls back to the API, do you know where those are made? Or are they just the OnSuccess/OnLastAttempt actions on the quiz? If so, that is the solution I ended up going with.
    Using the JavaScript API, user variables and some advanced actions on the OnEnter/OnSuccess/OnLastAttempt I was able to get pretty much all the interaction results that are stored. The only ones I could not seem to get, were the ObjectiveID, InteractionID and the CorrectReponse.  However, instead of InteractionID I am now using the slide name.  I put a Advanced Action on the OnEnter event of the slide, which is used to set a user variable (v_QuestionStartTimeMS) to cpInfoElaspedTime. By doing so I can calculate the latency in the OnSuccess/OnLastAttempt events (v_QuestionTimeLengthMS = cpInfoElaspedTimeMS - v_QuestionStartTimeMS). The rest of the OnSuccess/OnLastAttempt advanced action calls a JS method.  OnSuccess passes true, OnLastAttempt passes false to the TrackResult function.
    I am using the jQuery extend method to load objItem. 
    $.Results.GetDate() gives my the date as a string. MM/DD/YYYY
    $.CapHelper.GetVariable() a wrapper method I have that ends up calling cpEIGetValue()
    $.Results.GetTimeStr() converts MS to HH:MM:SS.mmm string format.
    function TrackResult(result) {
        var objItem = $.extend({}, $.Results.Objs.ResultQuest, {
            ResultDate: $.Results.GetDate() + " " + $.CapHelper.GetVariable("cpInfoCurrentTime"),
            SlideName: $.CapHelper.GetVariable("cpInfoCurrentSlideLabel"),
            InteractionID: "",
            ObjectiveID: "",
            InteractionType: $.CapHelper.GetVariable("cpQuizInfoQuestionSlideType"),
            CorrectResponse: "",
            StudentResponse: $.CapHelper.GetVariable("cpQuizInfoAnswerChoice"),
            IsCorrect: result,
            Weight: $.CapHelper.GetVariable("cpQuizInfoPointsPerQuestionSlide"),
            Latency: $.Results.GetTimeStr($.CapHelper.GetVariable("v_QuestionTimeLengthMS"))
        _objResultDetails.push(objItem);
    I was hoping for a more elegant solution where I could just get all the data at the end of the quiz, like the internal server reporting option and send it all back at once.  Captivate is clearly tracking all that data, it would be nice if they exposed it so you could do what you want with it.
    Again, thanks for your input Erik. I will look into what you suggested as time permits.
    Phil

  • How to programatically access "Export Tagging" options?

    Hi,
    I'm doing some post-processing in InDesign CS5.5 and trying to figure out a way of setting the ePub export options for various paragraph styles using Javascript ("Tag" and "Class" under the style's "Export Tagging" options). I can't for the life of me find any info on this in the toolkit. Does anyone know?
    Thanks,
    Alex

    Looking for this one? It sure *sounds* like it, as it mentions both "class" AND "tag".
    http://jongware.mit.edu/idcsjs5.5/pc_StyleExportTagMap.html
    (Funny, today I wuz thinking, "I really have to look this up one of these days." Thanks for the reminder!)

  • Extremely slow when clicking the Specified Order - New button.

    Post Author: cavenger
    CA Forum: Charts and Graphs
    I often use the specified order option on charts to group pieces of information together. When I click the New button for a new specitied order or if I try to edit an existing specified order, it takes forever for the dialog to come up. I have experienced this problem in both Crystal 9 and 10 installed on different machines. Is there some sort of option I am missing? Maybe something that tells it to query the database. I have no idea why it would do a query at that point, it is not like I am using a select list of options from a drop down where it would need to retrieve the values. The reason this is a problem is that it takes me forever to run reports when I am asked to an add hoc report that requires this sort of customization. VERY frustrating....TIA for all help.

    Post Author: RichardN
    CA Forum: Charts and Graphs
    I'm having the exact same problem.  I think what's most infuriating about this is after waiting several minutes for the "Specified Order" Tab to display, I have to wait several more minutes after I click on the New button.  This happens everytime I click the New button, and I have eight groups to create. 
    I'm using Crystal Report XI Release 2 on Vista with 2 GB of RAM trying to access a Progress database using an ODBC connection. 
    Is there ANYTHING I can do to speed this up?  Is it possible to use the "Formula Editor" to essentially write out the information the Group Options window is creating?
    Thank you,
    R

  • How can I get all the options of Field Point Explorer 3.0.2 in Measuremen​t and Automation Explorer 3.1?

    I am a student using LabVIEW and Compact Field Point to implement a
    senior design project in Electrical and Computer Engineering.  We
    have LabVIEW 7.1 and a cFP-2020 and additional modules.  We are
    trying to use the CTR-500 module to output a pulse train to drive a
    stepper motor.  We have found instructions online of how to do
    this, but they all use Field Point Explorer.  The instructions
    make use of options in Field Point Explorer that are not included in
    Measurement and Automation Explorer (the software included with the
    cFP).
    I have downloaded Field Point Explorer 3.0.2 and followed the
    directions.  Now, in LabVIEW, when I using the newly created .iak
    file, I get a dialogue asking to find the SubVI: 'FP Read (Float Array
    -IO).vi'.  Included with LabVIEW are subvis for FP Read, but not
    with the float array part.  So I figure I cannot use Field Point
    Explorer created .iaks with LabVIEW 7.1.  So how cannot I access
    the same options in Measurement and Automation that I was able to find
    in Field Point Explorer?
    Thanks

    Hi,
    FieldPoint Explorer is no longer used to configure FieldPoint systems. However, I do not think that the configuring your system in FieldPoint Explorer is causing the error.
    FieldPoint systems are now setup in Measurement and Automation Explorer (MAX).  Information on setting up FieldPoint systems in MAX can be found in the MAX help under: Installed Products>> FieldPoint. Also, I recommend upgrading to the latest FieldPoint driver and version of MAX.  The FieldPoint VI's will be slightly different when you upgrade, so there is a good chance that this will eliminate the error.
    Regards,
    Hal L.

  • How do i update my BIOS in order to access to advanced options?

    I want to acces to the advanced options of my BIOS because i need to modify some advanced options related to de buses. I've tried pressing F10 plus A during the starting but without any result, eve n installing the BIOS upgrade posted on the hp software update page. Is there any other way to acces to the advanced options of it? My laptop is an HP Envy 14-2161se. and my BIOS is an InsydeH20 Rev. 3.5 Thank You!!

    FurDragon wrote:
    I want to acces to the advanced options of my BIOS because i need to modify some advanced options related to de buses. I've tried pressing F10 plus A during the starting but without any result, eve n installing the BIOS upgrade posted on the hp software update page. Is there any other way to acces to the advanced options of it? My laptop is an HP Envy 14-2161se. and my BIOS is an InsydeH20 Rev. 3.5 Thank You!!
    Hi,
    Try mydigitallife forums. There are threads about modding BIOSes and accessing the advanced option. It's not recommended by HP so you have to go somewhere else as the modding will cancel your warranty if something goes wrong.
    Dv6-7000 /Full HD/Core i5-3360M/GF 650M/Corsair 8GB/Intel 7260AC/Samsung Pro 256GB
    Testing - HP 15-p000
    HP Touchpad provided by HP
    Currently on Debian Wheeze
    *Please, help other users with the same issue by marking your solved topics as "Accept as Solution"*

  • How do I access the data saved on my time capsule?  for example, if i try to view my photos it tells me that i have 2.4gb of photos and gives me the option to "view with iPhoto"....but when i click on "view with iPhoto" nothing happens...  thanks!

    how do i access the data stored on my time capsule?  for example, if i try to view a photo, i get the option to "view with iphoto" but when i click on "view with iphoto" nothing happens.  i'm having similar trouble openning up movies, music, etc.  it appears as though the files exist / saved on the time capsule (because i can see how much storage they consume), but i can't open them.  thanks!

    Unfortunately, Apple removed the feature to "browse backups" in Time Machine backups of iPhoto a few years ago.
    You have to restore the entire iPhoto library to a separate location to be able to "see" it, and then choose the specific images that you want use.
    For complete details, see #15 in Pondini's excellent support document Time Machine -- FAQ.  Check the information in the pink box there.
    Frequently Asked Questions

  • How do I reverse the order in which files appear in Icon View option?

    I took a lot of pictures on a trip recently, which I have uploaded to a folder in Finder. When I click on View Options and then Keep Arranged by Date Created, they get rearranged so that the most recent appears at the top, and the first ones taken are at the bottom. How can I reverse this order, so that they appear in chronological order?
    Thanks,
    Richard

    There might be another way.
    There are utilities which can batch-rename files, including options that sort by date, begin all the resulting filenames with a common prefix, and then add a sequential "padded" filename suffix. If you then display the resulting collection of files in alphabetical order (as in Finder's Arrange by Name in icon view), they should be sorted chronologically.
    I haven't tried any of these, but the site for [A Better Finder Rename|http://www.publicspace.net/ABetterFinderRename/index.html], shareware, states:
    "A Better Finder Rename knows how to extract EXIF shooting date and time information from digital camera images and exploit them in creating sequence numbers or adding time and date information to the file name. "
    There may be suitable freeware alternatives -search for *file renamer* in [Version Tracker|http://www.versiontracker.com/macosx>.

  • Deleted bridge cc. Now I need to reinstall but it shows up in my creative cloud app as up to date without the option to download. How do I access it to download and reinstall?

    In an effort to correct an issue with my creative cloud, I deleted bridge cc. Now I need to reinstall but it shows up in my creative cloud app as up to date without the option to download. How do I access it to download and reinstall?

    Bmullinax please see CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html for information on how to reinstall Bridge CC.

  • When I click onto VoiceOver, the only given option is "All Songs". How do I access my playlists?

    When I click onto VoiceOver, the only given option is "All Songs". How do I access my playlists?

    If you only hear All Songs as your choice on the VoiceOver playlist menu, when you use the "press hold" command, that may mean you don't actually have any playlists loaded on your shuffle, just the songs from playlists.  Here's how to check...
    First, if the iTunes sidebar (along left side of window) is not visible, from the menu bar, under View, select Show Sidebar.
    In the sidebar, find the shuffle under DEVICES.  Click the small triangle to the left of the shuffle's name in the sidebar, to drop down its content list (indented below the shuffle).  Any playlists that are on the shuffle should appear there, on the content list.  If you do not see the playlists listed there, and you used the manual loading method, by dragging playlists to the shuffle in iTunes, that loads the songs but not the playlists.  Instead (to add playlists manually), you need to select the shuffle's name in the sidebar, and click the plus sign at the bottom of the sidebar, to create a new playlist.  A new playlist appears on the shuffle's content list, where you can name it.  When you manually drag songs to that playlist, iTunes adds the songs to the shuffle and that playlist.
    However, if you already have playlists in your iTunes library with songs that you want on the shuffle, here's a better way to do it, using automatic syncing.  Select the shuffle in the sidebar, under DEVICES.  There is a bar of buttons near the top, starting with Summary.  Click on Music next to Summary.  This is the shuffle's Music screen, where you tell iTunes how to sync songs to the shuffle.
    Check the box for Sync Music.  Choose the option to sync Selected playlists, artists, albums, and genres.  Under Playlists, select (checkmark) those playlists with the songs you want on the shuffle.
    When you click Apply, the songs from those playlists, and the playlist, sync to the shuffle.  Going forward, if you want to update songs on the shuffle, just update those playlists in your iTunes library (add/remove songs).  The shuffle does not need to be connected.  The next time you connect the shuffle (or click Sync if the shuffle is already connected), iTunes automatically updates your shuffle with the same changes.

  • How to access Data Guard option in Oracle 10g OEM

    Hi All,
    I have Oracle 10g ENTERPRISE EDITION on Unix envoirement. I want to setup logical standby Database through Data Guard technology. But when I brows through OEM I do not find Link for DATA GUARD????
    1) How to access Data Guard option from oracle 10g OEM.
    2) Does It come with Enterprise Edition OR I have to install it separately.
    Regards,
    Darshan

    I am managing almost everything through EM Grid Control. It is easy to setup and configure.
    Anyways, if you have read the documentation on
    Oracle® Data Guard Concepts and Administration and setup your environment accordingly then you should not have any problems. Atleast I can assure you that your production database will not be affected by it.
    Just make sure that you follow each step and read thoroughly. If you have spare machines then you can test and record your configuration before performing it on your production db. This link will provide you with the information on DataGuard.
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14239/concepts.htm
    If you think that way then you will never be able to do any new stuff since you will always fear that something might go wrong. Go ahead pal, try it on test machines and you will know that it is not that difficult.
    There are real experts who help people like us in this forum and I know that they are doing a pretty good job.
    All the best.
    Rgds
    Adnan

  • How to access the Document Options dialog box to select display properties?

    How to access the Document Options dialog box to select display properties (e.g. smartcut ) for a selected document to
    be viewed in the Workspace.
    regards

    Preferences --> General --> Reset all warnings.
    Mylenium

  • How can I access the option selected in ui:radioButtonGroup in javascript

    Hi,
    I'd like to access the option selected in ui:radioButtonGroup in my javascript.
    I tried doing something like this to no avail:
    <ui:radioButtonGroup binding="#{ReportParameter.reportTypeButtonGroup}" id="reportTypeButtonGroup" items="#{ReportParameter.reportTypeButtonGroupDefaultOptions.options}" onClick="common_timeoutSubmitForm(this.form, 'table:tr:td:reportTypeButtonGroup');" valueChangeListener="#{ReportParameter.reportTypeButtonGroup_processValueChange}"/>
    function say_hello ()
           var myVar2 = document.getElementById("form1:reportTypeButtonGroup");
            alert("Value is againg: " + myVar2.value);
    }but this always returns the first option. How would I access what value the user selected? Also, I cannot find any docs on how I would access fields of jsf components through javascript. Are there any books, links or resources I can follow so that I can use javascript in my jsf applications?
    Thanks,
    Marc

    yes, i should expand.....the external hard drive i link iphoto to has had an error and basically the iphoto package is hoarding all of my photos so i'm searching everywhere i can to piece back the 1 TB of photos that are gone. data recovery is too expensive from what i have found so i'm left trying to do this! i have another external drive that backs up my entire system on a regular basis throughout the day. i was able to recover the iphoto library from a few months ago before it was deleted (it had been backed up). so i'm only missing a few months of photos now. i was hoping if i could access the trash files (if they're backed up on this drive) that i would find photographs that had been on my desktop and then i'd put in the trash......does that help clarify??? so i basically want to look in the trash bin that was backed up in several files on this drive (IF that's even possible!) thanks for your help!!!

  • How to enable SSL in order to access web appln. deployed in CE using https?

    Hi,
    I am new to Netweaver and this forum. Not sure if I am posting my question in right forum category. Please let me know otherwise.
    Question -
    I would like to know how to enable SSL in order to access the deployed web application in Netweaver environment using https instead of http.
    System Info:
    Netweaver 7.1
    Database: SAP DB (KERNEL    7.7.04   BUILD 021-123-186-883)
    OS: Linux (amd64) 2.6.18-194.el5
    Note: I have general idea about how to enable SSL in a non-SAP application server like tomcat using valid certificate (like enabling SSL in tomcat and adding certificate to server & Java keystore). But since I am new to Netweaver, not sure how to enable the same in Netweaver environment.
    Any help would be much appreciated.
    Thanks
    Edited by: Gopi.j on Oct 15, 2010 8:04 PM

    hi
    check the following sap help.
    http://help.sap.com/saphelp_nwce71core/helpdata/en/f1/2de3be0382df45a398d3f9fb86a36a/frameset.htm
    Best regards,
    John

Maybe you are looking for

  • Solaris 8 on sparc 2 80 Mhz

    Hello, I am a noob with sun software and hardware and was curious, before I go and spend what little money I have on Ebay to buy a used sparc system. Does anyone know if a sparc 2 with an 80 Mhz upgrade can support solaris 8? Also, if any of you guru

  • What table column size is needed to accomodate Unicode characters

    Hi guys, I have encounter something which i dont understand and i hope gurus here will shed some light on me. I am running a non-unicode database and i decided to port the data over to a unicode database. So 1) i export the schema out --> data.dmp 2)

  • Howto Export key from J2ME keystore

    I have generated a keypair with the J2ME WTK Sign MIDLet GUI tool, so the key is in the default WTK keystore (_main.ks). I need to get the key into a J2SE keystore so that I can use the keytool utility to manage the key and a certificate. How can I e

  • How to change Start-Monitor (when 2 available)

    Hi there, I just went up from 7.0 to 8.0 Can anyone please tell me, where the option is on which (of my two monitors) the application starts? (I know that 7.0 was able to do so - had to fix a long-term issue with support) :-) Regards, Marc

  • Lost all my ring tones on my phone

    LOst all my ring tones on my phone how do I get them back