PIM platform call

Hello

Looking for a way to call the platform of PIM inside my program (browser).

I have accsess data using PIM.getInstance (); but I couldn't call him the PIM platform.

Help, please.

Tamer

Do you mean you want to invoke the address book of your Application.

Try something like that.

Invoke.invokeApplication (Invoke.APP_TYPE_ADDRESSBOOK, new AddressBookArguments());

Tags: BlackBerry Developers

Similar Questions

  • There is a sample course in the platform called Business communication (sample course). He won't move beyond three module when I'm logged in as long as learner.

    I'm trying to go through the course of the entire sample to get an idea how to build my own. But I can't go beyond this module.

    "There is a sample course in the platform called Business communication (sample course). He won't move beyond three module when I'm logged in as long as learner. »

    unable_ to_complete_Prime_sample_course2.PNG

    Hello

    You are looking in the settings of course. You must go to the author > library Module, select the module causing delivers and check performance criteria.

    Kind regards

    MILIN

  • I'm in a browser session and pop-up windows opens a new window rather than a tab of FFox. How can I cause a pop-up open in a tab instead of a new window of FFox?

    I'm under FFox 4 on Windows 7 completely up-to-date. I use a stock trading platform (called Desk of Trading), which requires the use of pop-ups limited. With IE 8, the pop - ups appear as tabs, but with FFox, they open a series of new windows and fill the taskbar!

    You can watch these prefs the subject: config page.

    To open the topic: config page, type Subject: config in the address bar (address) and press the 'Enter' key, as you type the url of a Web site to open a Web site.

    If you see a warning then you can confirm that you want to access this page.

  • How to create the shared library for linux real-time target in labVIEW Windows?

    I use myRIO running linux in real time. In my project, I need to pack some C code, so I tried the node library function call.

    I know that I should use the tools compile cross - compile linux on Eclipse to compile c code in linux .so library. But the problem is that call library function node does not recognize the .so file because my labVIEW runs on a Windows PC.

    What should I do to fix and how to combine C code with labVIEW during programming for devices shipped as myRIO?

    Basically, you must also create a Windows DLL that exports the same functions. These functions can be empty stubs if you do not want to run the code correctly on Windows, otherwise you will need to consider how to implement the equivalent functionality on the Windows API.

    Then you can write in your node library call as the name of the library ". "*" and the name of the shared library Windows ".dll" while the Linux version is called "name of your library > .so". LabVIEW will replace the * after the comma in the name of library with everything that is the preferred extension shared library for the platform it is running on and therefore load the right shared library.

    Alternatively you can wrap call all the nodes of the library in a structure that contains the node library in the case of Linux RT and all what you want to run on other platforms in the case of default or a case of specific platform, call the conditional compilation.

  • Spread the value of a member account in multiple values

    Guys good day.

    I have 3 normal dimensions: customer of the platform, Segment,
    Now I have these account dimension members: 'Phones (Mu)', 'platform Split. "


    Now on my calculation, I need to allocate the Member of the intersection below:

    From:
    @LEVMBRS ("customer", 0)-> @LEVMBRS ('Segment', 0)-> "Phones (Mu).

    TO:
    @LEVMBRS ("customer", 0)-> @LEVMBRS ('Segment', 0)-> @LEVMBRS ('Platform', 0)-> "Phones (Mu).



    Here's the scenario.
    I will be the "platform" Split entry by CUSTOMER, by SEGMENT and by platform. Now, so that *@LEVMBRS ("customer", 0)-> @LEVMBRS ('Segment', 0)-> @LEVMBRS ('Platform', 0)-> "Phones (Mu)" * for the data, he must calculate the value of *@LEVMBRS ("customer", 0)-> @LEVMBRS ('Segment', 0)-> "Phones (Mu)" * multiplied by the value I join the platform"Split."

    Can you please give advice me on how to do this?

    I thank very you much in advance!

    Hello

    You must create a dummy member in dimension of platform, called 'No Platform'. This member will be the total value of all platforms by segment by customer in "phones (Mu).

    Then, as you say, you will enter platform value divided by customer segment by platform.

    DIFFICULTY (@LEVMBRS ("customer", 0), @LEVMBRS("Segment", 0) @LEVMBRS ('Platform', 0))

    "Phones (Mu)' don't = 'No platform'-> ' (Mu) Phones ' * 'platform Split."

    ENDFIX

    Let me know if it helps.

    See you soon
    RS

  • Oracle Lite PPC2003 XScale on Lite 10.3.0.1.0

    Hi all

    1. I got a new device which is a XScale processor.
    2. in the Web to Mobile devices-> platforms - Oracle Lite PPc2003 is enabled.
    3 but in the configuration of the mobile customer, I don't see this Xscale platform.
    4 and also in packaging Vizard I do not see a platform called Xscale. But ARMV4 and another pops up.

    Any help is appreciated.

    In my view, it has been documented somewhere these applications must be published again for the new platform.

  • Choose the platform correct blackberry 10 for the use of functions such as call history, use of data, message records

    I want to design a blackberry 10 application that can fetch all call logs, data internate, messages through the application usage. Please help me choose the right platform that can provide all the APIs that are required for this application. 10 webworks Blackberry and Android runtime dosen't supports all API.

    Thank you.

    You can watch here

    https://developer.BlackBerry.com/native/documentation/Cascades/device_platform/invocation/invoking_c...

  • Alteration of the performance of the call to Platform.runLater in the UI thread?

    In my JavaFX application, my model classes are observers of certain events. They look a bit:

    MyClass implements MyEventListener {}

    public void onCertainEvent() {//a callback method
    ... //code changing properties related to user interface views
    }
    }

    It happens that these events may or may not be triggered in the UI thread. So I am currently solving that always surrounding the body of all my callback with an invocation of Platform.runLater methods, as in:

    public void onCertainEvent() {}
    Platform.runLater (new Runnable() {}
    @Override public void run() {}
    ... //code changing properties related to user interface views
    }
    });
    }


    However, I am about as to the effectiveness of this approach, given that some events can be triggered in the UI thread. Therefore, in these cases, the call to Platform.runLater is not necessary.

    Is there a decrease in performance should I care about in a call to Platform.runLater already in the UI thread? I don't know if the runLater method is smart enough that just immediately run the executable if she learns that she has been invoked in the UI thread (or if on the contrary, it will always be put in some kind of queue should be performed later).
    Otherwise, I could add a method to verify this myself if the callback method has been invoked in the UI thread or not. In this case, is there a way to straighforward to find out that in JavaFX?

    Thank you!

    >

    However, I am about as to the effectiveness of this approach, given that some events can be triggered in the UI thread. Therefore, in these cases, the call to Platform.runLater is not necessary.

    Is there a decrease in performance should I care about in a call to Platform.runLater already in the UI thread? I don't know if the runLater method is smart enough that just immediately run the executable if she learns that she has been invoked in the UI thread (or if on the contrary, it will always be put in some kind of queue should be performed later).

    I'm not sure of the performance in itself, but the order of execution of instructions is affected. Your call to Platform.runLater (...) will get queued on the thread of FXApplication and will be executed after that anything currently in queue, including the rest of the method, in which you are currently.

    Otherwise, I could add a method to verify this myself if the callback method has been invoked in the UI thread or not. In this case, is there a way to straighforward to find out that in JavaFX?

    Yes, use [url http://docs.oracle.com/javafx/2/api/javafx/application/Platform.html#isFxApplicationThread ()] Platform.isFXApplicationThread ().

  • How to call a command OS cross-platform in the scenario?

    Hi all
    I have two servers, Server W & L Server, located in the platform Windows & Linux respectively. I installed agents ODI in both servers. Then, I created a script that contains a procedure with a Windows operating system command. I run successfully if I blow-out scenario (using startscen.bat) Windows server (Server W). However, I have to kick start it from the Linux (server L) server. But then the script failed with the error "java.io.IOException: java.io.IOException: cmd: not found". I tried to put the parameter "-NAME = WINDOWS_AGENT" to the individual windows agent to run the scenario but I got the same error.
    Anyone know if my requirement is feasible? If so, how? Or I need to run in the same platform? Millions of thanks.
    Kind regards
    Ricardo

    When you run a scenario with a command startscen, it runs the script in this process, the NAME = parameter appears just in the run log under the name of the agent that is running the script.

    If you run a scenario of an OdiStartScen tool in a package, you can specify the AGENT_CODE which delegates execution to that specific agent. (if you do not specify an AGENT_CODE it uses by default the same agent running the parent)

    Therefore, if you want to run a command to the operating system that starts executing on a remote agent, you will need to do one of the following:
    -create a scenario that uses an OdiStartScen command to start the scenario (which is held in a variable) with the settings (that is held in a variable) on the agent (of a variable)

    -create a java program that uses the OdiInvocation API to run your script on remote agents

    -If you have ODI public Web services deployed, you can even use a tool to use the web service to invoke the execution.

    For completeness, you should also refer to the documentation for the tool odioscommand, which invokes a command bone (in the proper way on a variety of operating systems.

  • Problems with sending sms and calls blackBerry Smartphones

    Hello

    I recently me a:

    BLACKBERRY 9300

    Smartphone (3G, WiFi)

    V5.0.0.977 (platform 6.3.0.63)

    Band 3G 1,2,5,6

    v3.8.5.85 cryptographic kernel

    version 1.0.91.633t of brand

    Configuration of micro Edition: CLD - 1.1

    Micro Edition profile: MID - 2.1

    Micro Edition JTWI version: 1.0

    Micro Edition Media version: 1.1

    Micro Edition PIM version: 1.0

    Micro Edition File version: 1.0

    Micro Edition bluetooth version: 1.1

    Micro Edition location version 1.0.1

    Micro edition security and trust services (APDU) version: 1.0

    WLAN version 4.1.1.30

    and I seem to have a unique problem.

    I'm on giffgaff (who has the phone accepts very well), but...

    1. I can only call a few people in my contact list. (at every time without problem) where others it disconnects right away when I try to call.

    2. I cannot sms only to individuals who have already sent me an sms, I can carry on a conversation but does not start with someone.

    3. some people I can txt I can't call and visa versa.

    I tried to make calls and txts in different places and times with the full signal strength. As I tried all the proposed problem fixed here. Yet, I still have the problem. I don't know if people have hurt to put a hand on me.

    any help with this would be much appreciated.

    sincere greetings

    Thanks for your detailed description, which helps us a lot. I recommend that you download blackberry protect and do a full backup. After the backup, please try reloading your software through blackberry desktop software or wipe a complete security. NOTE: all data will be lost during a wipe.

  • BlackBerry smartphones can not answer incoming calls

    I "missed" between 20 and 25 incoming calls within the last two days. Whenever I get a call in an application, portrait/landscape, laying on my desk, sittin in the home, in the menu screen, or in my pocket, I begin to see the incoming call, hear the ring tone and press the green button. (I tried using the tactile response option as well) and then the clock that spinning hourglass or anything like that for the following 30ish seconds and shows my storm is completely insensitive. I tried to play with almost all the parameters relating to appeals, sounds and contacts, and I left the phone to die on its own of the lack of resources, pulled the battery and it turned off manually. can someone help me with this please?

    Phone info:

    Carrier Verizon

    BlackBerry 9530

    Smartphone (3G, CDMA)

    v4.7.0.148 (4.0.0.181 platform)

    The kernel v3.8.5.51 encryption

    Brand version: 1.0.105.16

    Mounting microphone configuration: CLDC-1. 1

    Micro Edition profile: MIPD - 2.0

    Micro Edition JTWI Version: 1.0

    "" Media Version: 1.1

    "" PIM Version: 1.0 "

    "" File Version: 1.0

    "" Bluetooth version: 1.1

    "" Location Version: 1.0.1

    After I went through and remove applications standard verizon and blackberry Messenger, that it helped a bit and I realized an hour I still had almost all of my applications open, ago I used the option to switch application and actually closed everything and it works perfectly now.  Anyway thanks, bifocals, for your willingness to help.

  • How to use a Bluetooth headset to make phone by Apple Watch call?

    My question:

    my iPhone is on the platform to the floor. I'm in the garden, away from my iPhone, outside of the coverage of bluetooth. However, I'm on my WiFi network so my Apple Watch is connected to my iPhone via WiFi.

    I get a phone call on my iPhone at home and my rings Apple Watch on my wrist in the garden. I answer with the watch, but I would like to continue the conversation by using my bluetooth headsets, which are associated with my Apple Watch...

    Is there a way to do this? As far as I can see, bluetooth headsets can be paired with Apple Watch to listen music stored Apple Watch...

    Tnxs.

    Hello

    It is not possible to use a Bluetooth headset that is associated with Apple Watch in order to pass or receive phone calls.

  • Boot Camp supports only Windows 7 or later installation on that platform. Please use a file ISO of Windows 7 or later installation.

    Hello

    I tried to fix this for hours, I hope someone can help me.

    I downloaded the ISO "Win10_1607_English_x64.iso" (4.29 GB) file and with him came a "info.plist" (2 KB), so they are both on my 64 GB USB Drive (format: MS-DOS (FAT32)) called 'WINSTALL '.

    I have the ISO on the USB key, and it is selected as the ISO image in Boot Camp. I also have the USB the disk of destination selected, and yet I get this error:

    Your bootable USB key could not be created

    Boot Camp supports only Windows 7 or later installation on that platform. Please use a file ISO of Windows 7 or later installation.

    I'm currently under OS X El Capitan Version 10.11.6 on my iMac (21.5 inch, end 2012) that is compatible with Windows 10.

    If anyone can help me I honestly love so much, I tried contacting Apple Support staff by phone, they said that they can't do anything, I tried to contact their Live Chat, but none of this has helped to solve the problem, and I tried to look online, but can't find too much.

    Thanks in advance for any answer!

    What OSX Version do you have? This site gives the requirements of Bootcamp: minimum system requirements to install Windows on your Mac with Boot Camp - Apple Support. And you did an upgrade? Could it be that the upgrade will not correctly for the OS?

    Looking at the 10 Windows version you downloaded, is the update of birthday, which was released less than a month ago. It could be that Apple is not reconisgin the Windows version when reading the disk, because it is too recent. I don't know if you have access to the download of the previous generation and do a Windows update?

  • How to the Java platform?

    I need set the platform to activate or enable Java

    If you see my page list plugin, you see something like Java (TM) Platform SE 8 U60 on your list?

    https://jeffersonscher.com/RES/plugins.html

    If so:

    You have Java installed, but you may need to activate on a site-by-site basis. While you are viewing a page where you want to use the Java plugin, try either:

    • Plugin notification in the address bar icon: in general, it looks like a little Lego block, dark grey on the left of the address. Click it to allow Java for the time being or permanently.
    • Panel of permissions of the Page Info dialog box, you can call upwards by using one of the following options, and then change the permissions to "allow": Java

      • Right click on a box empty page and select View Page Info > permissions
      • (menu bar) Menu Tools > Page Info > permissions
      • Click the icon of padlock or globe to the left of the address of the site > additional information > permissions

    Success?

    If not:

    Install or update Java on the next page. Note that you need the 32-bit version of Java for Firefox 41, since it is a 32-bit application. https://www.Java.com/en/download/manual.jsp ("Windows Offline" Installer)

  • During video calls. iOS iPhone 5s 9.2.1

    Hey. There are a few problems in Skype! I have an iPhone 5s during video calls, my face is rotating in the form of man! No explanation for this!

    Can send you additional information on your problem? What is the version of Skype that you run on your iPhone? What the remote (desktop, iphone or Android) platform and which is the remote version of Skype?

    Would be great if you post a screenshot as well.

Maybe you are looking for