How to use the  FilterControllerClass with a sample

Hi,
I am having a sample for adding new parameters at runtime.
However I need more info.
What I try to accomplish what I want runtime, can be compared when using the CR designer, where you first add a parameter and then use the report record expert selection filter to select a database table column and assign that to this parameter. The recordselection would then look like this {table.field = {?parameter1}.
As I said before I need a sample to accomplish this runtime. I need a sample, because I am stuck and can not get any further.
For that I need and want to use the RecordFilterController or the Filtercontrollerclass.
Thanks in advance.
Kind regards,
Maurice

Hi Maurice,
Note: this is to add a New Parameter to a report with saved data to give the end user more filter capabilities with existing data. Dave's solution is likely what you were really asking for....
This is something I did a long time ago but it should work for you. It uses RAS which you must also use:
        private void AddParameter(ISCDReportClientDocument reportClientDocument, string fieldName)
            ISCRParameterField newParameterField = new ParameterFieldClass();
            newParameterField.ParameterType = CrParameterFieldTypeEnum.crParameterFieldTypeReportParameter;
            newParameterField.Name = "Check Name";
            newParameterField.ReportName = "";
            newParameterField.Type = CrFieldValueTypeEnum.crFieldValueTypeStringField;
            newParameterField.AllowMultiValue = true;
            newParameterField.AllowCustomCurrentValues = true;
            Fields parameterFields = reportClientDocument.DataDefinition.ParameterFields;
            ISCRField existingParameterField;
            string tmp = String.Empty;
            tmp = parameterFields.Count.ToString();
            MessageBox.Show(tmp, "Number of Parameters", MessageBoxButtons.OK, MessageBoxIcon.Information);
            //tmp = parameterFields[1].get_LongName(CeLocale.ceLocaleEnglishCanada).ToString();
            //MessageBox.Show(tmp, "Parameters", MessageBoxButtons.OK, MessageBoxIcon.Information);
            RowsetMetaData rowsetMetaData = new RowsetMetaDataClass();
            Fields fields = new FieldsClass();
            ArrayList defaultValues = new ArrayList();
            fields.Add(reportClientDocument.DataDefController.DataDefinition.ResultFields.FindField(
                              "{STATUS_LKP.Description_Status}", CrFieldDisplayNameTypeEnum.crFieldDisplayNameFormula, CrystalDecisions.ReportAppServer.DataDefModel.CeLocale.ceLocaleUserDefault));
            rowsetMetaData.DataFields = fields;
            RowsetController rowsetController = reportClientDocument.RowsetController;
            RowsetCursor rowsetCursor = rowsetController.CreateCursor(null, rowsetMetaData, 0);
            // iterate over rows, add unique values to parameter default values
            do
                Record record = rowsetCursor.CurrentRecord;
                Record record1 = rowsetCursor.CurrentRecord;
                if (!defaultValues.Contains(record[0].ToString()))
                    defaultValues.Add(record[0].ToString());
                    newParameterField.DefaultValues.Add(record[0].ToString());
            } while (rowsetCursor.MoveNext());
            newParameterField.Usage = (int)CrParameterFieldUsageEnum.crParameterFieldUsageInUse;
            newParameterField.IsEditableOnPanel = true;
            newParameterField.IsShownOnPanel = true;
            reportClientDocument.DataDefController.ParameterFieldController.Add((ParameterField)newParameterField);
            //reportClientDocument.DataDefController.SavedDataFilterController.SetFormulaText("{CHECKS.Displayname_Chk} = {?Check Name}");
            reportClientDocument.DataDefController.SavedDataFilterController.SetFormulaText("{STATUS_LKP.Description_Status} = {?Check Name}");
            //reportClientDocument.DataDefController.ParameterFieldController.SetCurrentValue("", "Check Name", defaultValues[0].ToString());
            //for (int x = 1; x < defaultValues.Count - 1; x++)
            //    reportClientDocument.DataDefController.ParameterFieldController.SetCurrentValue("", "Check Name", defaultValues[x].ToString());
            //    newParameterField.CurrentValues.Add(defaultValues[x].ToString());
Thank you
Don
Edited by: Don Williams on Oct 7, 2010 1:19 PM

Similar Messages

  • How to use the namespace with a parser?

    I want to use the namespace in my project. For this reason, I use a sample
    from
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/sax/7b_pe.html
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/dom/5_ns.html
    to test my understanding.
    The slideshow2.dtd refer to the definition in 'xhtml.dtd'. Because in these
    two files, they all use the 'title' as the element names. To solve these
    conflicts, The namespace is used to qualified the one in slideshow2.dtd.
    But the parser still complain that the 'title' in slideshow2.dtd is declared
    more than once.
    I use apache's Xerces.
    I want to know if Xereces realy support namespace spec. now, or how to use
    the namespace with a parser. Can anyone kindly tell me where to find some
    material that demo the use of namespace in Java program.
    Thanks for any help!!!
    #############FILE: slideshow2.dtd ###############
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT slideshow (slide+)>
    <!ELEMENT slide (title?, item*)>
    <!ENTITY % xhtml SYSTEM "xhtml.dtd">
    %xhtml;
    <!ELEMENT title (#PCDATA)*>
    <!ATTLIST title
    xmlns CDATA #FIXED "http://www.example.com/slideshow"
    >
    <!ELEMENT item (#PCDATA)>
    ##############FILE: xhtml.dtd #########################
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT html (head)>
    <!ATTLIST html
    xmlns CDATA #FIXED "http://www.example.com/xhtml"
    >
    <!ELEMENT head (title,style*)>
    <!ELEMENT title (#PCDATA)>
    <!ELEMENT style (#PCDATA)>
    #############FILE: slideshow.xml ####################
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE slideshow SYSTEM "slideshow2.dtd">
    <slideshow>
    <slide>
    <title xmlns="http://www.example.com/slideshow">Wake up to
    products!</title>
    </slide>
    </slideshow>

    I want to use the namespace in my project. For this reason, I use a sample
    from
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/sax/7b_pe.html
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/dom/5_ns.html
    to test my understanding.
    The slideshow2.dtd refer to the definition in 'xhtml.dtd'. Because in these
    two files, they all use the 'title' as the element names. To solve these
    conflicts, The namespace is used to qualified the one in slideshow2.dtd.
    But the parser still complain that the 'title' in slideshow2.dtd is declared
    more than once.
    I use apache's Xerces.
    I want to know if Xereces realy support namespace spec. now, or how to use
    the namespace with a parser. Can anyone kindly tell me where to find some
    material that demo the use of namespace in Java program.
    Thanks for any help!!!
    #############FILE: slideshow2.dtd ###############
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT slideshow (slide+)>
    <!ELEMENT slide (title?, item*)>
    <!ENTITY % xhtml SYSTEM "xhtml.dtd">
    %xhtml;
    <!ELEMENT title (#PCDATA)*>
    <!ATTLIST title
    xmlns CDATA #FIXED "http://www.example.com/slideshow"
    >
    <!ELEMENT item (#PCDATA)>
    ##############FILE: xhtml.dtd #########################
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT html (head)>
    <!ATTLIST html
    xmlns CDATA #FIXED "http://www.example.com/xhtml"
    >
    <!ELEMENT head (title,style*)>
    <!ELEMENT title (#PCDATA)>
    <!ELEMENT style (#PCDATA)>
    #############FILE: slideshow.xml ####################
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE slideshow SYSTEM "slideshow2.dtd">
    <slideshow>
    <slide>
    <title xmlns="http://www.example.com/slideshow">Wake up to
    products!</title>
    </slide>
    </slideshow>

  • HT1343 how to use the options with F10, F11, F11 for turning the sound up or down or mute?

    Hi, I'm Hannah. I'm using a Mac. Can you show me how to use the options with F10, F11, F12 for turning the sound up, or down or mute? Thank you very much

    Normally simply pressing them should do what you want, F10 to mute; F11 to decrease volume; F12 to increase volume. However, it's possible that you have a box ticked in Keyboard preferences which modifies the behaviour of the keys, requiring you to also hold down the Fn key (bottom left key on the keyboard) to enable the function.
    Check System Preferences>Keyboard to makes sure the box indicated in the image isn't ticked.

  • How to use the software with BSD License, such as substance!

    Hi everyone, any idea use the software with BSD License, such as substance?

    Welcome to the forum
    First of all let's be quite clear that whatever output you
    generate, you do not need RoboHelp loaded on the end users PC.
    You don't say whether you are planning to use RH HTML or RH
    for Word. The latter has the advantage that you are working with a
    tool that you understand but in my book there it ends. You want to
    generate HTML topics for an intranet and that is best done using RH
    HTML. It's much easier to make the output take on the appearance
    you want.
    Your software would open the help you create either at a
    default topic or a specific topic. That is controlled by how your
    developers call the help. No need to go into detail on that just
    yet. There are a couple of topics on my site about that.
    The next step depends on how you design things. Are you going
    to create a page that describes a particular document that links to
    the document or are you going to convert the document to a topic in
    its own right?
    - If you are planning to link to the Word document, then you
    need to consider how a Word document would open from an intranet
    link. See Snippets on my site. Perhaps another option would be to
    create PDFs of the documents.
    - If you are planning to import the documents and recreate
    them as HTML topics, I suggest you have some aspirin handy.
    Importing is a notorious problem area as you can see from topics on
    my site. That said, those topics explain how to avoid the worst
    problems. The fly in the ointment is that you are using Information
    Mapping and those indents and tables will give you real fun!
    You can create printed documentation but most of your site
    will be stuff that you already have in Word format so you need to
    include that in your design thinking.
    As to books there really isn't that much around. There are
    some links on the Useful Links page of my site but I don't think
    they will help you much on this one. You could read this forum from
    cover to cover!
    Hope that helps a bit. Come back if you have some follow up
    questions.

  • How to use the Arpeggiator with Software Synths

    I recently bougth Logic Pro 7.2 and it took me a while to find out how to get the soft synths to work. At the moment I am only using the computer keyboard to play in the notes and it works well so far.
    If you want to activate a soft synth, choose an audio instrument and select your synth from the i/o on the left column in the arranger. Then turn on your caps key and start playing and press record and thats it. I now what to use the Arpeggiator with the soft synths. What do I do?

    If you type "arpeggiator" (without the quotes) into the search field over on the right, you'll turn up a ton of threads with all the info you could ever need about how to use Logic's arpeggiators.
    Inshort hand - create an arpeggiator object in the environment, cable it to the soft synth you want to use, and select the arpeggiator object you created on an arrange track. The notes you play/record will be sent through the arpeggiator to generate the arpeggiated notes, and on to trigger the synth you cabled it to.

  • How to use the AVMenuItemExecute() with an External Window

    Hello,
    I'm trying to use the AVMenuItemExecute() function in an External window. I mean that I have an opened document in another window (using AVDocOpenFromASFileWithParams or a function like that).
    Actually the problem is that the AVMenuItemExecute() is executed on the Acrobat windows which is emplty in my case because I open the PDF file in another window.
    Do you know whether it's possible or not? Whethet it's possible how can I do that?
    Thanks in advance,
    Joël

    joeln3 wrote:
    Thanks Leonard.
    Actually I want to use all MenuItem so it's not a good way to do this.
    I know it's possible using IAC but I have another problem with IAC. IAC allows to show the PDF file in an external window and to use the ExecuteMenuItem(). But in my case a PDF file is already open before starting IAC. So when I use the ExecuteMenuItem() function this is on my first Acrobat window that the action is launched. Indeed the document opens with IAC is not in an Acrobat window.
    Regards,
    Joël
    Actually it's not possible with IAC.  While IAC does allow you to open a PDF in an external window, and it does allow you to ExecuteMenuItem(), as Leonard explained you CAN NOT ExecuteMenuItem() on the PDF in your external window.  The reason for this is simple - in your external window, the menu items to execute do not exist as the menu only loads inside Acrobat/Reader.
    ExecuteMenuItem() doesn't simply replace having menu items and call the internal code associated with that menu item.  It literally executes that menu item.  So if the menu doesn't exist, it can't execute anything.

  • How to use the packager with Flash?

    Hi all,
    I've installed the packager, but I can't see any difference inside Flash CS5 editor or any new menus like "Export" or "Package"
    Does it work from within the editor or does it only compile AS3 files?
    Can I turn a Flash project which has an .fla file with some timeline animation, manually created MovieClips etc into a iOS app using the packager?
    Is there any tutorial how to do it?
    Thanks!

    I'm compiling a public list of useful links for exactly these sorts of situations: http://forums.adobe.com/thread/785692
    Have you installed the latest updates to Flash CS5? They are the first 2 links under "Downloads and Official Documentation" in the link above. Then you should be able to start a new project in Flash and specify "iPhone OS". From there, try to follow Adobe's official documentation until it doesn't work properly, then come back, search around for others talking about the same issues, or start a new thread that is more specific.
    Hope that helps a bit.

  • How to use the TeamViewer with other iViews

    Hi,
    I would like to use some own developed iViews together with the TeamViewer. We are using the iViews in ESS already and now the question is, how can we link them to the TeamViewer?
    We are running EP6 Patch2 HF4.
    Thanks
      Bianca

    Hi.
    Just add the teamviewer to the "dynamic navigation" of your iview.
    Register listeners for the teamviewer events, and also call the teamviewer on init to get the selected person.
    I've found that the teamviewer doesn't always respond (only once the first time it's loaded), then you should check a cookie value.
    I'll update this post later with more exact info on the teamviewer event's etc.
    Regards, Mikael

  • TS3308 How can use the printer with iPad

    How can you use the printer ( that is connected wirelessly to the same network ) with iPad

    iOS AirPrint Printers  http://support.apple.com/kb/HT4356
    How to Print from Your iPad: Summary of Printer and Printing Options
    http://ipadacademy.com/2012/03/how-to-print-from-your-ipad-summary-of-printer-an d-printing-options
    Print from iPad / iPhone without AirPrint
    http://ipadhelp.com/ipad-help/print-from-ipad-iphone-without-airprint/
    How to Enable AirPrint on a Mac and Use Any Printer
    http://ipadhelp.com/ipad-help/how-to-use-airprint-with-any-printer/
     Cheers, Tom

  • How to use the Ip4s with another carrier network?

    Hi,
    I bought an IP4S from Walmart without contract (original price). Can I use the Tmobile on it? If not, how can I do?
    Thanks,

    Yes, but it requires actions that will void your warrenty and presumably can't be explained here. Google it, lots of answers there...

  • How to use the Clipboard with certain sites

    I use the copy and paste function from the clipboard frequently to allow access to certain pages. It worked fine until I updated Firefox to latest 29.0 version. It no longer works! I followed the usual instructions to create a user.js file and put it in the profile directory. But the problem is still there. Need help with this problem.

    Hello,
    Sorry for taking so long in responding. Here is the screenshot. Hope that helps to find a solution.

  • How to use the mod_plsql with oraclexe?

    hi,
    Somme one can help me ton configure the mod_plsql with the oraclexe?
    thanks
    john

    You can only copy from SD Card/Camera to iPad. It won't work from iPad to SD Card.
    http://i1224.photobucket.com/albums/ee374/Diavonex/1d0cb10d.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/e8058ab4.jpg

  • How to  use the EclipseLink with CE7.1

    Hi ,
    In our application(CE 7.1 , SP5) we are using  jpa with eclipse link as  third party persistance provider. In the peristance.xml
    we  have given the persistance provider is  as follows
    <provider> org.eclipse.persistence.jpa.PersistenceProvider</provider> .
    But we are facing the problems while executing our services , we ar getting the folowing log trace.
    Is CE7.1 sp5 will suuport the  third party persistance provider Eclispse Link , please let me know any notes are available.
    com.rwe.metering.greams.orchestration.DTSOrchestration:orchestrate] Started.
    [com.rwe.metering.greams.orchestration.DTSOrchestration:orchestrate] javax.persistence.PersistenceException: java.util.MissingResourceException: Can't find bundle for base name org.eclipse.persistence.exceptions.i18n.EntityManagerSetupExceptionResource, locale en_GB
         at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:392)
         at org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.getServerSession(EntityManagerFactoryImpl.java:151)
         at org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:207)
         at org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:195)
         at com.rwe.metering.greams.orchestration.DTSOrchestration.orchestrate(DTSOrchestration.java:55)
         at com.rwe.metering.greams.webservices.GReaMSImplBean.po1Processing(GReaMSImplBean.java:20)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.engine.services.webservices.runtime.JavaClassImplementationContainer.invokeMethod(JavaClassImplementationContainer.java:96)
         at com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.process0(RuntimeProcessingEnvironment.java:353)
         at com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.preProcess(RuntimeProcessingEnvironment.java:329)
         at com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.process(RuntimeProcessingEnvironment.java:211)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPostWOLogging(ServletDispatcherImpl.java:155)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPostWithLogging(ServletDispatcherImpl.java:96)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:66)
         at com.sap.engine.services.webservices.servlet.SOAPServletExt.doPost(SOAPServletExt.java:90)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:66)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:32)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:289)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
         at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:309)
         at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:222)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    Caused by: java.util.MissingResourceException: Can't find bundle for base name org.eclipse.persistence.exceptions.i18n.EntityManagerSetupExceptionResource, locale en_GB
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:796)
         at java.util.ResourceBundle.getBundle(ResourceBundle.java:699)
         at org.eclipse.persistence.exceptions.i18n.ExceptionMessageGenerator.buildMessage(ExceptionMessageGenerator.java:47)
         at org.eclipse.persistence.exceptions.EntityManagerSetupException.deployFailed(EntityManagerSetupException.java:218)
         at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:349)
         ... 47 more
    Regards
    Surya

    Hi again,
    good news: In EclipseLink 2.1, there will be direct support of SAP NetWeaver 7.1 and above, thanks to contribution of SAP developers:
    http://wiki.eclipse.org/EclipseLink/Development/ServerPlatform/NetweaverPlatform
    Please look at the interesting contributions by Adrian Goerler about EclipseLink in this forum.
    Regards,
    Rolf
    Edited by: Rolf Paulsen on May 1, 2010 12:13 AM

  • How to use the iTrip with dock connector for iPod 5th gen. video

    I bought the new iTrip with dock connector for my iPod video 5th gen. and I followed exactly the instructions but I cannot hear any music on the radio. Has anyone experienced the same problem or the contrary has anyone managed to make it work. Thanks for your help.
    Inaha
    iMac 4   Mac OS X (10.3.9)   iPod 5th gen video

    I got the answer from someone else and it works.

  • How to use the MOS with CSI?

    Hi,
    My company just bought me the oracle vm 1 yr license and I now have the CSI number. I can go to the ULN and download the ovmcli stuff now for scripting
    However, I still look for how to read and download the support documents like:
    A Failure During Virtual Machine Image Import Stays In "Importing" Status. (Doc ID 1088835.1)
    If under MOS, it needs me to have a OSI (Oracle Support Identifier) to register and the CSI won't work.
    Any help will be great.
    Wilson

    Hi Wilson,
    I would call support and ask why the CSI does not work. Maybe it needs some time to get activated in MOS?
    Hopefully your company did buy basic support, and not just the network access. Network access only gives you access to ULN and the patches and not to MOS.
    BTW: The OVMCLI stuff is also available here, for the people who don't have ULN access:
    http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/oracle_addons/i386/
    Sebastian

Maybe you are looking for

  • Getting error in Migo_gr

    Hi EveryOne , I m getting error in Migo_gr that : "  Field Bus. Area is a required field for G/L account DMRC 141004 " . The bus arear is not visible in Migo_gr . thanks

  • Missing payload in SXMB_MONI

    Hi. Have an interface with one message in to XI(JDBC). I split this message. One to SAP R3 (idoc) and one out to an server through an fileadapter. In SXMB_MONI I can see the payload (content)for the idoc-message, but there is not an payload for the o

  • The App store icon in my dock appears as a question mark. How do i get it to appear

    The App store in my dock appears as a question mark.I have a question too - how to get the App app to appear????

  • Spike in help calls - Captivate running on LMS

    Just wondering if anyone else is experiencing and increase in the number of help calls regarding Captivate running on an LMS. We have around 150 Captivate 4 courses, each having an average of 4 SCORM lessons. We have around 8,000 users. Our courses r

  • HT1535 Trying to transfer tracks in iTunes on iMac to iPad

    I can't follow these instructions. http://support.apple.com/kb/HT1535 At Stage 3, I don't see a window anything like that shown.  I have seen that sort of window on my MacBook, but never on my iMac. On the iMac I just see a list of music tracks I hav